Wednesday, May 15, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 10563  / 3 Years ago, fri, november 5, 2021, 8:16:29

I bought a new laptop and installed Ubu 20.04. I downloaded the latest apache2, php and mysql


I got phpMyAdmin from their own webpage, because, previously, when I used the Ubuntu supplied version, I often got errors.


When I open: localhost/phpMyAdmin I see a message:



Composer detected issues in your platform. Your Composer dependencies
require the following PHP extensions to be installed: mysqli, xml



I cannot run phpMyAdmin.


I tried



pedro@pedro-HP:~$ php -i | grep extension_dir extension_dir =>
/usr/lib/php/20190902 => /usr/lib/php/20190902
pedro@pedro-HP:~$



I checked /usr/lib/php/20190902, sure enough those two extensions were not there.


Not knowing where to get them, I copied them from my older laptop. I don't know if there is a version problem, but php does not find them.


The new laptop has php version 7.4, the old laptop has 7.2


I set php.ini to:



extension=/usr/lib/php/20190902/mysqli




extension=/usr/lib/php/20190902/xml



I tried with the .so file extension, but saw and error on apache2 error.log: php seems to add .so, so it was looking for mysqli.so.so and xml.so.so


so I removed the .so (no pun intended)


I restarted apache2 and mysql every time I made a change, but the error persists.



sudo /etc/init.d/apache2 restart

sudo /etc/init.d/mysql restart



Now I don't know what else I can do.


Do you have any tips for me? On my old laptop, exactly the same set-up works fine!!


More From » mysql

 Answers
7

You can install mysqli and xml with below commands


sudo apt-get install php7.x-mysqli

sudo apt-get install php7.x-xml

sudo service apache2 restart

Be sure to replace x with the version you have installed.


eg: sudo apt-get install php7.2-mysqli


[#1778] Sunday, November 7, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
arbaour

Total Points: 346
Total Questions: 115
Total Answers: 105

Location: Oman
Member since Wed, Apr 12, 2023
1 Year ago
arbaour questions
Sun, May 30, 21, 12:42, 3 Years ago
Wed, Aug 4, 21, 04:48, 3 Years ago
Tue, Jan 17, 23, 11:59, 1 Year ago
Tue, May 3, 22, 18:18, 2 Years ago
Thu, Sep 1, 22, 05:25, 2 Years ago
;