Không thể định vị gói php7 curl

Xin chào,
Sử dụng ISP Config 3 trên Ubuntu 18. 04. 5 LTS
đang cố thêm php 7. 3 & 7. 4 dưới dạng phiên bản bổ sung bằng cách làm theo hướng dẫn này https. //www. làm thế nào để rèn. com/hướng dẫn. fig-3-from-debian-packages-on-debian-8-and-9/
khi tôi chạy lệnh này;

Mã.

apt-get install php7.3 php7.3-cli php7.3-cgi php7.3-fpm php7.3-gd php7.3-mysql php7.3-imap php7.3-curl php7.3-intl php7.3-pspell php7.3-recode php7.3-sqlite3 php7.3-tidy php7.3-xmlrpc php7.3-xsl php7.3-zip php7.3-mbstring php7.3-soap php7.3-opcache php7.3-common php7.3-json php7.3-readline php7.3-xml

máy chủ trả về;

Mã.

Reading package lists.. Done
Building dependency tree
Reading state information.. Done
E: Unable to locate package php7.3
E: Couldn't find any package by glob 'php7.3'
E: Couldn't find any package by regex 'php7.3'
E: Unable to locate package php7.3-cli
E: Couldn't find any package by glob 'php7.3-cli'
E: Couldn't find any package by regex 'php7.3-cli'
E: Unable to locate package php7.3-cgi
E: Couldn't find any package by glob 'php7.3-cgi'
E: Couldn't find any package by regex 'php7.3-cgi'
E: Unable to locate package php7.3-fpm
E: Couldn't find any package by glob 'php7.3-fpm'
E: Couldn't find any package by regex 'php7.3-fpm'
E: Unable to locate package php7.3-gd
E: Couldn't find any package by glob 'php7.3-gd'
E: Couldn't find any package by regex 'php7.3-gd'
E: Unable to locate package php7.3-mysql
E: Couldn't find any package by glob 'php7.3-mysql'
E: Couldn't find any package by regex 'php7.3-mysql'
E: Unable to locate package php7.3-imap
E: Couldn't find any package by glob 'php7.3-imap'
E: Couldn't find any package by regex 'php7.3-imap'
E: Unable to locate package php7.3-curl
E: Couldn't find any package by glob 'php7.3-curl'
E: Couldn't find any package by regex 'php7.3-curl'
E: Unable to locate package php7.3-intl
E: Couldn't find any package by glob 'php7.3-intl'
E: Couldn't find any package by regex 'php7.3-intl'
E: Unable to locate package php7.3-pspell
E: Couldn't find any package by glob 'php7.3-pspell'
E: Couldn't find any package by regex 'php7.3-pspell'
E: Unable to locate package php7.3-recode
E: Couldn't find any package by glob 'php7.3-recode'
E: Couldn't find any package by regex 'php7.3-recode'
E: Unable to locate package php7.3-sqlite3
E: Couldn't find any package by glob 'php7.3-sqlite3'
E: Couldn't find any package by regex 'php7.3-sqlite3'
E: Unable to locate package php7.3-tidy
E: Couldn't find any package by glob 'php7.3-tidy'
E: Couldn't find any package by regex 'php7.3-tidy'
E: Unable to locate package php7.3-xmlrpc
E: Couldn't find any package by glob 'php7.3-xmlrpc'
E: Couldn't find any package by regex 'php7.3-xmlrpc'
E: Unable to locate package php7.3-xsl
E: Couldn't find any package by glob 'php7.3-xsl'
E: Couldn't find any package by regex 'php7.3-xsl'
E: Unable to locate package php7.3-zip
E: Couldn't find any package by glob 'php7.3-zip'
E: Couldn't find any package by regex 'php7.3-zip'
E: Unable to locate package php7.3-mbstring
E: Couldn't find any package by glob 'php7.3-mbstring'
E: Couldn't find any package by regex 'php7.3-mbstring'
E: Unable to locate package php7.3-soap
E: Couldn't find any package by glob 'php7.3-soap'
E: Couldn't find any package by regex 'php7.3-soap'
E: Unable to locate package php7.3-opcache
E: Couldn't find any package by glob 'php7.3-opcache'
E: Couldn't find any package by regex 'php7.3-opcache'
E: Unable to locate package php7.3-common
E: Couldn't find any package by glob 'php7.3-common'
E: Couldn't find any package by regex 'php7.3-common'
E: Unable to locate package php7.3-json
E: Couldn't find any package by glob 'php7.3-json'
E: Couldn't find any package by regex 'php7.3-json'
E: Unable to locate package php7.3-readline
E: Couldn't find any package by glob 'php7.3-readline'
E: Couldn't find any package by regex 'php7.3-readline'
E: Unable to locate package php7.3-xml
E: Couldn't find any package by glob 'php7.3-xml'
E: Couldn't find any package by regex 'php7.3-xml'

Tôi đang làm gì sai?

 

在本地运行该php正常,但放在服务器上(ubuntu16. 04)运行时发现未能正常运行,在curl_init后php就未能继续运行,原因是在ubuntu上php不支持curl,而在win上是默认支持的,因此我们需要手动安装php-curl模块

1. 检查php是否支持curl可以写一个php并打开查看

1. vim test.php
2. //输入以下代码

可以在本地(win)浏览器上打开服务器上该php,如果已支持curl可以通过搜索curl,看到如下画面,则代表php已支持curl


2. 或者新建一个php

1.vim test.php
2.  //输入以下代码

在本地(win)打开该php同样可以查看是否支持curl

安装php-curl

sudo apt-get install php7.0-curl
//要选择自己已安装的php准确版本,如7.0, 5.6

执行这条命令后报错了 unable to locate package php7. 0-curl
后来发现是这个源没有该curl模块,所以我们采用以下方法

sudo apt-add-repository ppa:ondrej/php
//更添加这个源
sudo apt-get update
sudo apt-get install php7.0-curl
//这时成功安装php7.0-curl

问题成功解决

Tôi đã tìm kiếm lại, nhưng không tìm thấy giải pháp cho vấn đề này chỉ dành cho Ubuntu và không có giải pháp nào khác hiệu quả. Tôi hy vọng ai đó có thể giúp tôi với vấn đề này

Giải pháp tốt nhất

Có vẻ như bạn chưa thêm repo thích hợp. Thử

sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install -y php7.3-gd

Giải pháp liên quan

Php – Cách cài đặt và chạy phpize

Đối với các phiên bản Debian/Ubuntu gần đây [Debian 9+ hoặc Ubuntu 16. 04+] cài đặt gói phụ thuộc

Reading package lists.. Done
Building dependency tree
Reading state information.. Done
E: Unable to locate package php7.3
E: Couldn't find any package by glob 'php7.3'
E: Couldn't find any package by regex 'php7.3'
E: Unable to locate package php7.3-cli
E: Couldn't find any package by glob 'php7.3-cli'
E: Couldn't find any package by regex 'php7.3-cli'
E: Unable to locate package php7.3-cgi
E: Couldn't find any package by glob 'php7.3-cgi'
E: Couldn't find any package by regex 'php7.3-cgi'
E: Unable to locate package php7.3-fpm
E: Couldn't find any package by glob 'php7.3-fpm'
E: Couldn't find any package by regex 'php7.3-fpm'
E: Unable to locate package php7.3-gd
E: Couldn't find any package by glob 'php7.3-gd'
E: Couldn't find any package by regex 'php7.3-gd'
E: Unable to locate package php7.3-mysql
E: Couldn't find any package by glob 'php7.3-mysql'
E: Couldn't find any package by regex 'php7.3-mysql'
E: Unable to locate package php7.3-imap
E: Couldn't find any package by glob 'php7.3-imap'
E: Couldn't find any package by regex 'php7.3-imap'
E: Unable to locate package php7.3-curl
E: Couldn't find any package by glob 'php7.3-curl'
E: Couldn't find any package by regex 'php7.3-curl'
E: Unable to locate package php7.3-intl
E: Couldn't find any package by glob 'php7.3-intl'
E: Couldn't find any package by regex 'php7.3-intl'
E: Unable to locate package php7.3-pspell
E: Couldn't find any package by glob 'php7.3-pspell'
E: Couldn't find any package by regex 'php7.3-pspell'
E: Unable to locate package php7.3-recode
E: Couldn't find any package by glob 'php7.3-recode'
E: Couldn't find any package by regex 'php7.3-recode'
E: Unable to locate package php7.3-sqlite3
E: Couldn't find any package by glob 'php7.3-sqlite3'
E: Couldn't find any package by regex 'php7.3-sqlite3'
E: Unable to locate package php7.3-tidy
E: Couldn't find any package by glob 'php7.3-tidy'
E: Couldn't find any package by regex 'php7.3-tidy'
E: Unable to locate package php7.3-xmlrpc
E: Couldn't find any package by glob 'php7.3-xmlrpc'
E: Couldn't find any package by regex 'php7.3-xmlrpc'
E: Unable to locate package php7.3-xsl
E: Couldn't find any package by glob 'php7.3-xsl'
E: Couldn't find any package by regex 'php7.3-xsl'
E: Unable to locate package php7.3-zip
E: Couldn't find any package by glob 'php7.3-zip'
E: Couldn't find any package by regex 'php7.3-zip'
E: Unable to locate package php7.3-mbstring
E: Couldn't find any package by glob 'php7.3-mbstring'
E: Couldn't find any package by regex 'php7.3-mbstring'
E: Unable to locate package php7.3-soap
E: Couldn't find any package by glob 'php7.3-soap'
E: Couldn't find any package by regex 'php7.3-soap'
E: Unable to locate package php7.3-opcache
E: Couldn't find any package by glob 'php7.3-opcache'
E: Couldn't find any package by regex 'php7.3-opcache'
E: Unable to locate package php7.3-common
E: Couldn't find any package by glob 'php7.3-common'
E: Couldn't find any package by regex 'php7.3-common'
E: Unable to locate package php7.3-json
E: Couldn't find any package by glob 'php7.3-json'
E: Couldn't find any package by regex 'php7.3-json'
E: Unable to locate package php7.3-readline
E: Couldn't find any package by glob 'php7.3-readline'
E: Couldn't find any package by regex 'php7.3-readline'
E: Unable to locate package php7.3-xml
E: Couldn't find any package by glob 'php7.3-xml'
E: Couldn't find any package by regex 'php7.3-xml'
3, gói này sẽ tự động cài đặt phiên bản chính xác của
apt-get install php7.3-gd
0 cho bản phân phối của bạn

________số 8

Các phiên bản cũ hơn của Debian/Ubuntu

Đối với PHP 5, nó nằm trong gói php5-dev

sudo apt-get install php5-dev

Đối với PHP7. x [từ nhận xét của rahilwazir]

Reading package lists.. Done
Building dependency tree
Reading state information.. Done
E: Unable to locate package php7.3
E: Couldn't find any package by glob 'php7.3'
E: Couldn't find any package by regex 'php7.3'
E: Unable to locate package php7.3-cli
E: Couldn't find any package by glob 'php7.3-cli'
E: Couldn't find any package by regex 'php7.3-cli'
E: Unable to locate package php7.3-cgi
E: Couldn't find any package by glob 'php7.3-cgi'
E: Couldn't find any package by regex 'php7.3-cgi'
E: Unable to locate package php7.3-fpm
E: Couldn't find any package by glob 'php7.3-fpm'
E: Couldn't find any package by regex 'php7.3-fpm'
E: Unable to locate package php7.3-gd
E: Couldn't find any package by glob 'php7.3-gd'
E: Couldn't find any package by regex 'php7.3-gd'
E: Unable to locate package php7.3-mysql
E: Couldn't find any package by glob 'php7.3-mysql'
E: Couldn't find any package by regex 'php7.3-mysql'
E: Unable to locate package php7.3-imap
E: Couldn't find any package by glob 'php7.3-imap'
E: Couldn't find any package by regex 'php7.3-imap'
E: Unable to locate package php7.3-curl
E: Couldn't find any package by glob 'php7.3-curl'
E: Couldn't find any package by regex 'php7.3-curl'
E: Unable to locate package php7.3-intl
E: Couldn't find any package by glob 'php7.3-intl'
E: Couldn't find any package by regex 'php7.3-intl'
E: Unable to locate package php7.3-pspell
E: Couldn't find any package by glob 'php7.3-pspell'
E: Couldn't find any package by regex 'php7.3-pspell'
E: Unable to locate package php7.3-recode
E: Couldn't find any package by glob 'php7.3-recode'
E: Couldn't find any package by regex 'php7.3-recode'
E: Unable to locate package php7.3-sqlite3
E: Couldn't find any package by glob 'php7.3-sqlite3'
E: Couldn't find any package by regex 'php7.3-sqlite3'
E: Unable to locate package php7.3-tidy
E: Couldn't find any package by glob 'php7.3-tidy'
E: Couldn't find any package by regex 'php7.3-tidy'
E: Unable to locate package php7.3-xmlrpc
E: Couldn't find any package by glob 'php7.3-xmlrpc'
E: Couldn't find any package by regex 'php7.3-xmlrpc'
E: Unable to locate package php7.3-xsl
E: Couldn't find any package by glob 'php7.3-xsl'
E: Couldn't find any package by regex 'php7.3-xsl'
E: Unable to locate package php7.3-zip
E: Couldn't find any package by glob 'php7.3-zip'
E: Couldn't find any package by regex 'php7.3-zip'
E: Unable to locate package php7.3-mbstring
E: Couldn't find any package by glob 'php7.3-mbstring'
E: Couldn't find any package by regex 'php7.3-mbstring'
E: Unable to locate package php7.3-soap
E: Couldn't find any package by glob 'php7.3-soap'
E: Couldn't find any package by regex 'php7.3-soap'
E: Unable to locate package php7.3-opcache
E: Couldn't find any package by glob 'php7.3-opcache'
E: Couldn't find any package by regex 'php7.3-opcache'
E: Unable to locate package php7.3-common
E: Couldn't find any package by glob 'php7.3-common'
E: Couldn't find any package by regex 'php7.3-common'
E: Unable to locate package php7.3-json
E: Couldn't find any package by glob 'php7.3-json'
E: Couldn't find any package by regex 'php7.3-json'
E: Unable to locate package php7.3-readline
E: Couldn't find any package by glob 'php7.3-readline'
E: Couldn't find any package by regex 'php7.3-readline'
E: Unable to locate package php7.3-xml
E: Couldn't find any package by glob 'php7.3-xml'
E: Couldn't find any package by regex 'php7.3-xml'
0

RHEL/CentOS/yum

Reading package lists.. Done
Building dependency tree
Reading state information.. Done
E: Unable to locate package php7.3
E: Couldn't find any package by glob 'php7.3'
E: Couldn't find any package by regex 'php7.3'
E: Unable to locate package php7.3-cli
E: Couldn't find any package by glob 'php7.3-cli'
E: Couldn't find any package by regex 'php7.3-cli'
E: Unable to locate package php7.3-cgi
E: Couldn't find any package by glob 'php7.3-cgi'
E: Couldn't find any package by regex 'php7.3-cgi'
E: Unable to locate package php7.3-fpm
E: Couldn't find any package by glob 'php7.3-fpm'
E: Couldn't find any package by regex 'php7.3-fpm'
E: Unable to locate package php7.3-gd
E: Couldn't find any package by glob 'php7.3-gd'
E: Couldn't find any package by regex 'php7.3-gd'
E: Unable to locate package php7.3-mysql
E: Couldn't find any package by glob 'php7.3-mysql'
E: Couldn't find any package by regex 'php7.3-mysql'
E: Unable to locate package php7.3-imap
E: Couldn't find any package by glob 'php7.3-imap'
E: Couldn't find any package by regex 'php7.3-imap'
E: Unable to locate package php7.3-curl
E: Couldn't find any package by glob 'php7.3-curl'
E: Couldn't find any package by regex 'php7.3-curl'
E: Unable to locate package php7.3-intl
E: Couldn't find any package by glob 'php7.3-intl'
E: Couldn't find any package by regex 'php7.3-intl'
E: Unable to locate package php7.3-pspell
E: Couldn't find any package by glob 'php7.3-pspell'
E: Couldn't find any package by regex 'php7.3-pspell'
E: Unable to locate package php7.3-recode
E: Couldn't find any package by glob 'php7.3-recode'
E: Couldn't find any package by regex 'php7.3-recode'
E: Unable to locate package php7.3-sqlite3
E: Couldn't find any package by glob 'php7.3-sqlite3'
E: Couldn't find any package by regex 'php7.3-sqlite3'
E: Unable to locate package php7.3-tidy
E: Couldn't find any package by glob 'php7.3-tidy'
E: Couldn't find any package by regex 'php7.3-tidy'
E: Unable to locate package php7.3-xmlrpc
E: Couldn't find any package by glob 'php7.3-xmlrpc'
E: Couldn't find any package by regex 'php7.3-xmlrpc'
E: Unable to locate package php7.3-xsl
E: Couldn't find any package by glob 'php7.3-xsl'
E: Couldn't find any package by regex 'php7.3-xsl'
E: Unable to locate package php7.3-zip
E: Couldn't find any package by glob 'php7.3-zip'
E: Couldn't find any package by regex 'php7.3-zip'
E: Unable to locate package php7.3-mbstring
E: Couldn't find any package by glob 'php7.3-mbstring'
E: Couldn't find any package by regex 'php7.3-mbstring'
E: Unable to locate package php7.3-soap
E: Couldn't find any package by glob 'php7.3-soap'
E: Couldn't find any package by regex 'php7.3-soap'
E: Unable to locate package php7.3-opcache
E: Couldn't find any package by glob 'php7.3-opcache'
E: Couldn't find any package by regex 'php7.3-opcache'
E: Unable to locate package php7.3-common
E: Couldn't find any package by glob 'php7.3-common'
E: Couldn't find any package by regex 'php7.3-common'
E: Unable to locate package php7.3-json
E: Couldn't find any package by glob 'php7.3-json'
E: Couldn't find any package by regex 'php7.3-json'
E: Unable to locate package php7.3-readline
E: Couldn't find any package by glob 'php7.3-readline'
E: Couldn't find any package by regex 'php7.3-readline'
E: Unable to locate package php7.3-xml
E: Couldn't find any package by glob 'php7.3-xml'
E: Couldn't find any package by regex 'php7.3-xml'
1

Php – lỗi cURL 60. chứng chỉ SSL. không thể lấy chứng chỉ nhà phát hành địa phương

Giải pháp hoạt động giả định trên Windows của bạn bằng XAMPP

máy chủ XAMPP

  1. Tương tự cho các môi trường khác
  • tải xuống và giải nén cho cacert. pem tại đây [dữ liệu/định dạng tệp sạch]

https. //Xoăn. se/docs/caextract. html

  1. Đặt nó ở đây trong thư mục sau

C. \xampp\php\bổ sung\ssl\cacert. pem

  1. Trong php của bạn. ini đặt dòng này trong phần này ["c. \xampp\php\php. ini"]
Reading package lists.. Done
Building dependency tree
Reading state information.. Done
E: Unable to locate package php7.3
E: Couldn't find any package by glob 'php7.3'
E: Couldn't find any package by regex 'php7.3'
E: Unable to locate package php7.3-cli
E: Couldn't find any package by glob 'php7.3-cli'
E: Couldn't find any package by regex 'php7.3-cli'
E: Unable to locate package php7.3-cgi
E: Couldn't find any package by glob 'php7.3-cgi'
E: Couldn't find any package by regex 'php7.3-cgi'
E: Unable to locate package php7.3-fpm
E: Couldn't find any package by glob 'php7.3-fpm'
E: Couldn't find any package by regex 'php7.3-fpm'
E: Unable to locate package php7.3-gd
E: Couldn't find any package by glob 'php7.3-gd'
E: Couldn't find any package by regex 'php7.3-gd'
E: Unable to locate package php7.3-mysql
E: Couldn't find any package by glob 'php7.3-mysql'
E: Couldn't find any package by regex 'php7.3-mysql'
E: Unable to locate package php7.3-imap
E: Couldn't find any package by glob 'php7.3-imap'
E: Couldn't find any package by regex 'php7.3-imap'
E: Unable to locate package php7.3-curl
E: Couldn't find any package by glob 'php7.3-curl'
E: Couldn't find any package by regex 'php7.3-curl'
E: Unable to locate package php7.3-intl
E: Couldn't find any package by glob 'php7.3-intl'
E: Couldn't find any package by regex 'php7.3-intl'
E: Unable to locate package php7.3-pspell
E: Couldn't find any package by glob 'php7.3-pspell'
E: Couldn't find any package by regex 'php7.3-pspell'
E: Unable to locate package php7.3-recode
E: Couldn't find any package by glob 'php7.3-recode'
E: Couldn't find any package by regex 'php7.3-recode'
E: Unable to locate package php7.3-sqlite3
E: Couldn't find any package by glob 'php7.3-sqlite3'
E: Couldn't find any package by regex 'php7.3-sqlite3'
E: Unable to locate package php7.3-tidy
E: Couldn't find any package by glob 'php7.3-tidy'
E: Couldn't find any package by regex 'php7.3-tidy'
E: Unable to locate package php7.3-xmlrpc
E: Couldn't find any package by glob 'php7.3-xmlrpc'
E: Couldn't find any package by regex 'php7.3-xmlrpc'
E: Unable to locate package php7.3-xsl
E: Couldn't find any package by glob 'php7.3-xsl'
E: Couldn't find any package by regex 'php7.3-xsl'
E: Unable to locate package php7.3-zip
E: Couldn't find any package by glob 'php7.3-zip'
E: Couldn't find any package by regex 'php7.3-zip'
E: Unable to locate package php7.3-mbstring
E: Couldn't find any package by glob 'php7.3-mbstring'
E: Couldn't find any package by regex 'php7.3-mbstring'
E: Unable to locate package php7.3-soap
E: Couldn't find any package by glob 'php7.3-soap'
E: Couldn't find any package by regex 'php7.3-soap'
E: Unable to locate package php7.3-opcache
E: Couldn't find any package by glob 'php7.3-opcache'
E: Couldn't find any package by regex 'php7.3-opcache'
E: Unable to locate package php7.3-common
E: Couldn't find any package by glob 'php7.3-common'
E: Couldn't find any package by regex 'php7.3-common'
E: Unable to locate package php7.3-json
E: Couldn't find any package by glob 'php7.3-json'
E: Couldn't find any package by regex 'php7.3-json'
E: Unable to locate package php7.3-readline
E: Couldn't find any package by glob 'php7.3-readline'
E: Couldn't find any package by regex 'php7.3-readline'
E: Unable to locate package php7.3-xml
E: Couldn't find any package by glob 'php7.3-xml'
E: Couldn't find any package by regex 'php7.3-xml'
2
  1. Khởi động lại máy chủ web/apache của bạn

  2. Vấn đề được giải quyết

[Tài liệu tham khảo. https. //laracast. com/discuss/channels/General-discussion/curl-error-60-ssl-certificate-problem-unable-to-get-local-issuer-cert]

Chủ Đề