Fatal error: Maximum execution time of 30 seconds exceeded in C:\Program Files (x86)\Zend\Apache2\htdocs\tokopetaninew\branches\development\lib\Zend\Locale\Format.php on line 442
Array
(
[type] => 1
[message] => Maximum execution time of 30 seconds exceeded
[file] => C:\Program Files (x86)\Zend\Apache2\htdocs\tokopetaninew\branches\development\lib\Zend\Locale\Format.php
[line] => 442
)
i have install magento in my localhost with zend server and port localhost:8080 and i got that error message, please help me
Every script has a maximum running time ("max execution time"). Depending on your php configuration it can be several values (appearing to be 30 seconds in your case).
Your script is taking longer than this 30 seconds to execute so the server interrupts it and cancels the script giving you this error.
Possible solutions:
Be careful with increasing the max execution time above a specific point tho. Keep in mind a running script will occupy one core of your server. In case you have a quad core and 4 scripts are running for five minutes your server will appear dead for that time as no requests can be taken while the others run.