• Hi I am Sunil,

    I copied one wordpress site from one server to another with different name and made the proper settings.

    Few of the links is not working, throwing 500 internal server error. In logs it didn’t written any information. 775 permissions are there.

    Kindly help me on this issue.

    Thanks in advance,
    Sunil.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Amid

    (@aminteractiondesign)

    Did you check if your .htaccess file is allright?

    Thread Starter sunilkumark

    (@sunilkumark)

    yes, it is auto created by wordpress when we select permalinks as postname. Below one is the htaccess

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /httpdocs/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /httpdocs/index.php [L]
    </IfModule>

    # END WordPress

    500 Internal Server Error is shown if the PHP code has fatal errors and error displaying is switched off. You can try adding the following lines in the .htaccess file to see the error itself instead of 500 error page:

    php_flag display_errors 1

    Can you check if you are using the same PHP versions on both servers?

    • This reply was modified 7 years, 11 months ago by georged8.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘500 internal server error’ is closed to new replies.