• Resolved Jethro99

    (@jethro99)


    Hello My WordPress Gurus

    I am getting an Internal Server Error when I try to Export “All Content” from Tools=>Export. I can export single items like “Post” or “Pages”.

    I suspected it might be a php.ini issue so I made some changes, I added max_execution_time and bumped up the upload_max filesize:

    upload_max_filesize = 60M
    post_max_size = 60M
    max_execution_time = 300
    ;error_reporting(E_ALL & ~E_NOTICE)
    extension=pdo.so
    extension=pdo_sqlite.so
    extension=sqlite.so
    extension=pdo_mysql.so

    It did not fix the problem.

    Another suggestion I found was with the wp-config.php and that was to add the following line:

    define(‘WP_MEMORY_LIMIT’, ’64M’);

    And that did not fix the problem.

    I did not modify the .htpaccess, see below:

    # BEGIN WordPress

    # END WordPress

    Any takers? please?
    Deb

Viewing 4 replies - 1 through 4 (of 4 total)
  • I suspected it might be a php.ini issue so I made some changes,

    Maybe, but I would check your server error logs, and then you can find out exactly what the issue is, or at least get a clearer picture of what is happening.

    Moderator t-p

    (@t-p)

    – Try following @kjodle suggestion.

    – If you cannot find error logs or if you don’t find any helpful info in the error logs, Enable debugging and post the results.

    Thread Starter Jethro99

    (@jethro99)

    Sorry for the late reply. Much going on.

    It ended up being a .htaccess problem. I was so focused on php.ini and adding memory and seeing no results I finally thought I should add some memory adjustments to .htaccess:

    php_value upload_max_filesize 128M
    php_value post_max_size 128M

    Worked like a charm!

    Thanks for your help!!!!! I hope this helps someone else.

    Moderator t-p

    (@t-p)

    Glad you got it sorted 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Internal Server Error’ is closed to new replies.