I think the created php sessions here are now easily expired without reaching the time it is meant/expected to expire. My script before the update (before 500 internal server error and page unavailable occurred) works fine but then after that my script went on havoc. It is meant to expire for...
I think the created php sessions here are now easily expired without reaching the time it is meant/expected to expire. My script before the update (before 500 internal server error and page unavailable occurred) works fine but then after that my script went on havoc. It is meant to expire for...
The first one is this:
RewriteEngine on
RewriteRule ^~dollars$ index.php [L]
RewriteRule ^~login$ login.php [L]
The other one:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([a-z0-9_]+)/*$ index.php?controller=$1&%{QUERY_STRING} [L]...
Rewrite Mode is not working on my site, though the last time it was working fine before the server upgrades. It throws a 404 not found error page like index.php is missing (http://mushoku.tk/~dollars), so in the mean time I've turned off the rewrite mode. Also some of the php file that I have...