google-code-export / glossword

Automatically exported from code.google.com/p/glossword
0 stars 0 forks source link

Admin Login Error #92

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
= What steps will reproduce the problem?
1. Upgraded from version 1.8.7 to 1.8.11
2.
3.

= What is the expected output? What do you see instead?

= What version of the product are you using? On what operating system?

= Please provide any additional information below.

Notice: Undefined index: is_multiple 
in /home/epangso1/public_html/polodict.com/gw_login.php on line 473

Warning: Cannot modify header information - headers already sent by 
(output started 
at /home/epangso1/public_html/polodict.com/gw_login.php:473) 
in /home/epangso1/public_html/polodict.com/gw_login.php on line 485

Warning: Cannot modify header information - headers already sent by 
(output started 
at /home/epangso1/public_html/polodict.com/gw_login.php:473) 
in /home/epangso1/public_html/polodict.com/gw_login.php on line 486
Headers already sent 
in /home/epangso1/public_html/polodict.com/gw_login.php on line 473
Location:
http://polodict.com/gw_admin.php

Please help me. Thank you very much. I have try to fixed all day. But I am 
failed. Thanks

Original issue reported on code.google.com by dohuut...@gmail.com on 1 Nov 2008 at 4:35

GoogleCodeExporter commented 9 years ago
`is_multiple` is a new field for database table `users`. It should exists.

CREATE TABLE IF NOT EXISTS `gw_users` (
  `id_user` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `login` varbinary(128) NOT NULL,
  `password` char(32) NOT NULL,
  `is_active` tinyint(1) unsigned NOT NULL DEFAULT '1',
  `is_multiple` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `is_show_contact` tinyint(1) unsigned NOT NULL DEFAULT '1',
  `date_reg` int(10) unsigned NOT NULL DEFAULT '0',
  `date_login` int(10) unsigned NOT NULL DEFAULT '0',
  `int_items` int(10) unsigned NOT NULL DEFAULT '0',
  `user_fname` varbinary(64) NOT NULL,
  `user_sname` varbinary(64) NOT NULL,
  `user_email` varchar(255) NOT NULL,
  `user_perm` blob NOT NULL,
  `user_settings` blob NOT NULL,
  PRIMARY KEY (`id_user`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

Original comment by dmitry.s...@gmail.com on 25 Jan 2010 at 5:45