Finally! I found solution! After few hours of searching and lots of coffee (Caffeine really does strange things to your brain!) and going through database and cgi files, I found where is problem.
Problem was in "login" table in mysql. Specially in row named "AGENT". This is char(100) row. And there was the problem.
When I was accesing it on work computer data that was written in that row was:
and that was ok, but when I was accessing it from my laptop data was:
And there is catch. Real data from AGENT variable is:
and because row was set to CHAR(100) extra data "T CLR 3.0.30618)" wasn't stored so every time script try to check data from login table (and it's searching for cookie ID, remote address, account and AGENT) it could not match so every it bangs me back to login screen.
Fast fix was to change AGENT row to CHAR(255). Maybe it could be VARCHAR also. Yeeey!
Now, only to find why AJAX category display isn't working...
UnReal Network
Problem was in "login" table in mysql. Specially in row named "AGENT". This is char(100) row. And there was the problem.
When I was accesing it on work computer data that was written in that row was:
Code:
Mozilla/4.0 compatible; MSIE 7.0; Windows NT 5.1)and that was ok, but when I was accessing it from my laptop data was:
Code:
Mozilla/4.0 compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NEAnd there is catch. Real data from AGENT variable is:
Code:
Mozilla/4.0 compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)and because row was set to CHAR(100) extra data "T CLR 3.0.30618)" wasn't stored so every time script try to check data from login table (and it's searching for cookie ID, remote address, account and AGENT) it could not match so every it bangs me back to login screen.
Fast fix was to change AGENT row to CHAR(255). Maybe it could be VARCHAR also. Yeeey!


Now, only to find why AJAX category display isn't working...
UnReal Network