forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: Puerilis on February 07, 2006, 01:42:13 am

Title: Error when creating a new user
Post by: Puerilis on February 07, 2006, 01:42:13 am
Hi Folks

I have coppermine v1.4.3 running on IIS 6, mysql 5.0.1.5, when I log in as the default administrator account and then go to User manager, when I click on the button for "Create new user" I get the error "There was an error while processing a database query".

Is there an error log somewhere I can check to see if there is a more clues as to what the problem in, the error message is a bit "unhelpful".
Title: Re: Error when creating a new user
Post by: Nibbler on February 07, 2006, 01:44:06 am
To get detailed error messages you should enable debug mode in config and then try to create a user again.
Title: Re: Error when creating a new user
Post by: Puerilis on February 07, 2006, 10:39:34 am
Thanks Nibbler for the tip,

the error is :

While executing query "INSERT INTO cpg143_users(user_regdate, user_active) VALUES (NOW(), 'YES')" on 0
mySQL error: Field 'user_password' doesn't have a default value

File: c:\Inetpub\wwwroot\coppermine\include\functions.inc.php - Line: 248
Title: Re: Error when creating a new user
Post by: Nibbler on February 07, 2006, 02:15:49 pm
user_password does have a default value.

Code: [Select]
  user_password varchar(40) NOT NULL default '',
Take a look at the cpg143_users table and make sure it matches the schema.

Code: [Select]
CREATE TABLE CPG_users (
  user_id int(11) NOT NULL auto_increment,
  user_group int(11) NOT NULL default '2',
  user_active enum('YES','NO') NOT NULL default 'NO',
  user_name varchar(25) NOT NULL default '',
  user_password varchar(40) NOT NULL default '',
  user_lastvisit datetime NOT NULL default '0000-00-00 00:00:00',
  user_regdate datetime NOT NULL default '0000-00-00 00:00:00',
  user_group_list varchar(255) NOT NULL default '',
  user_email varchar(255) NOT NULL default '',
  user_profile1 varchar(255) NOT NULL default '',
  user_profile2 varchar(255) NOT NULL default '',
  user_profile3 varchar(255) NOT NULL default '',
  user_profile4 varchar(255) NOT NULL default '',
  user_profile5 varchar(255) NOT NULL default '',
  user_profile6 text NOT NULL default '',
  user_actkey varchar(32) NOT NULL default '',

  PRIMARY KEY  (user_id),
  UNIQUE KEY user_name (user_name)
) TYPE=MyISAM;
Title: Re: Error when creating a new user
Post by: Puerilis on February 07, 2006, 04:36:32 pm
Hi

in my last post I hope you didn't think it was me that said "Field 'user_password' doesn't have a default value", it was actually part of the error message  ;).

If my cpg143_users table does not match your example do I delete the table and run your example as a query to generate the table correctly?

Many thanks
Title: Re: Error when creating a new user
Post by: Nibbler on February 07, 2006, 04:38:59 pm
No, you would lose all your users. That is an example to show what the table is meant to look like. You can add a default value for user_password by running

Code: [Select]
ALTER TABLE `cpg143_users` CHANGE `user_password` `user_password` varchar(40) NOT NULL default ''
Title: Re: Error when creating a new user
Post by: Puerilis on February 07, 2006, 05:14:17 pm
No, you would lose all your users. That is an example to show what the table is meant to look like. You can add a default value for user_password by running

Code: [Select]
ALTER TABLE `cpg143_users` CHANGE `user_password` `user_password` varchar(40) NOT NULL default ''

DOH its a good thing I asked first  :D
Title: Re: Error when creating a new user
Post by: Puerilis on February 07, 2006, 07:19:26 pm
No, you would lose all your users. That is an example to show what the table is meant to look like. You can add a default value for user_password by running

Code: [Select]
ALTER TABLE `cpg143_users` CHANGE `user_password` `user_password` varchar(40) NOT NULL default ''

Right i've ran the above and it "1 row affected",  so i've logged back in as administrator, tried to create a new user and got the following:

While executing query "INSERT INTO cpg143_users(user_regdate, user_active) VALUES (NOW(), 'YES')" on 0
mySQL error: Field 'user_profile6' doesn't have a default value

But I figured out what was wrong when comparing 'user_profile5' with 'user_profile6' , the 'user_profile5' was set to varchar(255) but 'user_profile6' was set to TEXT.

It now seems to be working but I am very confused as to why I have had these errors when I did a clean install, I deleted my old database & old files and rebuilt the gallery from the new coppermine v1.4.3 installation files.
Title: Re: Error when creating a new user
Post by: Puerilis on February 08, 2006, 11:50:13 pm
Right i've ran the above and it "1 row affected",  so i've logged back in as administrator, tried to create a new user and got the following:

While executing query "INSERT INTO cpg143_users(user_regdate, user_active) VALUES (NOW(), 'YES')" on 0
mySQL error: Field 'user_profile6' doesn't have a default value

But I figured out what was wrong when comparing 'user_profile5' with 'user_profile6' , the 'user_profile5' was set to varchar(255) but 'user_profile6' was set to TEXT.

It now seems to be working but I am very confused as to why I have had these errors when I did a clean install, I deleted my old database & old files and rebuilt the gallery from the new coppermine v1.4.3 installation files.

I just found out why the 'user_profile6`was set to  TEXT, in the update.sql file there is a line that says ALTER TABLE `CPG_users` CHANGE `user_profile6` `user_profile6` TEXT NOT NULL;
Title: Re: Error when creating a new user
Post by: Nibbler on February 09, 2006, 02:05:25 pm
user_profile6 is supposed to be TEXT, it is longer than the others so it can be used to enter a biography or similar.
Title: Re: Error when creating a new user
Post by: Puerilis on February 12, 2006, 12:13:42 pm
user_profile6 is supposed to be TEXT, it is longer than the others so it can be used to enter a biography or similar.

Really ????? well when i changed the user_profile6 to match user_profile5, the following error vanished:

Code: [Select]
While executing query "INSERT INTO cpg143_users(user_regdate, user_active) VALUES (NOW(), 'YES')" on 0
mySQL error: Field 'user_profile6' doesn't have a default value

I'm very confused now, i think it might be work deleting it all and reinstalling it unless someone could fix the database for me, could email a backup of it to someone  :D
Title: Re: Error when creating a new user
Post by: BeginnersLuck on March 15, 2006, 02:22:30 am
I had the exact same problem so I changed the field from NOT NULL to NULL and that seemed to do the trick.

user_profile6 text NOT NULL default '',
now reads:
user_profile6 text NULL default '',

Thanks,
BL
Title: Re: Error when creating a new user
Post by: amdyh on May 17, 2006, 10:18:41 pm
I have the same error when trying to create a new user. The command suggested by Nibbler :

ALTER TABLE `cpg143_users` CHANGE `user_password` `user_password` varchar(40) NOT NULL default ''

Does not seem to work - the command promt changed to show it's expecting something else (>). This may be 'cause I'm doing something wrong as I am very much a newbie, but I've cut and paster it to try and make sure it's correct. This error did not occure when I was runnig 1.4.3 - hence there must be something in 1.4.5? Interesting to see that all the files are called 1.4.3 still! I've used the checker which reports all files are ok.

Here is my error detail which is similar (the error itself is the same) as the original in this thread: I do hope someone will look to the end of this thread and help!

While executing query "INSERT INTO cpg143_users(user_regdate, user_active) VALUES (NOW(), 'YES')" on 0

mySQL error: Field 'user_password' doesn't have a default value


File: C:\Website\Coppermine\include\functions.inc.php - Line: 248



USER:
------------------
Array
(
    [ID] => bedd3798e7ec28a757a8dfce97aeb8ee
    [am] => 1
    [lang] => english
    [liv] => Array
        (
            [user_id] => 1
    [user_name] => amdyhou
    [groups] => Array
        (
           
        )

    [disk_max] => 0
    [disk_min] => 0
    [can_rate_pictures] => 1
    [can_send_ecards] => 1
    [ufc_max] => 3
    [ufc_min] => 3
    [custom_user_upload] => 0
    [num_file_upload] => 5
    [num_URI_upload] => 3
    [can_post_comments] => 1
    [can_upload_pictures] => 1
    [can_create_albums] => 1
    [has_admin_access] => 1
    [pub_upl_need_approval] => 1
    [priv_upl_need_approval] => 1
    [group_name] => Administrators
    [upload_form_config] => 3
    [group_quota] => 0
    [can_see_all_albums] => 1
    [group_id] => 1
)

==========================
Queries:
------------------
Array
(
    [op] => new_user
)

==========================
POST :
------------------
Array
(
)

==========================
VERSION INFO :
------------------
PHP version: 5.1.2 - OK
------------------
mySQL version: 5.0.18-nt
------------------
Coppermine version: 1.4.5(stable)
==========================
Module: GD
------------------
GD Version: bundled (2.0.28 compatible)
FreeType Support: 1
FreeType Linkage: with freetype
T1Lib Support: 1
GIF Read Support: 1
GIF Create Support: 1
JPG Support: 1
PNG Support: 1
WBMP Support: 1
XPM Support:
XBM Support: 1
JIS-mapped Japanese Font Support:

==========================
Module: mysql
------------------
MySQL Supportenabled
Active Persistent Links 0
Active Links 1
Client API version 5.0.18
==========================
Module: zlib
------------------
ZLib Support enabled
Stream Wrapper support compress.zlib://
Stream Filter support zlib.inflate, zlib.deflate
Compiled Version 1.2.3
Linked Version 1.2.3
==========================
Server restrictions (safe mode)?
------------------
Directive | Local Value | Master Value
safe_mode | Off | Off
safe_mode_exec_dir | no value | no value
safe_mode_gid | Off | Off
safe_mode_include_dir | no value | no value
safe_mode_exec_dir | no value | no value
sql.safe_mode | Off | Off
disable_functions | no value | no value
file_uploads | On | On
include_path | .;C:\php5\pear | .;C:\php5\pear
open_basedir | no value | no value
==========================
email
------------------
Directive | Local Value | Master Value
sendmail_from | no value | no value
sendmail_path | no value | no value
SMTP | localhost | localhost
smtp_port | 25 | 25
==========================
Size and Time
------------------
Directive | Local Value | Master Value
max_execution_time | 30 | 30
max_input_time | 60 | 60
upload_max_filesize | 2M | 2M
post_max_size | 8M | 8M
==========================
Page generated in 0.177 seconds - 16 queries in 0.016 seconds - Album set : ; Meta set: ;