[PHP-WIN] PHP cgi

2005-01-03 Thread blulagoon
I'm looking at an open source content management system which is PHP based, but I'm having problems installing it. It has been suggested, that the problem is solved by "switching PHP from the cgi mode to Apache2 module" but I have no idea how to do this or what the ramifications might be for all th

RE: [PHP-WIN] PHP cgi

2005-01-03 Thread Dean Hayes
U can find this in the install.txt file under the php root dir I have always used php as a module never CGI an have never had problems under 98SE or XP Pro Installing as an Apache

Re: [PHP-WIN] PHP cgi

2005-01-03 Thread blulagoon
I've added the following two lines to my httpd.conf file at the end of the LoadModule section: LoadModule php4_module "C:/PHP/sapi/php4apache2.dll" PHPiniDIR "C:/WINDOWS" I've got the add type line in the file already. End result is that Apache won't start automatically, and if I try and start

Re: [PHP-WIN] PHP cgi

2005-01-03 Thread Dean Hayes
Yes remove all the lines that relate to running PHP as a CGI u can not run both at the same time Sorry forgot to say this before did not think about it Dean "The Insane Guy" Hayes <-- I design and i redesign but still i never designed true beauty like you --> ~~~ Call me Insane call me Crazy bu

Re: [PHP-WIN] PHP cgi

2005-01-03 Thread blulagoon
Thanks Dean. I've commented out the lines that say: Action application/x-httpd-php /php/php.exe ScriptAlias /php/ "C:/php/" which I think are involved with cgi, but I don't know enough about the configuration files to know what else it uses, but with those lines '#' out, the two new lines added

Re: [PHP-WIN] PHP cgi

2005-01-03 Thread Luis Moreira
This is a PHP list, and there is an Apache one were this problem fits better. Go to www.apache.org and subscribe it. Meanwhile, do you have an error log to look at ? What does it say ? Luis blulagoon wrote: Thanks Dean. I've commented out the lines that say: Action application/x-httpd-php /php/ph

[PHP-WIN] Searching for UPS tool

2005-01-03 Thread Tony Devlin
Hello List, Does anyone have or know where I can find a functional UPS shipping tool? I have found tons for their old ups tool (which no longer function), they have since switched to an XML version and my attempts have been futile, including trying to find someone elses working version. So m

Re: [PHP-WIN] Re: a function question

2005-01-03 Thread Patrick Roane
Thanks for all of your help. Sorry for the late response, I've been out of town. Anyway, my objective with this is to ultimately create a website that uses php and mysql to store and load information about gigs (for a band). I design web sites and primarily rely on 'flash' to do the job (which can

Re: [PHP-WIN] Re: a function question

2005-01-03 Thread blulagoon
I've not read the whole thread, but might I suggest you might want to use PHP to get the information from a MySQL database and use that data to populate your Flash interface. If you use an action script construct like loadVars or loadVariables it is not too difficult to pass parameters from Flash

Re: [PHP-WIN] PHP cgi

2005-01-03 Thread blulagoon
I've looked in the apache error.log file, but there are no entries logged there when apache fails to start. I think you could make the case either way as to which group is more relevant here, PHP or Apache. However I'm sure there are lots of people here who use PHP with Apache running under Wind

[PHP-WIN] any scripts to manage APACHE's HTPASSWD/AUTH file?

2005-01-03 Thread Leo G. Divinagracia III
i guess i'd asked first before reinventing the wheel... lol running xp with apache 2.x and i am looking for a script to manage users using apache's http authentication. you know, apache's HTPASSWD util? would like an admin screen and then user screens... is that asking too much? ;) searched i

Re: [PHP-WIN] any scripts to manage APACHE's HTPASSWD/AUTH file?

2005-01-03 Thread Irvin Piraman
just feed the appropriate parameters to htpasswd through shell execution. there are a number of functions to do this: htpasswd -b[cmdpsD] passwordfile username password HTH Irvin On Mon, 03 Jan 2005 20:48:27 -0800, Leo G. Divinagracia III <[EMAIL PROTECTED]> wrote: > i guess i'd asked first be