Posted by:
bfarber
(---.lyncva.east.verizon.net)
Ok, found the problem and the fix.
Go to your bin/php/php5.3.0 directory and edit both php.ini and phpForApache.ini. Change
;extension=php_oci8.dll ; Use with Oracle 10gR2 Instant Client
;extension=php_oci8_11g.dll ; Use with Oracle 11g Instant Client
to
;extension=php_oci8.dll
;extension=php_oci8_11g.dll
Then go to your bin/apache/(whatever version)/bin/php.ini file and do the same there.
IMPORTANT: No spaces after ".dll" in the above or you still have issues
Edit wamp/wampmanager.ini and change to
==================
;WAMPCONFIGSTART
ImageList=images_on.bmp
ServiceCheckInterval=1
ServiceGlyphRunning=13
ServiceGlyphPaused=14
ServiceGlyphStopped=15
TrayIconAllRunning=16
TrayIconSomeRunning=17
TrayIconNoneRunning=18
ID={wampserver}
AboutHeader=WAMPSERVER
AboutVersion=Version 2.0
;WAMPCONFIGEND
[AboutText]
WampServer Version 2.0
Created by Romain Bourdon (romain@anaska.com)
Powered by Anaska [
www.anaska.com]
Sources are available at SourceForge
[
www.wampserver.com]
[Services]
Name: wampapache
Name: wampmysqld
[Messages]
AllRunningHint=WAMPSERVER - server Online
SomeRunningHint=WAMPSERVER - server Online
NoneRunningHint=WAMPSERVER - server Online
[StartupAction]
;WAMPSTARTUPACTIONSTART
Action: run; FileName: "c:/wamp/bin/php/php5.3.0/php-win.exe";Parameters: "refresh.php";WorkingDir: "c:/wamp/scripts"; Flags: waituntilterminated
Action: resetservices
Action: readconfig;
Action: service; Service: wampapache; ServiceAction: startresume; Flags: ignoreerrors
Action: service; Service: wampmysqld; ServiceAction: startresume; Flags: ignoreerrors
;WAMPSTARTUPACTIONEND
========================
Afterwards I was able to start up wampmanager. Seems the parser can't handle two comments on one line in php.ini perhaps? If so, can either fix this bug, or ship the php5.3.0 package so it doesn't have that second comment (I don't personally care either way).
Hope this helps someone else.