Re: [PHP-WIN] Hack Q...

2003-08-14 Thread Jon Phipps
That is the tell tale sign that either nimda or code red, I for get which have been scouting your system. If you run apache server dont worry about it as they can only opperate on IIS platforms. JON Skate wrote: Is someone trying to hack my computer? "GET /scripts/..%255c%255c../winnt/system

[PHP-WIN] Re: apache/php

2003-08-03 Thread Jon Phipps
hmmm talking to myself, have the it figured out. Decided to load as a module instead Jon Phipps wrote: what is the trick to getting apache2 to exec php scripts properly I have managed to get beyond the 500 sever error now they just time out. I want to use php.exe as a cgi, this is on a windows

[PHP-WIN] apache/php

2003-08-03 Thread Jon Phipps
what is the trick to getting apache2 to exec php scripts properly I have managed to get beyond the 500 sever error now they just time out. I want to use php.exe as a cgi, this is on a windows 2k server platform. I am fairly new to apache so please be as detailed as you think is needed any help

[PHP-WIN] Re: Apache or IIS

2003-08-02 Thread Jon Phipps
You are right, I am getting tired of the hassles I face with my IIS5 bases system, previously functioning scripts that fail for no apparent reason... and many other things. I think I am going to start configuring apache for my system. I ran it some time ago and it runs much faster than IIS in m

[PHP-WIN] Re: Apache or IIS

2003-08-01 Thread Jon Phipps
What it boils down to is how comforatble are you editing the conf file by hand. If you run multiple virtual servers on multiple domains from one ip address then the setup in IIS is heaps easier than in apache. However, that being said, apache does not suffer from the server worms that IIS is su

Re: [PHP-WIN] $_POST issues with file paths

2003-07-25 Thread Jon Phipps
Thanks Mikey, had forgotten that. Works a treat. Mikey wrote: You could try using forward slashes - they are functionally equivalent from a PHP point of view... Mikey -Original Message- From: Jon Phipps [mailto:[EMAIL PROTECTED] Sent: 25 July 2003 19:13 To: [EMAIL PROTECTED] Subject

[PHP-WIN] $_POST issues with file paths

2003-07-25 Thread Jon Phipps
Here is my problem I need to read a file path from this construct Base Path however when I read it with $appath=$_POST["sys_path"]; what I get is e:\\jon\\site_dev\\php-html not what I am expecting which is e:\\jon\\site_dev\\php-html how can I stop the post method from escaping all m

[PHP-WIN] Sorry

2003-07-25 Thread Jon Phipps
Sorry bout the double post of the radio buttons issue, Outlook express crashed so it got sent twice. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Radio Button issues

2003-07-25 Thread Jon Phipps
I am having a couple problems with the following code 1) I need to return the value of the radio button (True or False) 2) I need to wait on the file write until the data is changed if ($app_Security){ echo 'Yes',''; echo ' ', 'No',''; }else{ echo 'Yes',''; echo 'No',''; } $temp= 'Security=' + $va

[PHP-WIN] Radio Button issues

2003-07-25 Thread Jon Phipps
I am having a couple problems with the following code 1) I need to return the value of the radio button (True or False) 2) I need to wait on the file write until the data is changed if ($app_Security){ echo 'Yes',''; echo ' ', 'No',''; }else{ echo 'Yes',''; echo 'No',''; } $temp= 'Security=' + $va

[PHP-WIN] closing windows

2003-07-23 Thread Jon Phipps
I am curious as to how, from within php, you could emulate the javascript window.close() function. The other thing is how would I blend javascript and php, it call javascript functions from php. The javascript will be located in the same page as the php. Jon -- PHP Windows Mailing List (http:/

[PHP-WIN] Re: Subject: dynamic html pages

2003-07-21 Thread Jon Phipps
Thanks Neil, had not thought of doing it that way seems much more elegant than what I was doing anyway. Will work that into the code and finaly have it behaving right... now if I could just get the http referer parsed right for the log file Jon "Neil Smith" <[EMAIL PROTECTED]> wrote in messag

[PHP-WIN] http referer

2003-07-21 Thread Jon Phipps
I am having no end of bad luck getting the refering page returned, the issue may be that I am doing redirects using javascript if a document is not loaded correctly. // // test and redirect if needed //