Thomas Nielsen
Thomas Nielsen

Reputation: 613

Magento URL Rewrite Indexer Error 500

When running the indexing for url rewrite catalog, I'm getting an error 500 interal server error, but I cannot get it to generate any errors to the exceptions.log .. I've tried to empty the core_url_rewrites but with no luck, still getting error 500 and no log file. It's Magento 1.6.2

The error generated when the 500 screen turns up: www.domain.com/index.php/admin/process/reindexProcess/process/3/key/caac7ef08590009411a43aa71a990192/

Upvotes: 1

Views: 3231

Answers (2)

Theodores
Theodores

Reputation: 1209

Whatabout timeouts? They too can lead to 500 errors.

Try putting something like this in .htaccess or php.ini:

php_value session.cookie_lifetime 86400
php_value session.gc_maxlifetime 86400

Upvotes: 0

Miroslav
Miroslav

Reputation: 1960

I think you running out of memory, allocate more in your .htaccess file:

php_value memory_limit 512M

512M should do it, if not try incrementing this value even more.

Upvotes: 2

Related Questions