Moodle Installation Last Step Error

Moodle Installation Last Step Error

by Trần Quý Phi -
Number of replies: 2

I installed Moodle 3.4 (and 3.5)  on Centos 6, nginx 1.14.0, PHP 7.1.17 with Zend OPcache through web browser interface (FireFox and/or Chrome).

The process is smooth, but I always had a problem that in the last step,  the page  with URL  .../user/editadvanced.php?id=2 is displayed not completely (pls see attached image) so I cannot provide admin user name and password... So the installation failed!

Please help me!

Attachment editadvanced.png
Average of ratings: -
In reply to Trần Quý Phi

Re: Moodle Installation Last Step Error

by Howard Miller -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

My guess is that your nginx setup is not supporting 'slasharguments'. 

Check - https://docs.moodle.org/35/en/Nginx#Slasharguments

Average of ratings: Useful (1)
In reply to Howard Miller

Re: Moodle Installation Last Step Error

by Trần Quý Phi -

Yes, you are right.

Btw, to whom could have the same problem:

In .../etc/nginx/conf.d/sitename.conf  the "location" statement must be changed to:

location ~ [^/]\.php(/|$) {

Thank you Miller.