All Questions
29 questions
-1
votes
2
answers
488
views
php is still available after running apt-get remove php
I am on Linux Mint and had PHP 8.1 by default but I need to install PHP 8.3.
I removed the existing PHP 8.1 with apt-get remove php.
However, when I run the php command I still see PHP 8.1.
Shouldn't ...
0
votes
0
answers
629
views
RUN apt-get update is not running
FROM php:7.3.33-apache-bullseye
RUN docker-php-ext-install -j$(nproc) mysqli opcache
RUN docker-php-ext-install pdo_mysql
RUN docker-php-ext-install sockets
# Instalar ifconfig
RUN apt-get update &...
0
votes
1
answer
1k
views
Install phpMyAdmin 5.2.1 with apt on Debian 11 with php8.1
apt install phpmyadmin on Debian 11 installs the old versin 5.0.4 that is not php8.1 compatible.
How do I install the latest version via apt?
2
votes
0
answers
9k
views
How can I solve error of "Fail to fetch" resulting of apt-get update on Debian 8
I've got a issue that stuck me on Debian 8 Jessie when I try to upgrade to Debian 11 Bullseye
Trouble seems come from old version of Letsencrypt certbot that I have uninstall but I still got some ...
0
votes
1
answer
1k
views
How to install a specific php version on ubuntu
I'm trying to install an older version of PHP 8.0 in my ubuntu the version is 8.0.14 I tried several ways ...
sudo add-apt-repository --yes ppa:ondrej/php
sudo apt install php8.0.14
I get this error ...
1
vote
1
answer
782
views
PPA not listing all available php packages
I have added the corresponding PPA:
sudo add-apt-repository ppa:ondrej/php
I have run sudo apt update
But it's only showing candidates for php7.4
sudo apt install -y php8.0 produces E: Couldn't find ...
1
vote
0
answers
184
views
Why does my webserver try to install php7.4 when I have 7.3 running?
On apt upgrade I get the notification that new packages will be installed
The following NEW packages will be installed:
libicu65 libapache2-mod-php7.4 libonig4 php7.4 php7.4-bz2 php7.4-cli php7.4-...
0
votes
1
answer
423
views
Cannot locate "php-phalcon" package in APT, after cURL'ing the .deb file
In Debian 10, I follow the instructions here to a tee, I cURL the DEB file, then I enter apt install php-phalcon or php7.0-phalcon. Neither work! I don't know what's wrong It says:
Unable to locate ...
0
votes
0
answers
487
views
Error on apt-get install on Debian 7 wheezy
i would like to install php7.3 and on every package i want to install on the server, i get following error:
I tried several things, but maybe someone can advise me to fix the problem. Thank you!
...
0
votes
1
answer
2k
views
The following packages have unmet dependencies: lsphp72 : Depends: > libjpeg62-turbo (>= 1.3.1) but it is not installable
I'd like to install PHP for Litespeed on Linux Mint.
After I run: sudo apt install lsphp72 lsphp72-curl lsphp72-imap lsphp72-mysql lsphp72-intl lsphp72-pgsql lsphp72-sqlite3 lsphp72-tidy lsphp72-snmp ...
2
votes
1
answer
930
views
Confusion on apt-cache policy: same origin but different versions?
Background:
I have a Debian container that installs libapache2-mod-php and is running PHP 7.2 server. It has been set up half a year ago and is running fine.
Problem:
This week I've been trying to ...
2
votes
2
answers
1k
views
apt: Install all php packages whatsoever
I'm quite fed up with tracking packages of PHP extensions that are needed for some GUIs like PHPMyAdmin or some CMSs like Drupal.
For example, I once did:
apt upgrade php-{cli,curl,mbstring,mcrypt,...
1
vote
1
answer
4k
views
How to install PHP7.2 on RaspberryPi avoiding apt
I am planing on hosting my laravel application on my RaspberryPi that's connected locally. I have my DynDns domain setup and everything.
Now i just need to get PHP7.2 on my raspberry and from what i'...
1
vote
1
answer
2k
views
Does Apache2 auto install when installing PHP 7.2?
Anyone else experiencing this issue? When I installed PHP 7.2, it somehow auto installed Apache2 with it. This is a fresh Ubuntu 16.04 with only nginx installed on it to serve static files.
add-apt-...
1
vote
1
answer
2k
views
removing package php-common fails on "phpsessionclean.timer"
I'm running the latest Debian (Stretch/9.3.x) and preparing my system to install the latest PHP. I removed all pre-installed PHP packages except php-common.
While invoking apt-get remove php-common I ...