[PHP] Re: Installing PHP

2011-07-06 Thread David Robley
Jim Giner wrote:

 Eureka!
 
 The whole problem was my unfamiliarity with the php download page.  To
 others - read the choices there very carefully (which I thought I did!) to
 be sure you get the thread-safe version.
 
 Thanks to all who contributed, but David gets the kudos for telling me to
 check the error logs first.

As you become more familiar with managing apache yourself, you will learn
that checking the error log is the 0th thing to do with any apache or
apache related problem, including 500 errors from CGI scripts and checking
for php errors.


Cheers
-- 
David Robley

Windows N'T: as in Wouldn't, Couldn't, and Didn't.
Today is Boomtime, the 41st day of Confusion in the YOLD 3177. 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP

2011-07-05 Thread David Robley
Jim Giner wrote:

 Hi all,
 (Hopefully I posted this in a place that can/will help me)
 
 I got curious about running php / apache on my own laptop in order to help
 my devl process, instead of writing, uploading and testing on my site.
 
 Found a nice pair of docs from thesitewizard.com that appeared to be
 pretty well-written instructions on installing each of these systems. 
 btw-
 I'm running XpSp2.  Chose the Apache 2.0 and PHP 5.2 (thread-safe?) per
 the recommendations.
 
 Went thru all instructions step-by-step, testing all the way.  Apache
 works - PHP doesn't.  When I bring up IE and type in localhost I get the
 default apache page as I was told I should see.  When I type
 localhost/test.php I get a windows dialog asking what program should run
 the php script.
 
 In debugging I went to a cmd windows and ran c:\php\php-cgi test.php and
 got the expected result from my script - so PHP works.
 
 End result - they each work separately, but php is not working under
 apache.
 
 As part of the docs instructions I added the following code to the apache
 conf file:
 
 1 - I chose the configure apache to run php as an apache module.
 2 - added LoadModule php5_module c:/php/php5apache2.dll as last one of
 those lines
 3 - added AddType application/x-httpd-php .php as the last of those
 lines 4 - added PHPIniDir c:/php as the last line of the conf file.
 
 Upon adding these lines apache will no longer restart.  In fact adding any
 ONE of these lines breaks Apache.
 
 Ideas welcome.
 
 And for those who still love the USofA, Happy Independence Day!

If you are having problems starting apache, the first place to look is your
apache error log.


Cheers
-- 
David Robley

On a radiator repair shop: Best place to take a leak.
Today is Sweetmorn, the 40th day of Confusion in the YOLD 3177. 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Installing PHP

2011-07-05 Thread Jim Giner
Thanks David!  The error log tells me that I have installed a version of PHP 
that is not thread-safe.  My bad - I mis-read the download page and did in 
fact acquire the wrong version.  Am beginning PHP install all over again!

David Robley robl...@aapt.net.au wrote in message 
news:b0.f0.00402.e9df2...@pb1.pair.com...

 If you are having problems starting apache, the first place to look is 
 your
 apache error log.





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP

2011-07-05 Thread Jim Giner
Eureka!

The whole problem was my unfamiliarity with the php download page.  To 
others - read the choices there very carefully (which I thought I did!) to 
be sure you get the thread-safe version.

Thanks to all who contributed, but David gets the kudos for telling me to 
check the error logs first. 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP

2011-07-04 Thread Shawn McKenzie
On 07/04/2011 07:39 AM, Jim Giner wrote:
 Hi all,
 (Hopefully I posted this in a place that can/will help me)
 
 I got curious about running php / apache on my own laptop in order to help
 my devl process, instead of writing, uploading and testing on my site.
 
 Found a nice pair of docs from thesitewizard.com that appeared to be
 pretty well-written instructions on installing each of these systems.  btw-
 I'm running XpSp2.  Chose the Apache 2.0 and PHP 5.2 (thread-safe?) per the
 recommendations.
 
 Went thru all instructions step-by-step, testing all the way.  Apache
 works - PHP doesn't.  When I bring up IE and type in localhost I get the
 default apache page as I was told I should see.  When I type
 localhost/test.php I get a windows dialog asking what program should run
 the php script.
 
 In debugging I went to a cmd windows and ran c:\php\php-cgi test.php and
 got the expected result from my script - so PHP works.
 
 End result - they each work separately, but php is not working under apache.
 
 As part of the docs instructions I added the following code to the apache
 conf file:
 
 1 - I chose the configure apache to run php as an apache module.
 2 - added LoadModule php5_module c:/php/php5apache2.dll as last one of
 those lines
 3 - added AddType application/x-httpd-php .php as the last of those lines
 4 - added PHPIniDir c:/php as the last line of the conf file.
 
 Upon adding these lines apache will no longer restart.  In fact adding any
 ONE of these lines breaks Apache.
 
 Ideas welcome.
 
 And for those who still love the USofA, Happy Independence Day!
 

You may need to add c:\php\ to the Windows path so that the Apache mod
can find other files it may need. If you have mysql or other extensions
enabled in php.ini, then they may be looking for another dll that is
located in the php dir.

And of course, Happy Independence Day!

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP

2011-07-04 Thread Jim Giner
Shawn,
I added my php folder to the path but no change.

Shawn McKenzie nos...@mckenzies.net wrote in message 
news:4e11e7e7.6010...@mckenzies.net...


 You may need to add c:\php\ to the Windows path so that the Apache mod
 can find other files it may need. If you have mysql or other extensions
 enabled in php.ini, then they may be looking for another dll that is
 located in the php dir.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: Installing PHP

2011-07-04 Thread Chris Stinemetz
What is your document root set to in your httpd.conf file? By default it should 
be htdocs subdirectory in apache program files.

Sent from my iPod

On Jul 4, 2011, at 12:10 PM, Jim Giner jim.gi...@albanyhandball.com wrote:

 Shawn,
 I added my php folder to the path but no change.
 
 Shawn McKenzie nos...@mckenzies.net wrote in message 
 news:4e11e7e7.6010...@mckenzies.net...
 
 
 You may need to add c:\php\ to the Windows path so that the Apache mod
 can find other files it may need. If you have mysql or other extensions
 enabled in php.ini, then they may be looking for another dll that is
 located in the php dir.
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: installing php 5.2.1

2007-03-29 Thread Joker7
In news: [EMAIL PROTECTED],
Jay Jose  wrote on :
 Its my first time to install and use php on my computer with IIS
 5.1... I used the MSI of php 5.2.1 for intallation but every time i
 run the ?php
 phpinfo();

 i always get the following result:
 CGI Error
 The specified CGI application misbehaved by not returning a complete
 set of HTTP headers. The headers it did return are:

 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_exif.dll' - The specified module could not be found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_oci8.dll' - The specified module could not be found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_pdo_oci.dll' - The specified module could not be
 found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_pdo_oci8.dll' - The specified module could not be
 found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_pspell.dll' - The specified module could not be
 found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic librar

 i installed the php on C:\PHP and the extentions at C:\PHP\ext and
 set the the php.ini
 extension_dir = C:\PHP\ext
 i also tried the extension_dir = C:\PHP\ext but still same result...
 can anyone show me what i've done wrong or if you can, please guide
 my in the whole process of installing and configuring... thanks Send
 instant messages to your online friends
 http://uk.messenger.yahoo.com

Take a look at this it will help:

http://t56.hopto.org/out/

Chris

-- 
Cheap As Chips Broadband http://yeah.kick-butt.co.uk
Superb hosting  domain name deals http://host.kick-butt.co.uk 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: installing php 5.2.1

2007-03-29 Thread Joker7
In news: [EMAIL PROTECTED],
Joker7  wrote on :
 In news: [EMAIL PROTECTED],
 Jay Jose  wrote on :
 Its my first time to install and use php on my computer with IIS
 5.1... I used the MSI of php 5.2.1 for intallation but every time i
 run the ?php
 phpinfo();

 i always get the following result:
 CGI Error
 The specified CGI application misbehaved by not returning a
 complete set of HTTP headers. The headers it did return are:

 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_exif.dll' - The specified module could not be
 found. in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_oci8.dll' - The specified module could not be
 found. in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_pdo_oci.dll' - The specified module could not be
 found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_pdo_oci8.dll' - The specified module could not be
 found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic library
 'C:\PHP\ext\php_pspell.dll' - The specified module could not be
 found.
 in Unknown on line 0
 PHP Warning:  PHP Startup: Unable to load dynamic librar

 i installed the php on C:\PHP and the extentions at C:\PHP\ext and
 set the the php.ini
 extension_dir = C:\PHP\ext
 i also tried the extension_dir = C:\PHP\ext but still same
 result... can anyone show me what i've done wrong or if you can,
 please guide my in the whole process of installing and
 configuring... thanks Send instant messages to your online friends
 http://uk.messenger.yahoo.com

 Take a look at this it will help:

 http://t56.hopto.org/out/

 Chris

 --
 Cheap As Chips Broadband http://yeah.kick-butt.co.uk
 Superb hosting  domain name deals http://host.kick-butt.co.uk


Ok sorry try it now :
http://t56.hopto.org/out/index.htm

Chris

-- 
Cheap As Chips Broadband http://yeah.kick-butt.co.uk
Superb hosting  domain name deals http://host.kick-butt.co.uk 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: installing php 5.2.1

2007-03-29 Thread Sady Marcos
Change permissions... 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: installing php 5.2.1

2007-03-29 Thread Chris

Sady Marcos wrote:
Change permissions... 


How is that related to permissions?

It was simply php trying to load up extensions that didn't exist.

--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: installing PHP on winXP

2004-09-06 Thread Burhan Khalid
On Sun, 2004-09-05 at 19:39, Gerben wrote:
 my install-paths are still the same. the real problem (I think) is that I'm 
 missing the php4apache dll for some peculiar reason ||:-|
 Thanks anyway. I'll try downloading the zip file and doing it manually.

I think the binary installer doesn't include all the .dll files (that
was the case the last time I did a binary install of PHP on Windows).

On Windows, I always use the zip package, which contains almost all the
.dll files.

Also note that for Apache2, you would need to use php4apache2.dll (I
realize that you are using Apache 1.x, but this is for the benefit of
those that are reading the thread).

Cheers.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: installing PHP on winXP

2004-09-05 Thread Gerben
my install-paths are still the same. the real problem (I think) is that I'm 
missing the php4apache dll for some peculiar reason ||:-|
Thanks anyway. I'll try downloading the zip file and doing it manually.


Chris Martin [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 Gerben wrote:
 hi there

 I have a problem with installing PHP on my winXp with apache server using 
 the installer. I'm missing the sapi directory (c:/progra~1/php/sapi/) 
 with in it the php4apache.dll file which apache misses.
 The weird thing is that I've succesfully installed php and apache on this 
 same machine, but now it's not working.
 I've copied my httpd.conf and php.ini files from my last (succesfull) 
 installation.

 I have apache 1.3.28 and php 4.3.4 (but the latest version 4.3.8 also 
 doesn't work)

 Please help |:-(

 Are your paths the same as they were in your last install? If not, you 
 need to update the conf files. Especially your modules directory

 You might read along the PHP manual install instructions and verify 
 everythings in the right place. I always prefer the manual install anyway. 
 I usually place php4apache.dll (and php4ts.dll) in the Apache root, or 
 Apache/modules directory

 If all else fails you could uninstall and try the WAMP bundle.

 -- 
 Chris Martin
 Web Developer
 Open Source  Web Standards Advocate
 http://www.chriscodes.com/ 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: installing PHP on winXP

2004-09-05 Thread Gerben
I finially found the solution to my problem (see also 
http://www.sitepoint.com/forums/showthread.php?t=92314). I downloaded the 
php4apache dll from http://www.kromann.info/php4.php and it's now working 
like a charm.

thanks

Gerben [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 hi there

 I have a problem with installing PHP on my winXp with apache server using 
 the installer. I'm missing the sapi directory (c:/progra~1/php/sapi/) 
 with in it the php4apache.dll file which apache misses.
 The weird thing is that I've succesfully installed php and apache on this 
 same machine, but now it's not working.
 I've copied my httpd.conf and php.ini files from my last (succesfull) 
 installation.

 I have apache 1.3.28 and php 4.3.4 (but the latest version 4.3.8 also 
 doesn't work)

 Please help |:-( 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: installing PHP on winXP

2004-09-04 Thread Chris Martin
Gerben wrote:
hi there
I have a problem with installing PHP on my winXp with apache server using 
the installer. I'm missing the sapi directory (c:/progra~1/php/sapi/) with 
in it the php4apache.dll file which apache misses.
The weird thing is that I've succesfully installed php and apache on this 
same machine, but now it's not working.
I've copied my httpd.conf and php.ini files from my last (succesfull) 
installation.

I have apache 1.3.28 and php 4.3.4 (but the latest version 4.3.8 also 
doesn't work)

Please help |:-( 

Are your paths the same as they were in your last install? If not, you 
need to update the conf files. Especially your modules directory

You might read along the PHP manual install instructions and verify 
everythings in the right place. I always prefer the manual install 
anyway. I usually place php4apache.dll (and php4ts.dll) in the Apache 
root, or Apache/modules directory

If all else fails you could uninstall and try the WAMP bundle.
--
Chris Martin
Web Developer
Open Source  Web Standards Advocate
http://www.chriscodes.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: Installing PHP on IIS6 Windows 2003

2004-01-15 Thread Ben Ramsey
 I'm suffering from installing PHP on IIS 6.0,
 Windows 2003 Web Edition Server.
 Any how-to ? or anyone how can write the
 instructions how to do it exactly ?
I found a helpful guide to installing PHP on IIS 6.0 (Win2003).  Browse 
to http://www.php.net/manual/en/installation.php .  Look in the User 
Contributed Notes portion at the bottom of the page, and find the note 
that begins with Installing PHP 4.2.2 on Microsoft Windows .NET Server 
  The installation tips provided will work for every version of PHP 
that I know of.  I used the tips to install PHP 5.0b3 on a Win2003 
server and it worked just fine.  You'll need to download the zip package 
on the downloads page to follow these steps -- 
http://www.php.net/downloads.php

-Ben

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: Installing PHP on 2nd Windows Drive

2004-01-13 Thread DvDmanDT
I have one Apache installed (well, 8 or 9, but one that I really use all
day), 4 PHP installs.. I have PHP 4 at C:\php, Apache at D:\Apache, PHP3 at
D:\php3, PHP5 at D:\PHP5, mysql at D:\mysql4, my webdocuments in c:\www,
D:\www2, G:\document..\\my documents
and so on.. No problems at all.. The only problem you'll get is that you
can't une the Apache installer twice without uninstalling the first one... I
use to just rename the Apache folder, uninstall (no files get removed), then
I rename back, then I reinstall to overwrite the files which needs to be
updated...

-- 
// DvDmanDT
MSN: dvdmandt¤hotmail.com
Mail: dvdmandt¤telia.com
Freedomware [EMAIL PROTECTED] skrev i meddelandet
news:[EMAIL PROTECTED]
 I got a preconfigured package - Apache 2.0/PHP/MySQL - up and running,
 then I installed Apache 1.3. Everything seems to be working fine, and
 I'm ready to start tweaking it.

 In the meantime, I bought a book about Apache, PHP and MySQL, which
 includes tutorials on downloading the programs individually.

 I don't want to mess up what I've already installed, but I have an
 external hard drive that I use for backing up my documents. Could I
 install new Apache, PHP and MySQL programs on that drive? They wouldn't
 interfere with the equivalent programs on the C drive, would they?

 In fact, is it possible to have PHP programs from two hard drives open
 at the same time? After all, I can open up documents on both drives with
 Windows Explorer.

 Of course, I guess I'd have to install Dreamweaver on the second drive,
 too, so I'd be able to test PHP and make sure it's working.

 Thanks.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP on 2nd Windows Drive

2004-01-13 Thread Freedomware
OK, thanks.

Dvdmandt wrote:

I have one Apache installed (well, 8 or 9, but one that I really use all
day), 4 PHP installs.. I have PHP 4 at C:\php, Apache at D:\Apache, PHP3 at
D:\php3, PHP5 at D:\PHP5, mysql at D:\mysql4, my webdocuments in c:\www,
D:\www2, G:\document..\\my documents
and so on.. No problems at all.. The only problem you'll get is that you
can't une the Apache installer twice without uninstalling the first one... I
use to just rename the Apache folder, uninstall (no files get removed), then
I rename back, then I reinstall to overwrite the files which needs to be
updated...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: Installing PHP on 2nd Windows Drive

2004-01-13 Thread Freedomware
Dvdmandt wrote:

I have one Apache installed (well, 8 or 9, but one that I really use all
day), 4 PHP installs.. I have PHP 4 at C:\php, Apache at D:\Apache, PHP3 at
D:\php3, PHP5 at D:\PHP5, mysql at D:\mysql4, my webdocuments in c:\www,
D:\www2, G:\document..\\my documents
and so on..
So if I understand correctly, you could have several of each installed 
on the SAME DRIVE even?

I'm thinking of creating two new folders on my C drive, then installing 
Apache, PHP and MySQL one at a time in the first folder, then installing 
that preconfigured package that seems to work so well in the second drive.

The Apache installs would be 1.3 and 2.0, but the two installations of 
PHP and MySQL might be the same version, for all I know. That would be 
really convenient!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: Installing PHP on 2nd Windows Drive

2004-01-13 Thread DvDmanDT
You could have several installs on the same drive, yes...
C:\wampp2 and c:\www\Apache, c:\www\php, C.\www\mysql and so on for
example.. Or, try this.. Create a folder names just testing123 in your C:
(C:\testing123), and create a .txt file in that directory...

Start-run, type 'cmd.exe'
In the console, type 'subst z: C:\testing123'

When you have done that, you'll find another drive named z:, which
accutually points to C:\testing123.. This was you could install several
XAMPP packages on the same drive.. However, the Z: will be gone after a
reboot, so add that command to like autoexec.bat, your startup folder, or
something like that if oyu plan on using it...

-- 
// DvDmanDT
MSN: dvdmandt¤hotmail.com
Mail: dvdmandt¤telia.com
Freedomware [EMAIL PROTECTED] skrev i meddelandet
news:[EMAIL PROTECTED]
 Dvdmandt wrote:

  I have one Apache installed (well, 8 or 9, but one that I really use all
  day), 4 PHP installs.. I have PHP 4 at C:\php, Apache at D:\Apache, PHP3
at
  D:\php3, PHP5 at D:\PHP5, mysql at D:\mysql4, my webdocuments in c:\www,
  D:\www2, G:\document..\\my documents
  and so on..

 So if I understand correctly, you could have several of each installed
 on the SAME DRIVE even?

 I'm thinking of creating two new folders on my C drive, then installing
 Apache, PHP and MySQL one at a time in the first folder, then installing
 that preconfigured package that seems to work so well in the second drive.

 The Apache installs would be 1.3 and 2.0, but the two installations of
 PHP and MySQL might be the same version, for all I know. That would be
 really convenient!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP on XP

2003-10-09 Thread Shadow
Go here
http://www.digitalamit.com/?DA=89ce4fe3aff0c02a99a796c3ba994482
Shadow

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Installing PHP

2002-10-04 Thread lallous

did you try www.phpbuilder.com for how to install PHP /win ?

Elias,
Dan [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I am trying to create a message board. I setup a windows 2000 server and
 installed IIS. In order to setup this messageboard i need to have PHP
 installed. I downloaded the PHP installer and tried to run it but i get a
 error message stating that there was a missing OCX component and it cant
 configure the webserver. Does any know where i can get step by step
 instructions in setting this up. The instructions that come from php.net
are
 too confusing.


 THanks

 Dan







-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Installing PHP 4.2.1

2002-05-20 Thread Johan Ekström

This is what you must do.

  Copy Part
^^

copy php4ts.dll to c:\winnt\system32\
copy php4sapi.dll to c:\winnt\system32\
if you want any extensions, copy them to to c:\winnt\system32\

  configuration part
^^^
 in php.ini
¨
edit doc_root like : c:/Inetpub/wwwroot
edit extension_dir like : c:/winnt/system32
then remove the ; infront of every extension you would like to have.

  now, in iis5.0

don't use it as a filter
use it as an script/executable in the home flick, where you set document/web
root.

add c:\winnt\system32\php4sapi.dll and, fileextension, ofcourse .php


i hope i make sence... good luck.



Ryan Conover [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I am having trouble installing PHP 4.2.1 on Win2K/IIS5 as an ISAPI Module.
 I copied php.ini file with my config to the winnnt folder, and set the the
 app mappings and Isapi filters to C:\PHP\SAPI\php4isapi.dll, but the
module
 does not read any of the changes in the php.ini file.  How can I get
php.ini
 settings to be read?

 Ryan Conover
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 http://www.pitt.edu/~rscst25/





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Installing PHP 4.2.1

2002-05-20 Thread Johan Ekström

This is what you must do.

  Copy Part
^^

copy php4ts.dll to c:\winnt\system32\
copy php4sapi.dll to c:\winnt\system32\
if you want any extensions, copy them to to c:\winnt\system32\

  configuration part
^^^
 in php.ini
¨
edit doc_root like : c:/Inetpub/wwwroot
edit extension_dir like : c:/winnt/system32
then remove the ; infront of every extension you would like to have.

  now, in iis5.0

don't use it as a filter
use it as an script/executable in the home flick, where you set document/web
root.

add c:\winnt\system32\php4sapi.dll and, fileextension, ofcourse .php


i hope i make sence... good luck.



Ryan Conover [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I am having trouble installing PHP 4.2.1 on Win2K/IIS5 as an ISAPI Module.
 I copied php.ini file with my config to the winnnt folder, and set the the
 app mappings and Isapi filters to C:\PHP\SAPI\php4isapi.dll, but the
module
 does not read any of the changes in the php.ini file.  How can I get
php.ini
 settings to be read?

 Ryan Conover
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 http://www.pitt.edu/~rscst25/





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Installing PHP 4.1.1 on Redhat w/ RPMs

2002-02-04 Thread J Smith


Personally, I'd recommend compiling from source it is at all possible. 
You'll likely get improved performance, and it's nice to know you can set 
things up exactly as you see fit.

Another thing you could try if that seems daunting or you need to install 
the RPMs onto several machines that all have the same set up (serverS, 
right?) would be to grab a source RPM and rebuild it on one machine. 
Basically, a command like this should work:

# rpm --rebuild php-x.x.x.src.rpm

The RPM should unbundle, configure, and compile, install itself, then place 
a fresh RPM in /src/redhat/RPMS/something (depending on your architecture). 
The new RPM will install on any system that has the same setup and 
libraries as the one you just performed the rebuild on.

In some cases, there may be times when you'll need to edit a file or two in 
the RPM to get it to compile. There should be howtos on this at redhat.com. 

J



Darren Gamble wrote:

 Good day,
 
 This isn't strictly a PHP question, but, I am hoping someone on this list
 has gone through this already and can provide some assistance.
 
 I'd like to upgrade to PHP 4.1.1 on our Redhat 7.2 servers, and so I've
 downloaded all of the PHP RPMs from Rawhide.  I would really, really like
 to do this with RPMs if at all possible.
 
 When I go to install, I find out that:
 
 
 error: failed dependencies:
 libcrypto.so.3   is needed by php-4.1.1-1
 
 
 OK, no problem so far.  I just need to get the new openssl packages.
 
 But, after downloading them and adding them to the install list, I then
 find that libcrypto.so.2 (which would be replaced by libcrypto.so.3) is
 needed by
 dozens of packages on the system.  I really can't upgrade them all.
 
 I am just going from openssl-0.9.6b-8 to openssl-0.9.6c-2 .  It appears to
 me that openssl must have changed the API for their library between an
 extremely minor version number (is that even supposed to happen?), which
 is what I think is causing me the problem.
 
 I'm not quite sure how to proceed.  Has anyone else on the list done this
 yet?
 
 Thanks to all who reply,
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Re: installing php with apache rpm???

2001-12-27 Thread Duane Douglas

At 10:04 PM 12/26/2001 -0800, Fred wrote:
This guy has some great modular php rpms that will do the trick:
http://rpms.arvin.dk/php/

Fred

Duane Douglas [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  hello,
 
  i have an apache rpm installed.  stuff will break if i uninstall it.  how
  do i install php to work with it?

thanks for the link.  unfortunately, the rpm packages there don't work with 
rh linux 7.2.  does anyone have another suggestion?

tia

Duane Douglas
ASP / SQL Server Tutoring and Training


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: installing php with apache rpm???

2001-12-26 Thread Fred

This guy has some great modular php rpms that will do the trick:
http://rpms.arvin.dk/php/

Fred

Duane Douglas [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 hello,

 i have an apache rpm installed.  stuff will break if i uninstall it.  how
 do i install php to work with it?

 tia

 Duane Douglas
 ASP / SQL Server Tutoring and Training




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: installing php on apache

2001-12-17 Thread LaserJetter

You need to add lines to the httpd.conf file and maybe edit the php.ini
file. On windows, the instructions for doing this are in install.txt which
is found in the directory in which PHP was installed.
If doing this doesnt help (make sure you restart apache!), I'm not sure what
to do as my Linux experience is limited!




Jeremiah Jester [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 i'm having trouble running php on my linux box running apache. the rpm is
 installed but cant get my simple script to execute. What else do i need to
 do. Edit php.ini? Edit httpd.conf? Peremissions? Apache runs fine by
itself.
 Thanks.
 JJ




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: installing php on apache

2001-11-17 Thread Fred

There are a number of things that could be wrong.  It is difficult to tell
without knowing any details.  I am drawn to the fact that you are just
assuming the web root.  I don't know if you installed from RPMs or source,
but if var/www/html is not set as Apache's document root when you point
Konqueror at that file it is not using Apache to render it, it is just
treating it as a text file to view.  Check Apache's httpd.conf file to see
what the document root is set to and either change it to var/www/html or
move your file to the directory that it is set to.

Fred


Douglas McKenzie [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hi,

 I'm a newbie to php having been working with coldfusion for years.

 Recently decided to test it out and have configured a box with Red Hat
 Linux 7.1, kde, apache and mysql. These all seem to be running fine but
 I can't seem to get a php page to translate.

 Im assuming that the web root is var/www/html and I've placed a file
 called index.php under that with a simple php? echo ? call. However it
 just displays the full file rather than translating the call. What am I
 doing wrong?

 All help appreciated.

 TIA

 Doug




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: Installing PHP probs

2001-08-01 Thread Gary

What server are you using Apache or PWS?  What is happening when you are
trying to run  PHP? The biggest mastake for  newbies on the newest flavor of
apache for windows, editing the httpd.conf-dist-win instead of the
httpd.conf
file. Try this article first and if it doesn't help you can contact me off
list and I will give you a hand.
http://hotwired.lycos.com/webmonkey/00/44/index4a.html

Gary

Kyle Smith [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
Can someone quide me through the process of installing PHP on a windows
system (my computer) because ive followed what it says in the doc files but
it doesnt work so anyone who has done it, please help!


-lk6-
http://www.StupeedStudios.f2s.com
Home of the burning lego man!

ICQ: 115852509
MSN: [EMAIL PROTECTED]
AIM: legokiller666






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]