logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Other Software View previous topic :: View next topic
Reply to topic   Topic: Apache v2.2.6 and PHP v4.4.7
Author
JohnQuixote



Joined: 04 Dec 2007
Posts: 7

PostPosted: Fri 07 Dec '07 21:49    Post subject: Apache v2.2.6 and PHP v4.4.7 Reply with quote

Anyone have a successful installation of the Apache v2.2.6 and PHP v4.4.7?

I've used the php4apache2.dll build along with the supporting Visual C++ file and the apache.http.manifest file, but still get the error:

"Cannot load E:/apache/php/sapi/php4apache2.dll into server: The specified procedure could not be found"

Is this a viable combination, or am I trying the impossible?

Any help would be greatly appreciated!

John
Back to top
tdonovan
Moderator


Joined: 17 Dec 2005
Posts: 611
Location: Milford, MA, USA

PostPosted: Sat 08 Dec '07 16:45    Post subject: Reply with quote

Yes, it works. The problem may be that your php4ts.dll file cannot be located because it is not in your PATH or in the same directory as php4apache2.dll.

Try loading php4ts.dll directly with LoadFile just before loading php4apache2.dll with LoadModule.
Like this:
Code:
LoadFile "E:/apache/php/php4ts.dll"
LoadModule php4_module "E:/apache/php/sapi/php4apache2.dll"
AddHandler application/x-httpd-php .php
PHPIniDir "E:/apache/php"

-tom-
Back to top
JohnQuixote



Joined: 04 Dec 2007
Posts: 7

PostPosted: Thu 13 Dec '07 19:17    Post subject: Reply with quote

Thanks! That worked!

John
Back to top


Reply to topic   Topic: Apache v2.2.6 and PHP v4.4.7 View previous topic :: View next topic
Post new topic   Forum Index -> Other Software