Showing posts with label htaccess. Show all posts
Showing posts with label htaccess. Show all posts

December 15, 2013

Redirect all HTTP request to HTTPS using htaccess


open .htaccess file in root folder

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Fatal error: Maximum execution time of 60 seconds exceeded

Magento Discussion
Fatal error: Maximum execution time of 60 seconds exceeded in E:\wamp\www\projects\magento\magento1702\lib\Zend\Db\Statement\Pdo.php on line 228


In magento\.htaccess file

############################################
## adjust memory limit

#    php_value memory_limit 64M
    php_value memory_limit 512M
    php_value max_input_time 6000
    php_value max_execution_time 180000