Best way to Upgrade wamp 2.0 to 2.5

前端 未结 4 1710
臣服心动
臣服心动 2020-12-04 17:01

My wamp 2.0 is using around more than 100 large database and a lot of projects.I also made around more than 50 virtual host. Now I need to upgrade wamp 2.0 to 2.5.

I

4条回答
  •  借酒劲吻你
    2020-12-04 17:20

    Usually I follow following steps to do it easily.

    1. Stop Wamp Service
    2. Rename the wamp folder to wamp-backup
    3. Download latest version of wamp and install it
    4. Rename the data folder of mysql with some different name (C:\wamp\bin\mysql\mysql5.5.20)
    5. copy data folder of mysql from wamp-backup and paste it to new install wamp mysql folder (C:\wamp\bin\mysql\mysql5.5.20)
    6. Rename new httpd-vhosts.conf file to httpd-vhosts-backup.conf.
    7. Copy old httpd-vhosts.conf and paste to new installed wamp (C:\wamp\bin\apache\Apache2.2.21\conf\extra)
    8. In apache 2.4, the directive Allow was dropped in favor of new directive Require. So change the settings from Order Deny,Allow Deny from all Allow from all to Require all granted

    From

    Order Deny,Allow
    Deny from all
    Allow from all
    

    to

    Require all granted
    

    9.The old www folder in wamp needs to be copied into the new one. Let me know whether it's working or not.

提交回复
热议问题