我已安装了Homestead VM并在我的Mac(OSX Yosemite)上设置了Moodle安装文件夹。我还创造了'情绪化的''文件夹并赋予它权限0777以及文件夹&moodmentata / sessions'通过我的系统命令行(我尝试通过VM内部的SSH执行此操作,但它似乎没有更改权限)。但是,通过我的系统执行此操作后检查权限显示该文件夹可从VM内部写入。
然后我继续进行安装并运行并创建了数据库表,并进行了检查,显示了2个检查警告: 要检查的Intl和xmlrpc
我不相信这些对于初始安装至关重要。当我到达管理员用户创建我遇到问题时。页面(/user/editadvanced.php?id=2)停止加载任何图片,当我发布表单时,我收到错误:'提交的sesskey不正确,表单不被接受!' 我认为这可能是因为在moodledata文件夹中没有可写的会话,但是我已经检查过,现在我已经没有想法了!
我附上了几张截图。
非常感谢,迈克。
答案 0 :(得分:5)
好几天头疼后我通过编辑NGINX配置文件解决了我自己的问题。以下是默认情况:
server {
listen 80;
server_name example.com;
root /home/forge/example.com;
# FORGE SSL (DO NOT REMOVE!)
# ssl_certificate;
# ssl_certificate_key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/example.com-error.log error;
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
这就是我改变它的方式,它现在有效:
server {
listen 80;
server_name example.com; #REPLACE SERVER NAME
root /var/www/example.com/www/; #REPLACE MOODLE INSTALL PATH
error_log /var/www/example.com/log/example.com_errors.log; #REPLACE MOODLE ERROR LOG PATH
access_log /var/www/example.com/log/example.com_access.log; #REPLACE MOODLE ACCESS LOG PATH
rewrite ^/(.*\.php)(/)(.*)$ /$1?file=/$3 last;
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php;
}
fastcgi_intercept_errors on;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
我还没有时间看看上面配置的哪个部分/部分修复了这个问题,也许知道的人可以马上看到?我怀疑它可能是重写规则?无论哪种方式,我希望这对未来的其他人有所帮助,我真的很高兴让这个工作!
答案 1 :(得分:0)
我可以确认只是该特定配置文件的重写部分,尽管在Moodle Nginx页面中没有记录。
我的猜测是location ~ [^/]\.php(/|$) {
部分与重写规则rewrite ^/(.*\.php)(/)(.*)$ /$1?file=/$3 last;
和location ~ \.php$ {
指令的作用相同。需要做一些测试来改变location指令,看看它是否也能正常工作。