Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Closed)
 BUG+FIX: Invalid default value error with MySQL 4
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 06 August 2006 :  23:18:38  Show Profile
During setup of the Snitz Forums using MySQL Server 4.0 and greater as your database, you will get several "Invalid default value" errors for several auto_increment fields. This is due to the changes in version 4.0 and greater, because a DEFAULT value is no longer required to be specified.

In inc_create_forum_mysql.asp, search for AUTO_INCREMENT in the file and remove the DEFAULT value from the left side of it.

For example:
strSql = "CREATE TABLE " & strTablePrefix & "CATEGORY ( "
strSql = strSql & "CAT_ID INT (11) DEFAULT '' NOT NULL auto_increment, "
strSql = strSql & "CAT_STATUS SMALLINT (6) DEFAULT '1' NOT NULL , "
You would remove the code in red.

Another example:
strSql = "CREATE TABLE " & strTablePrefix & "FORUM ( "
strSql = strSql & "CAT_ID int (11) DEFAULT '1' NOT NULL , "
strSql = strSql & "FORUM_ID smallint (6) DEFAULT '0' NOT NULL auto_increment, "
strSql = strSql & "F_STATUS smallint (6) DEFAULT '1', "
You would remove the code in red.

Note that not all the AUTO_INCREMENT fields you find will have a DEFAULT value set. Those can be ignored.<

Support Snitz Forums

Edited by - Davio on 26 September 2006 05:43:47

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 06 August 2006 :  23:18:52  Show Profile
Fixed in 3.4.06.<

Support Snitz Forums
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 07 August 2006 :  16:30:48  Show Profile
The changes also need to be made in admin_mod_dbsetup.asp and admin_mod_dbsetup2.asp files.

Fixed in 3.4.06 also.<

Support Snitz Forums

Edited by - Davio on 07 August 2006 16:31:17
Go to Top of Page
  Previous Topic Topic Next Topic  
 Forum Locked  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.09 seconds. Powered By: Snitz Forums 2000 Version 3.4.07