I've issue with installation of one script on dedicated server.
I've cPanel with WHM. I've installed latest MySQL 5.6 from EasyApache and installed mysqli extension.
All is great to that moment, however when I'm checking if all is correct I've got info:
MySQL 5 >= 5.0 is required!
In my phpmyadmin I've got inforamtion that I've vesion MySQL 5.6.22.
I fight with this issue from few days. Could anyone help me with this?
Related
this is happening to me while installing PrestaShop 1.7 on my localhost using PHP 8 and xamp 3.2.4. I have tried creating an user and password to access my db also differents db names and still gives me this error. I tried even installing and old version of PrestaShop (1.6) and still the same.
Cant find much info about this on the web. Seems to be a new error but if everyone has some insight I take it.
Cheers
Prestoshop is still not compatible with php 8 wich the latest xampp version have so you need to install older version or at least install php 7.4 side by side with php 8.
Here the official supported php version page: https://devdocs.prestashop.com/1.7/basics/installation/system-requirements/#php-compatibility-chart
First time i instaled the latest version of xampp and I had the same problem with prestashop database connection error .Second time i instaled an older version of XAMPP and it worked.
I am getting this error while installing WordPress using Windows platform installer 5.0 on a Windows Server 2012R2.
Currently I have a php site with mySQL on that server which is running fine,
PHP, MYSQL was already installed as part of setting up that site couple of months ago.
MySQL .NET Connector was already installed, I have repair it(http://dancerscode.com/blog/the-annoying-mysql-web-platform-installer-bug/) using latest installer as well. Installed WebMatrix3 which was mentioned in same article but No luck.
I have made sure that mySQL password is correct by logging in using command line.
Any idea?
Finally found the solution.
I had Connector/Net 6.9.9 installed
I uninstalled it and then Installed Connector/Net 6.4.6
Old version of Connector can be downloaded here(https://dev.mysql.com/downloads/connector/net/)
I have an installation of magento 1.9.1.0 in a dedicated server with virtual min.Everything works ok but I noticed that my server runs Mysql version 5.1.73 and PHP version 5.3.3 . I want to update them in what magento suggests. Will I have problems with the site?
I want to upgrade to PHP 5.5 and Mysql 5.6 but I am afraid for my existing site if it works after the upgrade.
Can anyone help?
Thank you
Magento version 1.9.1.0 direectly supports PHP 5.4 & 5.5 http://magento.com/resources/system-requirements and http://magento.com/resources/previous-magento-system-requirements for previous requirements. As you can see, Magento also supports MySQL 5.6 (and many of our stores run it, or Percona).
I just updated from WAMP 2.2e (Apache 2.2.22, PHP 5.3.13, MySQL 5.5.24) to WAMP 2.5 (Apache 2.4.9, PHP 5.5.12, MySQL 5.6.17). I was using the mongo driver 1.5.0RC2 with WAMP2.2e, with no problem.
With the update, I went to grab the latest Mongo driver, grabbing 1.5.4. The problem is no matter which of the 4 drivers for PHP 5.5 I put into my ext folder, none of them work. They all give me a small warning icon in the WAMP PHP extension menu and won't turn on, and if I add it to php.ini and restart Apache, it doesn't show up in phpinfo().
I have no idea why its not working or how to diagnose what's wrong.
EDIT: Previously, I was getting the drivers from https://s3.amazonaws.com/drivers.mongodb.org/php/index.html. I just went to http://pecl.php.net/package/mongo/1.5.4/windows and downloaded the driver from there; this time, WAMP doesn't give me a warning icon, but PHPinfo still doesn't show me Mongo.
I was also facing the same problem. In my case, i just set mongodb bin"C:\Program Files\MongoDB 2.6 Standard\bin" path in environment variable then restart the wamp and now everything is working fine with 1.5.5
So I found out the issue was the latest driver. I was trying to use 1.5.4, kept saying 'The specified module could not be found'. I went down to 1.5.1 and it worked. I found posts suggesting older versions that did work for people, so I figured I can try downgrading. I had already tried 1.5.3 with no avail, so I kept going. 1.5.2 also failed, but 1.5.1 ended up working.
I'm running Wordpress on a RHEL 5 box. PHP is version 5.3.3, and we just upgraded the MySQL server on the box to 5.5.32 (up from 5.0.xx).
It seems like that upgrade went well, and Wordpress is running just fine. But what I don't understand is that PHP is continuing to report that it is using MySQL 5.0.95.
Anyone have a clue how I can tell PHP to use MySQL 5.5?
Just making my comment into answer as I added to it, it became more complete.
PHP is using 5.0.95 of the MySQL client library. PHP will not report on the version of MySQL being used on the MySQL server.
You can update your mysql client library on your PHP machine. Or better yet, you may consider re-compiling PHP with the MySQL Native Driver enabled, which will decouple you from having to have MySQL client library on your machine at all.
More info on MySQL native driver: http://www.php.net/manual/en/mysqlnd.overview.php
If you just want to upgrade your MySQL client package on RHEL 5, use RPM. I am not sure what the most recent rpm package for mysql client is named for RHEL 5, but the command would be something like this:
rpm -Uvh mysql-clientXXXX.rpm