This topic can no longer be replied to because it has been locked.

pyrocms(version 0.9.9.7) backend give Error HTTP - 500 Internal Server Error
Gravatar
Joined: 2010-09-08
Posts: 1
Guys,

I have made a fresh installation of pyrocms(version 0.9.9.7) on local machine, it is working fine on my local machine, but when i have moved it to my remote server, its back end(admin end) is not working, it give me error

HTTP - 500 Internal Server Error

Even when i click on the any link on client end it give me page missing Error.I have search a lot on internet but unable to resolve it.

is there any problem with the .htaccess file? do i need to define any extra configuration in .htaccess file?

Here is my .htaccess file content

<IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine on # NOTICE: If you get a 404 play with combinations of the following commented out lines #AllowOverride All #RewriteBase /wherever/pyro/is # Keep people out of codeigniter directory and Git/Mercurial data RedirectMatch 403 ^/(application\/cache|codeigniter|\.git|\.hg).*$ # Send request via index.php (again, not if its a real file or folder) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d <IfModule mod_php5.c> RewriteRule ^(.*)$ index.php/$1 [L] </IfModule> <IfModule !mod_php5.c> RewriteRule ^(.*)$ index.php?/$1 [L] </IfModule> </IfModule>


Please help me in resolving this issue, i shall be very thank to you.

Regards,
RAHIM ALI
Gravatar
Joined: 2010-10-07
Posts: 2
I have same problem.
Locally all works fine, but when i installed pyrocms on a remote server, i have a 406 Page error and can't access any file for that domain/subdomain.
It seems that is a .htaccess problem, because i tried to delete all on domain where i installed pyrocms and i can't access any file on that domain anymore.

Guys someone with .htaccess skill can tell us how can we reset the the previous state of our domain and how to solve the pyrocms problem?

Cheers.
Gravatar
Joined: 2010-12-02
Posts: 1
If you are getting a 500 error when you try the code on a remote server, add RewriteBase:

RewriteEngine on RewriteBase / # Send request via index.php (again, not if its a real file or folder) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]