А можно поподробнее...WalkMan писал(а):Лично я сделал так - при заполнении формы регистрации юзеры не могут загружать фотки и аватары. А активация акаунтов производится админом форума.
Я тоже хочу убрать панель загрузки фото при регистрации.
Код: Выделить всё
Couldn't insert data into users table
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3
UPDATE phpbb_users SET user_photo = 'd582061745915b0da5816.gif', user_photo_type = 1 WHERE user_id =
Line : 503
File : profilephoto_mod.php
Код: Выделить всё
<!-- BEGIN switch_user_logged_in -->
<!-- END switch_user_logged_in -->
Код: Выделить всё
Couldn't insert data into users table
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3
UPDATE phpbb_users SET user_photo = '', user_photo_type = 0 WHERE user_id =
Line : 503
File : profilephoto_mod.php
Код: Выделить всё
one
create user variable 'user_photo'...
Couldn't alter users table
1060: Duplicate column name 'user_photo'
ALTER TABLE phpbb_users ADD user_photo VARCHAR(100)
done
create user variable 'user_photo_type'...
Couldn't alter users table
1060: Duplicate column name 'user_photo_type'
ALTER TABLE phpbb_users ADD user_photo_type TINYINT(4) DEFAULT '0' NOT NULL
done
sucessfully added new config variables.
Код: Выделить всё
Couldn't insert data into users table
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3
UPDATE phpbb_users SET user_photo = '', user_photo_type = 0 WHERE user_id =
Line : 503
File : profilephoto_mod.php