Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Im getting a LoadModule error.

Status
Not open for further replies.

Netherbeast

Programmer
Jun 4, 2002
89
US
This is what the error says:

LoadModule takes two arguments, a module name and the same name of a shared object file to loat it from.

I checked the line number where the error happened and this is what it is:

LoadModule php4_module
c:/program files/php/sapi/php4apache.dll

I checked for the php4apache.dll file and it does exist.
What is the error and how do I fix it?
Thanks in advance.
 
You have an linefeed there, and spaces in the pathname.

instead of

Code:
LoadModule php4_module
c:/program files/php/sapi/php4apache.dll

put

Code:
LoadModule php4_module "c:/program files/php/sapi/php4apache.dll"

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top