Re: [users@httpd] am i hacked ?

2017-02-06 Thread Ken Robinson
On 2017-02-06 12:08 pm, Lentes, Bernd wrote: The first line is trying to create the file webconfig.txt.php in your DOCUMENT_ROOT directory, with the contents of the file being: I didn't decode the remaining lines. I think they're just trying to do the same thing. Fortunately there is

Re: [EMAIL PROTECTED] Php not running

2007-10-29 Thread Ken Robinson
On 10/29/07, Vishal Gaurav [EMAIL PROTECTED] wrote: Hello, Now i am able to use this test script. ?php echotesting; ? but not ?php echo This is a PHP line; ? if i remove space in this line ?php echo ThisisaPHPline; ? then aple to see thisisphpline. But If i donot remove the space nothing is

Re: [EMAIL PROTECTED] Unable to run the xampp

2007-09-04 Thread Ken Robinson
On 8/22/07, raju [EMAIL PROTECTED] wrote: Hi, Thanks for your reply. But i would like to work in windows os, I want it for php, Can you advise any other web server(open source) which suits php and which works on win 98? XP is Windows. Xampp works fine with Windows XP. Windows 98 is

[EMAIL PROTECTED] Redirect of http to https going into an infinite loop

2007-06-18 Thread Ken Robinson
I'm trying to help my boss solve his rewrite problem. He's trying the following code in the config file, but the results are an infinite loop of rewrites: VirtualHost *:7778 ServerName virtual1 Port 80 ServerAdmin [EMAIL PROTECTED] Options +FollowSymLinks RewriteEngine On

Re: [EMAIL PROTECTED] Redirect of http to https going into an infinite loop

2007-06-18 Thread Ken Robinson
On 6/18/07, Brett Neumeier [EMAIL PROTECTED] wrote: On Mon, 2007-06-18 at 17:16 +0100, Tony Stevenson wrote: On Mon, June 18, 2007 4:49 pm, Ken Robinson wrote: I'm trying to help my boss solve his rewrite problem. He's trying the following code in the config file, but the results

Re: [EMAIL PROTECTED] Apache server is not parsing php files

2006-01-26 Thread Ken Robinson
Quoting sanjay [EMAIL PROTECTED] (in part): I have already installed phpMyAdmin and was running fine. One day suddenly when I pointed my browser at : http://localhost/phpMyAdmin Instead of running the phpMyAdmin browser opened a message window with options- Open With or Save to disk . I think

Re: [EMAIL PROTECTED] apache hacked to send spam!

2006-01-19 Thread Ken Robinson
Quoting maillists [EMAIL PROTECTED]: Hello List, I have been trying to isolate attacks on my server where someone is using apache to send spam from my host. I have been hit quite a bit in the past 2 days. Some of my websites have web forms, but I'm pretty sure that they are tight. Are these

Re: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Ken Robinson
Quoting Christopher Deeley [EMAIL PROTECTED]: Does anyone know how to use PHP to delete blank lines in a text file. I use a text file to store usernames and passwords but with adding and deleting users, blank lines appear which returns an undefined offset error when the 'verify user script'

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Ken Robinson
Quoting Wagner, Aaron [EMAIL PROTECTED]: That's nice but it doesn't fix the blank lines it just skips them in the file parse. I think he wants to clean the file. If the file gets big, he could take a performance hit skipping multiple lines. If you ran the script you would see that the

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Ken Robinson
At 05:35 PM 12/27/2005, Wagner, Aaron wrote: k, I didn't see you filehandle on the fwrite. I didn't know that you could write to the same file your reading? Interesting Actually, I use the file() function to read the whole file into an array, so the file isn't open when you do the fopen() of