【问题标题】:Own Cloud PHP-Modul cURLOwncloud PHP 模块 cURL
【发布时间】:2018-09-07 07:04:05
【问题描述】:

我尝试在我的树莓派上安装自己的云。 当我调用 url 时,它会显示:

我使用 nginx 和 php-fpm,但我不知道,有什么问题.. phpinfo();完美运行!

希望你能帮帮我!

谢谢你,祝你有美好的一天;)

/etc/nginx/启用站点

upstream php-handler {
    server 127.0.0.1:9000;
    server unix:/var/run/php5-fpm.sock;
}
server {
    listen 80;
    server_name [my ip];
    return 301 https://$server_name$request_uri; # enforce https
}

server {
    listen 443 ssl;
    server_name [my ip];

    ssl_certificate /var/www/ssl/cloudssl.crt;
    ssl_certificate_key /var/www/ssl/cloudssl.key;

    # Path to the root of your installation
    root /var/www/cloud;

    client_max_body_size 10G;
    # set max upload size
    fastcgi_buffers 64 4K;

    rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
    rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
    rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;

    index index.html index.php;
    error_page 403 /core/templates/403.php;
    error_page 404 /core/templates/404.php;

    location = /robots.txt {
            allow all;
            log_not_found off;
            access_log off;
    }

    location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
            deny all;
    }

    location / {
            # The following 2 rules are only needed with webfinger
            rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
            rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

            rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
            rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;

            rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;

            try_files $uri $uri/ index.php;
    }

    location ~ ^(.+?\.php)(/.*)?$ {
            try_files $1 = 404;

            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$1;
            fastcgi_param PATH_INFO $2;
            fastcgi_param HTTPS on;
            fastcgi_pass 127.0.0.1:9000;
    }

    location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
            expires 30d;
            access_log off;
    }
}

【问题讨论】:

  • 嗯,我不确定你不明白什么。 PHP module cURL not installed 很清楚。你需要安装php模块cURL(我不确定了,但如果你想通过apt-get安装它,我认为它是php5-curl)。
  • im so dump... -.- 这一刻,当您忽略显而易见的... xD 只需 apt-get install php5-curl :D

标签: php curl nginx owncloud


【解决方案1】:

我知道这篇文章已经有 2 年的历史了,但我现在在使用 php7.2 时遇到了几乎相同的问题。我将我的服务器从 Ubuntus LTS 版本 16 更新到了 18。 我的问题和你的一样,我从 php7.2 安装了所有东西(包括 fpm 和 curl),但是当我尝试使用 web 客户端时得到了相同的消息:

PHP-Modul cURL 无需安装。 Bitte kontaktieren Sie Ihren Server-Administrator 和 bitten Sie um die Installation des Moduls。 PHP-Module wurden installiert, werden aber als noch fehlend gelistet? Bitte kontaktieren Sie Ihren Server-Administrator 和 bitten Sie um den Neustart des Webservers。

我在我的 nginx 配置中解决了这个问题!我有条目:

upstream mycloud {
  server unix:/var/run/php/php7.0-fpm.sock;
}

将其更改为:

upstream mycloud {
  server unix:/var/run/php/php7.2-fpm.sock;
}

当然还有 fastcgi 条目:

fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;

为此苦苦挣扎了一段时间,但现在它就像一个魅力:) 我希望这将有助于将来使用 nginx php-fpm 服务器的人;)

【讨论】:

    猜你喜欢
    • 2016-04-06
    • 2019-01-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-04-29
    • 2015-11-11
    • 2011-12-11
    • 1970-01-01
    相关资源
    最近更新 更多