How to update php version in wamp?

I am currently using php version 5.1.6 on a Wamp server. I am trying to use the phpexcel library to read .xls and .xlsx files. The minimum requirement of the Phpexcel library is php 5.2.0. So how can I solve this problem or how to upgrade php version.

Thanks in advance.

+7
source share
2 answers

Here are all the php add-ons . Select the one you need and download / install it.

+5
source

you need to update your whole model:

backing up the database.

code backup

remove wamp

install new wamp

check if the local host is working

restore the database (first change max_allowed_packet in mysql.ini to 10M)

enable rewrite module in apache

+1
source

All Articles