How to update wamp 2.5 to 3.0.6 - server

I want to update my wamp server from 2.5 to 3.0.6 because I need PHP 5.6 or above for a project. But there are a lot of databases and projects on wamp 2.5, so I want to update it instead of uninstalling older version and install wamp 3.0
What is the simple and best way to achieve it??

You can upgrade WAMPServer 2.5 directly to WAMPServer 3.0.3 and from there to the latest version which is V3.0.9 (at the time or writing this answer). This version has PHP7.0 already installed in it, and many ADDON versions of PHP available if the version that comes with WAMPServer install is not the one you want including PHP7.1.
See the backup repo for WAMPServer
Download WAMPServer 3.0.3 which allows a direct upgrade from WAMPServer 2.5
Then upgrade WAMPServer to V3.0.9.
Then ADDON whichever version of PHP / Apache / MySQL / MariaDB that you want to use.
Then backup your databases, using your existing version of MYSQL.
Then switch to which ever version of MySQL you now want to use, and restore all your databases.

Related

upgraded moodle 2.7.1 to php 7.0 and mysql 5.6. But unable to connect to mysql 8.0 if upgrading mysql

Moodle app is runnung with php 7 and mysql 5.6.
Whenm updating mysql version from 5.6 to 8.0.
Moodle does not connects to database for mysql 8.0
Which version of PHP is it?
If you are using 7.1 then you'll need at least 7.1.16 or at least 7.2.4 for 7.2.
https://www.php.net/manual/en/mysqli.requirements.php
Is the new MySql 8 server using the same port?
Check the port by running this in MySql
SHOW GLOBAL VARIABLES LIKE 'PORT';
The default in Moodle is 3306. If its different then you can change this in the config.php
$CFG->dboptions = array(
'dbport' => 'yournewport'
);
Upgrade Moodle 2.7
Finally, Moodle 2.7 is no longer supported. The last update was May 2017.
The recommended upgrade route is first upgrade to 2.7.20 then to 3.2.9 then to 3.8.x
https://docs.moodle.org/38/en/Upgrading

i can't able to run composer install command under my /var/www/html/magento2

i am facing problem while setting up the magento server on Centos7 i have php 7.3 install in my centos ec2 instance
installed php 7.3.5, also tried to update composer using $composer update command it doesn't work
composer install
Magento 2 does not support php 7.3 as of yet. A significant numer of core modules specify the php versions they will allow. You will need to change your php version. See this link for the supported versions. https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html

PHP 5.3.29 on Ubuntu 16.04 in order to run Joomla 1.5 locally

I'm working on a Joomla 1.5 website, which was developed with PHP 5.3. Now I'm having some incompatibilities issues with some components.
My machine runs Ubuntu 16.04.
The version of Joomla is 1.5.
PHP versions are 5.6 and 7.0 (apache is configured to run PHP 5.6)
I can't find a way to download and install it. The apt command only shows 5.5, 5.6, 7.0 and 7.1 PHP versions.
Can anyone help me?
I have joomla 1.5 on a website running. My config shows that PHP 5.4.16 is in use. Therefore, why dont you try it with PHP 5.4 and get it from the download page:
http://php.net/releases/
If you have troubles to install it on your computer. Take a look here:
https://serverfault.com/questions/353550/how-to-install-old-php-version
The link explains how you install a old php version on linux. Btw.: in the link it is only explained how to replace a PHP version. But it is possible to run different versions on a server.

Grafana - How to upgrade

I use grafana 2.1 and created multiple dashboards, templates etc.
I would like to upgrade to grafana 2.6. Is there any way to upgrade to 2.6 without affecting the existing dashboards?
There are no breaking changes between 2.1 and 2.6. In theory upgrading should be a simple matter of installing the new packages. I personally have upgraded from 2.1.3 to 2.5 to 2.6 with no issues.
For windows version, I just had to copy the data/grafana.db and the data/plugins directory from the old installation to the new installation directory. Just make sure the newer version does not have any breaking changes.
You can upgrade Grafana to higher versions for better features and also import your previous dashboard to the new version without any problem by using Import/Export feature.

upgrade database postgresql on jira confluence astlassian application 64bit .

I want to upgrade database postgresql from version 8.3 to 9.0 on Jira application.
Which RPM should be used to work with Suse SLES10.3 64bit?
How to install Postgresql 9.0 in parallel to Postgresql 8.1?
The best bet to find packages for SUSE distributions is the openSUSE Build Service. The direct links there are a bit of a pain, so please look for yourself.
Parallel installation of multiple major PostgreSQL versions is not yet possible using SUSE RPMs. If you need to do that, you will probably need to build from source.