Joomla! 3 installation freezes at creating database table

后端 未结 6 1239
忘了有多久
忘了有多久 2020-12-12 14:12

I am trying to install Joomla! 3.2.1 on my system but the installation freezes half way through. I\'ve downloaded and installed the Wamp Server 2.4 and wanted to locally ins

6条回答
  •  失恋的感觉
    2020-12-12 14:32

    The problem is that PHP has timed out. By default WAMP comes with the php variable max_execution_time = 30

    Look at your php error log and it should make this error fairly obvious.

    So edit your php.ini file, using the wampmanager menu system

    wampmanager -> PHP -> php.ini
    

    Find the parameter

    max_execution_time = 30
    

    And change it to

    max_execution_time = 200
    

    Then restart Apache, so it see's these changes.

    Once the install has completed go back and change it back to a value no more than 60.

提交回复
热议问题