Reputation: 16726
I took a test with magento-check.php file and it said that:
"Congratulations! Your server meets the requirements for Magento."
But installation procedure simply hangs on the last step and throws execution_time exceeded error, despite the fact, that I already rised it up to 3000 secs.
Any place where I can look for the problem?
UPDATE:
The error is:
Fatal error: Maximum execution time of 3000 seconds exceeded in /magento/www/lib/Zend/Validate/Hostname.php on line 591
Upvotes: 0
Views: 605
Reputation: 5491
Setup a FQDN under your hosts file and use it during installation. Up the maximum execution time in PHP, and if all else fails after that try installing via the Command Line Interface.
Upvotes: 1
Reputation: 37700
Perhaps it is failing when testing for mod_rewrite. There is an option to disable that test in the installation. If installation then succeeds then you'll need to work on getting mod_rewrite to work or else you won't have SEO friendly URLs.
Upvotes: 1
Reputation: 4022
Place a file in your doc root with <?php phpinfo(); ?>
in it, call it mycheck.php
and load it up. Read for yourself the php options and settings and make sure that the execution time is not over-written by server defaults. (This should be clear from the two column output of phpinfo()
.
Upvotes: 0