[PHP] PHP script locations

2001-03-18 Thread Paul O'Neil
Dumb question here but where does one typically keep there PHP form scripts, like web/index.htm images/image.jpg phpscripts/login.php cgi-bin/perlscript.pl secure/secureforms.here Is there a problem keeping everything in the WEB directory, is it a security issue or management of files issue?

Re: [PHP] unable to fine /htdocs on my linux machine :(

2001-03-19 Thread Paul O'Neil
I had problems getting Apache, PHP and MySQL to work using the RPM's on Redhat 7.0. I ended up deleting all of them and installed manually using the tar's. - Original Message - From: "David Robley" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, March 18, 2001 11:32 PM Subject: Re:

[PHP] cookies

2002-06-22 Thread Paul O'Neil
If a browser has cookies blocked , anyone have code if unable to set cookie then goto another page. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] cookies

2002-06-22 Thread Paul O'Neil
isset worked for me thanks. -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 22, 2002 4:37 PM To: Paul O'Neil Cc: [EMAIL PROTECTED] Subject: Re: [PHP] cookies This is sometimes a confusing issue for people, but remember that cookies work like

[PHP] automatic job execution

2002-07-25 Thread Paul O'Neil
I have a php script I would like run like a cron job every so many minutes. How is this done? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] automatic job execution

2002-07-25 Thread Paul O'Neil
I looked at some old posts and I found #!/usr/local/bin/php -q should be included at the top of the script but I don't think I have permission on the system I'm on. -Original Message- From: Scott [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 6:25 AM To: Paul O'Neil Cc: [EMAIL

RE: [PHP] automatic job execution

2002-07-25 Thread Paul O'Neil
awe shit, that did work. thanks! -Original Message- From: Scott [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 6:25 AM To: Paul O'Neil Cc: [EMAIL PROTECTED] Subject: Re: [PHP] automatic job execution On second thought, do you just want the script to run and sleep or actually

RE: [PHP] installing php4

2001-05-22 Thread PAUL O'NEIL
I had a little trouble with RedHat using the RPM's to get those packages to work. It only worked best when I used the tar.gz files on all three and followed the instructions. I felt that since these are critical components that need to work for me and I was doing it by hand anyway why even use

[PHP] scripts

2001-05-05 Thread Paul O'Neil
If I have PHP scripts I want in a directory other people can't access, how do I let those scripts be read by the sever? Like scripts that contain user and password info or is just have them named filename.php secure enough? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Sos

2001-05-07 Thread Paul O'Neil
That's what I did to get mine working on 7.0 -Original Message- From: Altunergil, Oktay [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 7:32 AM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: [PHP] Sos Remove both rpms + apache Do a source install. Using redhat is no

[PHP] simple Apache question I'm sure

2003-09-05 Thread Paul O'Neil
This is more Apache related but I have a php/apache config'd box at home I want to test stuff out on before uploading to a public server. Every directory except wwwroot dir I must place a '/' after the dir name to get a listing such as http:://192.168.1.1/mydirectory will not load the index.php

RE: [PHP] simple Apache question I'm sure [solved]

2003-09-06 Thread Paul O'Neil
Thanks for that answer. that was it. Theres alot going on in apache! -Original Message- From: David Otton [mailto:[EMAIL PROTECTED] Sent: Saturday, September 06, 2003 4:40 AM To: Paul O'Neil Cc: [EMAIL PROTECTED] Subject: Re: [PHP] simple Apache question I'm sure On Fri, 5 Sep 2003 20

[PHP] touch file on shared web server?

2003-07-12 Thread Paul O'Neil
you can only TOUCH a file that you own. Usually PHP is *nobody*. Is there a way for a script to create a file on the web server? --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.498 / Virus Database: 297 - Release Date: 7/8/2003

RE: [PHP] touch file on shared web server?

2003-07-12 Thread Paul O'Neil
Yes, create a temp directory like this -rw-rw-rw- 1 nobody nogroup -Original Message- From: Paul O'Neil [mailto:[EMAIL PROTECTED] Sent: Saturday, July 12, 2003 5:52 PM To: [EMAIL PROTECTED] Subject: [PHP] touch file on shared web server? you can only TOUCH a file that you own

[PHP] last updated ?

2002-11-30 Thread Paul O'Neil
Dumb question here but whats the general practice regarding putting a website last updated: entry on a web page? Does the web master manually enter in today's date in a database table entry and let PHP display. Is it statically added to the HTML page? Etc... -- PHP General Mailing List