WordPress installation hangs on second step

· 209 words · 1 minutes to read

Even though WordPress brags a lot about it’s famous 5 min setup, I noticed that actually a lot of people on the web run into a problem with WordPress installation hanging on the 2nd step (renders blank page instead). This is especially common for localhost setups, where usually the memory resources and CPU cycles would be more of an headache than on live sites.

Solution after the jump.

The devil lies in� max_execution_time 🔗

The devil most often lies in details, and in this case that’s php.ini. It has a setting� max_execution_time which by default is set to 30 (seconds). In slower environments (localhosts, virtual servers with minimal reosurces etc.) that might be not enough for the install.php to complete. The solution is easy, just increase it.

;;;;;;;;;;;;;;;;;;;  
; Resource Limits ;  
;;;;;;;;;;;;;;;;;;;

; Maximum execution time of each script, in seconds  
; http://php.net/max-execution-time  
; Note: This directive is hardcoded to 0 for the CLI SAPI  
max\_execution\_time = 90  

One thing to bear in mind, is that both Apache and IIS have a default timeout directives of 300 seconds (or different if you or your hosting provider has modified it). So you might want to make sure, that this one hasn’t been arbitrarily set to something ridiculously low as well.

About


Hi! I'm Filip W., a cloud architect from Zürich 🇨🇭. I like Toronto Maple Leafs 🇨🇦, Rancid and quantum computing. Oh, and I love the Lowlands 🏴󠁧󠁢󠁳󠁣󠁴󠁿.

You can find me on Github and on Mastodon.

My Introduction to Quantum Computing with Q# and QDK book
Microsoft MVP