kaushik
Posts: 5
|
| Posted: 11/08/2007, 10:55 PM |
|
I use CCS 3.2.0.4
I am migrating my production server from Linux PHP4.4.4 shared server to Linux PHP4.4.7 VPS. Database is MySql.
On my Local development server and on the old shared server everything is perfect and running.
On the VPS Login does not work. I get 'The page cannot be displayed' message on IE and the IE address box shows "http://www.mydomain.com//index2.php?ccsForm=Login". It does not matter wheather my userid and password is wrong or right.
I checked that I can access the other pages removing the restrictions. So it does not seem to be a problem of MySql.
Here are the phpinfo for the two production servers:
Linux PHP4.4.4 shared server ( this server works fine) http://69.73.154.210/~qnss3400/phpinfo.php
Linux PHP4.4.7 VPS ( this server gives Login Problem) http://www.qnsservice.com/phpinfo.php
I tried every thing that I could do for last three days. Please help.
Regards,
Kaushik
|
 |
 |
kaushik
Posts: 5
|
| Posted: 11/09/2007, 12:07 AM |
|
I just observed that I may have some problems with my User Group table. This is tha Loin User Group table also.
All the pages where this table is used gives the ' Page not found' error.
the sql schema of this table given below:
CREATE TABLE `user_gr_mst` (
`user_gr_code` int(4) unsigned NOT NULL default '0',
`gr_name` varchar(20) default NULL,
`mod_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`user_gr_code`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `user_gr_mst` */
insert into `user_gr_mst`(`user_gr_code`,`gr_name`,`mod_date`) values (1,'User','2006-08-21 21:33:14'),(2,'Manager','2006-08-21 21:33:21'),(3,'Administrator','2006-08-21 21:33:42');
Any help will be appreciated.
|
 |
 |
|