Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not execute menu item (internal error)[Exception] - When changing PHP version from 5.3.1 to 5.2.9

I have installed two PHP versions in my WAMP server. When I am using 5.3.10, my wamp server is running just fine. But when I switch to older version of PHP (5.2.9) my wamp server tray icon is showing orange icon. If you click on Put Online I am getting following error.

I tried to change the port in httpd.conf to 8855 and still I am getting same error. How can I resolve this error?

Could not execute menu item (internal error)[Exception] Could not perform service action:The service has not been started

wamp

Aestan Tray Menu

like image 228
KillerFish Avatar asked Apr 22 '12 09:04

KillerFish


2 Answers

By default , the WAMP server will take 80 as its working port.

You can change that port number as you like ... here are the steps to do that:

  • click on WAMP server tray icon
  • click on apache
  • select http.conf

Here notepad will open ...

  • scroll down and you will see the port number that WAMP server takes ...
  • change that port number to:

    #Listen x.x.x.x:8080 Listen 8080 
  • save that file and restart the services... it will work fine...

  • now check by typing http://localhost:8080/.
like image 61
GIRISH Avatar answered Oct 16 '22 23:10

GIRISH


If you are using Windows try out the following:

  1. Press (Windows+R)
  2. enter "services.msc" and click "OK"
  3. locate service with name 'wampapache'

and check if it's status is 'Running'. In case not, right click >> start.

Hope this helps!


If you have removed WAMP from boot services, it won't work – try the following:

  • Press (Windows+R)
  • enter "services.msc" and click "OK"
  • locate service with name 'wampapache'
  • Right click wampapache and wampmysqld, Click 'properties'
  • and change Start Type to Manual or automatic

This will work!

like image 24
sagarpatidar Avatar answered Oct 17 '22 00:10

sagarpatidar