Showing posts with label install extension in wamp server. Show all posts
Showing posts with label install extension in wamp server. Show all posts

How to Hide/Disable PHP errors in WAMP Servers Windows ?

How to Hide/Disable PHP errors in WAMP Servers Windows ?


To hide php errors on WAMP server in windows open php.ini file, find following line of code

error_reporting = E_ALL

and replace it with

error_reporting = E_ALL & ~E_NOTICE

all future php errors will be hide/disable.

How to Show/Enable PHP errors in WAMP Servers Windows ?


To enable or show php errors in WAMP Server just add following line

error_reporting = E_ALL

in php.ini file.

Where to find and How to open php.ini file in wamp server ?

To open php.ini file in WAMP Server go to system tray click om WAMP Server icon go to PHP and click php.ini file to open it from fly out menu.

How to install/Enable php_curl Extension On Wamp Server in Windows XP?

I was trying to install StatusNet a micro blogging software on my windows XP pc, but i got an error displaying

Cannot load required extension: curl

To install and run Status Net on my pc curl must be installed/enabled.
When i enable curl extension in wamp server, i was able to install Status Net successfully on my Windows Xp Pc.

How to enable Curl in Wamp Sever on Windows XP ?

To install/enable curl in WAMP go to status bar and right click on WAMP icon and go to PHP -->

PHP Extension and than find and right click on php_curl to enable/install.






Restart WAMP Server after enabling php_curl ?

Now restart all services and try to install Sataus Net again. You should be able to install successfully.




Watch Vudeo How to install/enable Curl in Wamp Sever on Windows XP ?



Hope it will work for you.