Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Error when creating a new user  (Read 6576 times)

0 Members and 1 Guest are viewing this topic.

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Error when creating a new user
« 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".
Logged

Nibbler

  • Guest
Re: Error when creating a new user
« Reply #1 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.
Logged

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Re: Error when creating a new user
« Reply #2 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
Logged

Nibbler

  • Guest
Re: Error when creating a new user
« Reply #3 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;
Logged

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Re: Error when creating a new user
« Reply #4 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
Logged

Nibbler

  • Guest
Re: Error when creating a new user
« Reply #5 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 ''
Logged

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Re: Error when creating a new user
« Reply #6 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
Logged

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Re: Error when creating a new user
« Reply #7 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.
Logged

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Re: Error when creating a new user
« Reply #8 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;
Logged

Nibbler

  • Guest
Re: Error when creating a new user
« Reply #9 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.
Logged

Puerilis

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
Re: Error when creating a new user
« Reply #10 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
Logged

BeginnersLuck

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
Re: Error when creating a new user
« Reply #11 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
Logged

amdyh

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
Re: Error when creating a new user
« Reply #12 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
        (
           
  • => 502
  • [1] => 507
                [2] => 208
            )

    )

    ==========================
    USER DATA:
    ------------------
    Array
    (
       
[user_id] => 1
    [user_name] => amdyhou
    [groups] => Array
        (
           
  • => 1

        )

    [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
(
   
  • => SELECT extension, mime, content, player FROM cpg143_filetypes; (0.001s)
  • [1] => select * from cpg143_plugins order by priority asc; (0.001s)
        [2] => delete from `MySQL`.cpg143_sessions where time<1147716551 and remember=0; (0.001s)
        [3] => delete from `MySQL`.cpg143_sessions where time<1146510551; (0.001s)
        [4] => select user_id from `MySQL`.cpg143_sessions where session_id=md5("8afa20b1cea34fc6640ee5e7dcb7f45649440d6b3e9a7b0c01dd8b41051e9c45"); (0.001s)
        [5] => select user_id as id, user_password as password from `MySQL`.cpg143_users where user_id=1 (0.001s)
        [6] => SELECT u.user_id AS id, u.user_name AS username, u.user_password AS password, u.user_group+100 AS group_id FROM `MySQL`.cpg143_users AS u INNER JOIN `MySQL`.cpg143_usergroups AS g ON u.user_group=g.group_id WHERE u.user_id='1' (0.001s)
        [7] => SELECT user_group_list FROM `MySQL`.cpg143_users AS u WHERE user_id='1' and user_group_list <> ''; (0.001s)
        [8] => SELECT MAX(group_quota) as disk_max, MIN(group_quota) as disk_min, MAX(can_rate_pictures) as can_rate_pictures, MAX(can_send_ecards) as can_send_ecards, MAX(upload_form_config) as ufc_max, MIN(upload_form_config) as ufc_min, MAX(custom_user_upload) as custom_user_upload, MAX(num_file_upload) as num_file_upload, MAX(num_URI_upload) as num_URI_upload, MAX(can_post_comments) as can_post_comments, MAX(can_upload_pictures) as can_upload_pictures, MAX(can_create_albums) as can_create_albums, MAX(has_admin_access) as has_admin_access, MIN(pub_upl_need_approval) as pub_upl_need_approval, MIN( priv_upl_need_approval) as  priv_upl_need_approval FROM cpg143_usergroups WHERE group_id in (1) (0.001s)
        [9] => SELECT group_name FROM  cpg143_usergroups WHERE group_id= 1 (0.001s)
        [10] => update `MySQL`.cpg143_sessions set time='1147720151' where session_id=md5('8afa20b1cea34fc6640ee5e7dcb7f45649440d6b3e9a7b0c01dd8b41051e9c45'); (0.001s)
        [11] => SELECT user_favpics FROM cpg143_favpics WHERE user_id = 1 (0.001s)
        [12] => DELETE FROM cpg143_banned WHERE expiry < '2006-05-15 19:09:11' (0.001s)
        [13] => SELECT * FROM cpg143_banned WHERE (ip_addr='192.168.1.2' OR ip_addr='192.168.1.2' OR user_id=1) AND brute_force=0 (0.001s)
        [14] => INSERT INTO cpg143_users(user_regdate, user_active) VALUES (NOW(), 'YES') (0.001s)
        [15] => SELECT COUNT(*) FROM cpg143_pictures WHERE approved = 'NO' (0.001s)
    )

    ==========================
    GET :
    ------------------
    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: ;
Logged
Pages: [1]   Go Up
 

Page created in 0.054 seconds with 20 queries.