NGG/NextGen图库的Nginx配置

时间:2013-11-22 作者:akira

我在nginx+php fpm的子文件夹中运行wordpressabc. 我想将图像上载到NextgenGallery 基于ajax的上传程序可以产生以下效果:

POST 404 for http://example.com/abc/index.php/photocrati_ajax
显然,在nginx.conf 不起作用。以下是它的相关部分:

try_files $uri $uri/ /index.php?q=$request_uri;

location ~ \\.php$ {
     try_files                $uri =404;
     fastcgi_split_path_info  ^(.+\\.php)(/.+)$;
     fastcgi_pass             php-fpm;
     fastcgi_index            index.php;
}
那么,如何服务photocrati_ajax 通过nginx并使上传工作正常?

3 个回复
SO网友:akira

try_files $uri $uri/ /index.php?q=$uri&$args;
为我工作。否则POST 请求缺少action 参数,whyever。

SO网友:mr_tron

我尝试了很多配置,找到了答案:

安装插件Nginx助手(嵌入式搜索中的Nginx)

  • 在设置中启用永久链接(任意)
  • 可选性使用本手册配置Nginxhttp://codex.wordpress.org/Nginx....
  • 利润!

    SO网友:jeff

    404 Nginx、wordpress、Nextgengallery出错

    这是永久链接的问题,上面的建议只适用于一个添加项,您必须禁用然后启用永久链接。

    1) 安装Nginx-helper2)禁用永久链接并保存。3) 启用永久链接并保存。

    一旦可以使用nextgen上传照片,就不再需要Nginx helper了。您可以禁用并删除它。

    结束
    NGG/NextGen图库的Nginx配置 - 小码农CODE - 行之有效找到问题解决它

    NGG/NextGen图库的Nginx配置

    时间:2013-11-22 作者:akira

    我在nginx+php fpm的子文件夹中运行wordpressabc. 我想将图像上载到NextgenGallery 基于ajax的上传程序可以产生以下效果:

    POST 404 for http://example.com/abc/index.php/photocrati_ajax
    
    显然,在nginx.conf 不起作用。以下是它的相关部分:

    try_files $uri $uri/ /index.php?q=$request_uri;
    
    location ~ \\.php$ {
         try_files                $uri =404;
         fastcgi_split_path_info  ^(.+\\.php)(/.+)$;
         fastcgi_pass             php-fpm;
         fastcgi_index            index.php;
    }
    
    那么,如何服务photocrati_ajax 通过nginx并使上传工作正常?

    3 个回复
    SO网友:akira

    try_files $uri $uri/ /index.php?q=$uri&$args;
    
    为我工作。否则POST 请求缺少action 参数,whyever。

    SO网友:mr_tron

    我尝试了很多配置,找到了答案:

    安装插件Nginx助手(嵌入式搜索中的Nginx)

  • 在设置中启用永久链接(任意)
  • 可选性使用本手册配置Nginxhttp://codex.wordpress.org/Nginx....
  • 利润!

    SO网友:jeff

    404 Nginx、wordpress、Nextgengallery出错

    这是永久链接的问题,上面的建议只适用于一个添加项,您必须禁用然后启用永久链接。

    1) 安装Nginx-helper2)禁用永久链接并保存。3) 启用永久链接并保存。

    一旦可以使用nextgen上传照片,就不再需要Nginx helper了。您可以禁用并删除它。

    相关推荐

    Docker化的Wordpress出现了Nginx代理问题

    我有一个停靠的Nginx代理,它位于我的服务器上。我的一个网站是Docker Compose Wordpress网站。它们是单独的容器,必须保持这种状态。When I update my Site Url in the Settings I can still log into my Admin Dashboard, but I cannot reach my actual site. I receive a 502 Gateway Error from Nginx. Nginx服务器块: serv