Error 403

Problems with the Windows version of XAMPP, questions, comments, and anything related.

Error 403

Postby loord » 23. April 2013 22:23

Hi!

I know there is alot of topics about this but I can't seem to get any of them working. I am doing some php and MySQL in school right now and I am "haunted" by this 403 error. I've tried the various solutions to this problem but not a single one of them wants to work so therefore I will now ask you in person. I can access the normal start page and all that but the problems begin when trying to edit my MySQL database, the first is to add a car to a table so that you can add them when needed in the database the source code for that is the following:
Code: Select all
<?php
   $host="localhost";   //Den server som kör MySQL
   $user="root";      //Ditt användarnamn
   $pass="";         //Ditt lösenord
?>

<!-- Vi börjar med ett HTML-formulär för att kunna mata in data -->

<form action="<?echo $_SERVER['PHP_SELF']?>" method="POST">
   Registreringsnummer:<br>
   <input type="text" name="reg"><p>
   
   Bilmärke:<br>
   <input type="text" name="marke"><p>
   
   Modell:<br>
   <input type="text" name="modell"><p>
   
   Årsmodell:<br>
   <input type="text" name="arsmodell"><p>
   
   Pris:<br>
   <input type="text" name="pris"><p>
   
   <input type="submit">
</form>
<?php
   //
   // Spara undan variablerna från $_POST (som är den
   // metod vi använder i formuläret). Se dokumentation
   // till PHP för mer information.
   //
   $reg = $_POST['reg'];
   $marke = $_POST['marke'];
   $modell = $_POST['modell'];
   $arsmodell = $_POST['arsmodell'];
   $pris = $_POST['pris'];
   
   
   //
   // Anslut till databasen
   //
   $conn = mysql_connect( $host, $user, $pass );
   if (! $conn) {
      print ("Anslutningen misslyckades");
      exit;
   }
   
   //
   // Välj vilken databas du skall använda
   //
   mysql_select_db("testing");
   
   //
   // Kör SQL-frågan, vi bryr oss inte om resultatet
   //
   mysql_query("INSERT INTO
               bilar (reg,marke,modell,arsmodell,pris)
            VALUES
               ('$reg','$marke','$modell','$arsmodell','$pris')");
   
   // Stäng kopplingen till databasen
   mysql_close( $conn );
?>


(sorry for the comments being in Swedish but it's meant for my teacher to see that I know what I'm doing)
This works on my school laptop after small modifications of the httpd-xampp.conf file but with the same modifications to the file on my desktop results in a 403 error when sending the request to add the new car.

Now the other one works almost the same but it prints the table and removes a car instead it looks like this:
Code: Select all
<?php
   $host="localhost";   //Den server som kör MySQL
   $user="root";      //Ditt användarnamn
   $pass="";         //Ditt lösenord
   
   //
   // Anslut till databasen
   //
   $conn = mysql_connect( $host, $user, $pass );
   if (! $conn) {
      print ("Anslutningen misslyckades");
      exit;
   }
   
   //
   // Välj vilken databas du skall använda
   //
   mysql_select_db("testing");
   
   //
   // Ifall vi fått ett registreringsnummer i $_POST['reg'] från
   // formuläret nedan så tar vi bort den bilen nu.
   //
   if (isset($_POST['reg'])) {
      $reg = $_POST['reg'];
      $query = mysql_query("DELETE FROM bilar WHERE reg='$reg'");
   }
   
   //
   // Visa en lista på de bilar som finns i databasen
   //
   $query = mysql_query("SELECT *FROM bilar");
   
   // Här börjar vi en html-tabell
   print ("<table border=\"1\">\n");
   
   //
   // Skriv ut de bilar som finns kvar
   //
   while($t = mysql_fetch_row($query))
   {
      // Skapa en rad i tabellen med posten
      echo "<tr>";
      echo "<td>$t[0]</td><td>$t[1]</td><td>$t[2]</td><td>$t[3]</td><td>$t[4]</td>";
      echo "</tr>";
   }
   
   // Stäng tabellen
   print ("</table>");
   
   // Stäng kopplingen till databasen
   mysql_close( $conn );
?>

<form action="<?echo $_SERVER['PHP_SELF'];?>" method="POST">
   Ange registreringsnummer att ta bort:<br>
   <input type="text" name="reg">
   <input type="submit">
</form>


So first of all this doesn't work on either of the computers, my conclusion from this is that for some reason it requires you to have different levels of access to do these commands and that the problem and the solution probably lies in the httpd-xampp.conf file but I just can't see it.

If you need any more information just say it and I will provide it.
loord
 
Posts: 4
Joined: 23. April 2013 21:56
Operating System: Windows

Re: Error 403

Postby Altrea » 23. April 2013 22:46

Hi loord,

you gave us much information, but none of the really necessary to analyse your problem.

We don't know how your files are named and where they are saved.
We don't know what you type in your browsers address bar to request the file.
We don't know the exect error message you get.
We don't know which modifications in the httpd-xampp.conf you have done.
We don't know the contents of your Apache error.log and access.log file.

So, i have absolutely no idea how we should be able to help you.

best wishes,
Altrea
We don't provide any support via personal channels like PM, email, Skype, TeamViewer!

It's like porn for programmers 8)
User avatar
Altrea
AF Moderator
 
Posts: 11926
Joined: 17. August 2009 13:05
XAMPP version: several
Operating System: Windows 11 Pro x64

Re: Error 403

Postby loord » 23. April 2013 23:00

Ok so to give you the rest of the information then.
first the files are saved in C:\xampp\htdocs\xampp in the browser I type in localhost/xampp/filename which always works until I try to make it do something like add a car to the table (I have viewed the source to see that it is indeed the one I'm working on) the error message I get is in Swedish and that is why I didn't post it but I will do that now as an image in this place ----> http://piclair.com/zl42l

The httpd-xampp.conf looks like this on the desktop:
Code: Select all
#
# XAMPP settings
#

<IfModule env_module>
    SetEnv MIBDIRS "C:/xampp/php/extras/mibs"
    SetEnv MYSQL_HOME "\\xampp\\mysql\\bin"
    SetEnv OPENSSL_CONF "C:/xampp/apache/bin/openssl.cnf"
    SetEnv PHP_PEAR_SYSCONF_DIR "\\xampp\\php"
    SetEnv PHPRC "\\xampp\\php"
    SetEnv TMP "\\xampp\\tmp"
</IfModule>

#
# PHP-Module setup
#
LoadFile "C:/xampp/php/php5ts.dll"
LoadModule php5_module "C:/xampp/php/php5apache2_4.dll"

<FilesMatch "\.php$">
    SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
    SetHandler application/x-httpd-php-source
</FilesMatch>

#
# PHP-CGI setup
#
#<FilesMatch "\.php$">
#    SetHandler application/x-httpd-php-cgi
#</FilesMatch>
#<IfModule actions_module>
#    Action application/x-httpd-php-cgi "/php-cgi/php-cgi.exe"
#</IfModule>


<IfModule php5_module>
    PHPINIDir "C:/xampp/php"
</IfModule>

<IfModule mime_module>
    AddType text/html .php .phps
</IfModule>

ScriptAlias /php-cgi/ "C:/xampp/php/"
<Directory "C:/xampp/php">
    AllowOverride None
    Options None
    Require all denied
    <Files "php-cgi.exe">
          Require all granted
    </Files>
</Directory>

<Directory "C:/xampp/cgi-bin">
    <FilesMatch "\.php$">
        SetHandler cgi-script
    </FilesMatch>
    <FilesMatch "\.phps$">
        SetHandler None
    </FilesMatch>
</Directory>

<Directory "C:/xampp/htdocs/xampp">
    <IfModule php5_module>
       <Files "status.php">
          php_admin_flag safe_mode off
       </Files>
    </IfModule>
    AllowOverride AuthConfig
   Require all granted
</Directory>

<IfModule alias_module>
    Alias /security "C:/xampp/security/htdocs/"
    <Directory "C:/xampp/security/htdocs">
        <IfModule php5_module>
          <Files "xamppsecurity.php">
             php_admin_flag safe_mode off
          </Files>
        </IfModule>
        AllowOverride AuthConfig
        Require all granted
   </Directory>

    Alias /licenses "C:/xampp/licenses/"
    <Directory "C:/xampp/licenses">
        Options +Indexes
        <IfModule autoindex_color_module>
            DirectoryIndexTextColor  "#000000"
            DirectoryIndexBGColor "#f8e8a0"
            DirectoryIndexLinkColor "#bb3902"
            DirectoryIndexVLinkColor "#bb3902"
            DirectoryIndexALinkColor "#bb3902"
        </IfModule>
        Require all granted
   </Directory>

    Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
    <Directory "C:/xampp/phpMyAdmin">
        AllowOverride AuthConfig Limit
      Require all granted
    </Directory>

    Alias /webalizer "C:/xampp/webalizer/"
    <Directory "C:/xampp/webalizer">
        <IfModule php5_module>
          <Files "webalizer.php">
             php_admin_flag safe_mode off
          </Files>
        </IfModule>
        AllowOverride AuthConfig
        Require all granted
    </Directory>
</IfModule>

#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    Deny from all
    Allow from all
    ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>


I don't remember the exact modifications I have done unfortunatly.
on the laptop it looks like this (since this worked halfway I havn't modified it as much):
Code: Select all
#
# XAMPP settings
#

<IfModule env_module>
   SetEnv MIBDIRS "C:/xampp/php/extras/mibs"
   SetEnv MYSQL_HOME "\\xampp\\mysql\\bin"
   SetEnv OPENSSL_CONF "C:/xampp/apache/bin/openssl.cnf"
   SetEnv PHP_PEAR_SYSCONF_DIR "\\xampp\\php"
   SetEnv PHPRC "\\xampp\\php"
   SetEnv TMP "\\xampp\\tmp"
</IfModule>

#
# PHP-Module setup
#
LoadFile "C:/xampp/php/php5ts.dll"
LoadModule php5_module "C:/xampp/php/php5apache2_4.dll"

<FilesMatch "\.php$">
   SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
   SetHandler application/x-httpd-php-source
</FilesMatch>

#
# PHP-CGI setup
#
#<FilesMatch "\.php$">
#    SetHandler application/x-httpd-php-cgi
#</FilesMatch>
#<IfModule actions_module>
#    Action application/x-httpd-php-cgi "/php-cgi/php-cgi.exe"
#</IfModule>


<IfModule php5_module>
   PHPINIDir "C:/xampp/php"
</IfModule>

<IfModule mime_module>
   AddType text/html .php .phps
</IfModule>

ScriptAlias /php-cgi/ "C:/xampp/php/"
<Directory "C:/xampp/php">
   AllowOverride None
   Options None
   Require all denied
   <Files "php-cgi.exe">
         Require all granted
   </Files>
</Directory>

<Directory "C:/xampp/cgi-bin">
   <FilesMatch "\.php$">
       SetHandler cgi-script
   </FilesMatch>
   <FilesMatch "\.phps$">
       SetHandler None
   </FilesMatch>
</Directory>

<Directory "C:/xampp/htdocs/xampp">
   <IfModule php5_module>
      <Files "status.php">
         php_admin_flag safe_mode off
      </Files>
   </IfModule>
   AllowOverride AuthConfig
</Directory>

<IfModule alias_module>
   Alias /security "C:/xampp/security/htdocs/"
   <Directory "C:/xampp/security/htdocs">
       <IfModule php5_module>
         <Files "xamppsecurity.php">
            php_admin_flag safe_mode off
         </Files>
       </IfModule>
       AllowOverride AuthConfig
       Require all granted
  </Directory>

   Alias /licenses "C:/xampp/licenses/"
   <Directory "C:/xampp/licenses">
       Options +Indexes
       <IfModule autoindex_color_module>
           DirectoryIndexTextColor  "#000000"
           DirectoryIndexBGColor "#f8e8a0"
           DirectoryIndexLinkColor "#bb3902"
           DirectoryIndexVLinkColor "#bb3902"
           DirectoryIndexALinkColor "#bb3902"
       </IfModule>
       Require all granted
  </Directory>

   Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
   <Directory "C:/xampp/phpMyAdmin">
       AllowOverride AuthConfig
       Require all granted
   </Directory>

   Alias /webalizer "C:/xampp/webalizer/"
   <Directory "C:/xampp/webalizer">
       <IfModule php5_module>
         <Files "webalizer.php">
            php_admin_flag safe_mode off
         </Files>
       </IfModule>
       AllowOverride AuthConfig
       Require all granted
   </Directory>
</IfModule>

#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
   Order allow,deny
   Allow from all
   Allow from ::1 127.0.0.0/8 \
      fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
      fe80::/10 169.254.0.0/16

   ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>




Again I don't know the exact changes I'm afraid

The logs will be posted separate so I won't exeed the char limit.
Last edited by loord on 23. April 2013 23:05, edited 1 time in total.
loord
 
Posts: 4
Joined: 23. April 2013 21:56
Operating System: Windows

Re: Error 403

Postby loord » 23. April 2013 23:02

The error log looks like this:
Code: Select all
[Sun Apr 21 23:06:50.717319 2013] [ssl:warn] [pid 5528:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Sun Apr 21 23:06:50.822832 2013] [mpm_winnt:notice] [pid 5528:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Sun Apr 21 23:06:50.822832 2013] [mpm_winnt:notice] [pid 5528:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Sun Apr 21 23:06:50.822832 2013] [core:notice] [pid 5528:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sun Apr 21 23:06:50.825333 2013] [mpm_winnt:notice] [pid 5528:tid 240] AH00418: Parent: Created child process 7152
[Sun Apr 21 23:06:52.199007 2013] [ssl:warn] [pid 7152:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Sun Apr 21 23:06:52.326023 2013] [mpm_winnt:notice] [pid 7152:tid 252] AH00354: Child: Starting 150 worker threads.
[Mon Apr 22 22:57:26.153107 2013] [core:warn] [pid 4196:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Mon Apr 22 22:57:26.620133 2013] [ssl:warn] [pid 4196:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Mon Apr 22 22:57:26.708138 2013] [mpm_winnt:notice] [pid 4196:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Mon Apr 22 22:57:26.708138 2013] [mpm_winnt:notice] [pid 4196:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Mon Apr 22 22:57:26.708138 2013] [core:notice] [pid 4196:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Mon Apr 22 22:57:26.712138 2013] [mpm_winnt:notice] [pid 4196:tid 240] AH00418: Parent: Created child process 1448
[Mon Apr 22 22:57:28.176222 2013] [ssl:warn] [pid 1448:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Mon Apr 22 22:57:28.236226 2013] [mpm_winnt:notice] [pid 1448:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 17:34:16.918642 2013] [core:warn] [pid 6232:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 17:34:17.355667 2013] [ssl:warn] [pid 6232:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 17:34:17.779691 2013] [mpm_winnt:notice] [pid 6232:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 17:34:17.779691 2013] [mpm_winnt:notice] [pid 6232:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 17:34:17.779691 2013] [core:notice] [pid 6232:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 17:34:17.781691 2013] [mpm_winnt:notice] [pid 6232:tid 240] AH00418: Parent: Created child process 5888
[Tue Apr 23 17:34:19.275777 2013] [ssl:warn] [pid 5888:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 17:34:19.335780 2013] [mpm_winnt:notice] [pid 5888:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:32:39.085771 2013] [core:error] [pid 5888:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:64721] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:34:14.186210 2013] [core:error] [pid 5888:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:64749] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:34:24.537802 2013] [core:warn] [pid 4944:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:34:24.978828 2013] [ssl:warn] [pid 4944:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:34:25.037831 2013] [mpm_winnt:notice] [pid 4944:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:34:25.037831 2013] [mpm_winnt:notice] [pid 4944:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:34:25.037831 2013] [core:notice] [pid 4944:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:34:25.039831 2013] [mpm_winnt:notice] [pid 4944:tid 240] AH00418: Parent: Created child process 3028
[Tue Apr 23 20:34:26.348906 2013] [ssl:warn] [pid 3028:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:34:26.409909 2013] [mpm_winnt:notice] [pid 3028:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:34:51.883366 2013] [core:error] [pid 3028:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:64754] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:35:12.398540 2013] [core:error] [pid 3028:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:64758] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:36:55.135416 2013] [core:warn] [pid 284:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:36:55.622444 2013] [ssl:warn] [pid 284:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:36:55.680447 2013] [mpm_winnt:notice] [pid 284:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:36:55.680447 2013] [mpm_winnt:notice] [pid 284:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:36:55.681447 2013] [core:notice] [pid 284:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:36:55.683447 2013] [mpm_winnt:notice] [pid 284:tid 240] AH00418: Parent: Created child process 1568
[Tue Apr 23 20:36:57.006523 2013] [ssl:warn] [pid 1568:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:36:57.069527 2013] [mpm_winnt:notice] [pid 1568:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:36:59.966692 2013] [core:error] [pid 1568:tid 1700] (20024)The given path is misformatted or contained invalid characters: [client ::1:64953] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:37:32.103530 2013] [core:error] [pid 1568:tid 1700] (20024)The given path is misformatted or contained invalid characters: [client ::1:65029] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:38:19.653250 2013] [core:error] [pid 1568:tid 1700] (20024)The given path is misformatted or contained invalid characters: [client ::1:65122] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:38:29.482812 2013] [core:warn] [pid 5628:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:38:30.015843 2013] [ssl:warn] [pid 5628:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:38:30.071846 2013] [mpm_winnt:notice] [pid 5628:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:38:30.071846 2013] [mpm_winnt:notice] [pid 5628:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:38:30.071846 2013] [core:notice] [pid 5628:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:38:30.073846 2013] [mpm_winnt:notice] [pid 5628:tid 240] AH00418: Parent: Created child process 276
[Tue Apr 23 20:38:31.509928 2013] [ssl:warn] [pid 276:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:38:31.567932 2013] [mpm_winnt:notice] [pid 276:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:38:41.340491 2013] [core:error] [pid 276:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:65149] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:39:17.377552 2013] [core:warn] [pid 3536:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:39:17.793576 2013] [ssl:warn] [pid 3536:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:39:17.851579 2013] [mpm_winnt:notice] [pid 3536:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:39:17.851579 2013] [mpm_winnt:notice] [pid 3536:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:39:17.851579 2013] [core:notice] [pid 3536:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:39:17.853579 2013] [mpm_winnt:notice] [pid 3536:tid 240] AH00418: Parent: Created child process 6816
[Tue Apr 23 20:39:19.190655 2013] [ssl:warn] [pid 6816:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:39:19.249659 2013] [mpm_winnt:notice] [pid 6816:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:39:24.925984 2013] [core:error] [pid 6816:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:65195] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:40:55.332154 2013] [core:warn] [pid 872:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:40:55.747178 2013] [ssl:warn] [pid 872:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:40:55.829183 2013] [mpm_winnt:notice] [pid 872:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:40:55.829183 2013] [mpm_winnt:notice] [pid 872:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:40:55.829183 2013] [core:notice] [pid 872:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:40:55.833183 2013] [mpm_winnt:notice] [pid 872:tid 240] AH00418: Parent: Created child process 472
[Tue Apr 23 20:40:57.131257 2013] [ssl:warn] [pid 472:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:40:57.190261 2013] [mpm_winnt:notice] [pid 472:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:41:06.979821 2013] [core:error] [pid 472:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:65312] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:44:10.180299 2013] [core:warn] [pid 2200:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:44:10.622324 2013] [ssl:warn] [pid 2200:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:44:10.678328 2013] [mpm_winnt:notice] [pid 2200:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:44:10.678328 2013] [mpm_winnt:notice] [pid 2200:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:44:10.678328 2013] [core:notice] [pid 2200:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:44:10.680328 2013] [mpm_winnt:notice] [pid 2200:tid 240] AH00418: Parent: Created child process 6040
[Tue Apr 23 20:44:12.031405 2013] [ssl:warn] [pid 6040:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:44:12.090408 2013] [mpm_winnt:notice] [pid 6040:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:44:15.636611 2013] [core:error] [pid 6040:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:65525] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:44:31.942544 2013] [core:error] [pid 6040:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:49155] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:45:16.679103 2013] [core:warn] [pid 4244:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:45:17.122128 2013] [ssl:warn] [pid 4244:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:45:17.207133 2013] [mpm_winnt:notice] [pid 4244:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:45:17.207133 2013] [mpm_winnt:notice] [pid 4244:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:45:17.207133 2013] [core:notice] [pid 4244:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:45:17.211133 2013] [mpm_winnt:notice] [pid 4244:tid 240] AH00418: Parent: Created child process 6496
[Tue Apr 23 20:45:18.525208 2013] [ssl:warn] [pid 6496:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:45:18.583212 2013] [mpm_winnt:notice] [pid 6496:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:45:33.530066 2013] [core:error] [pid 6496:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:49172] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:46:42.540014 2013] [core:warn] [pid 5976:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 20:46:42.979039 2013] [ssl:warn] [pid 5976:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:46:43.034042 2013] [mpm_winnt:notice] [pid 5976:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 20:46:43.035042 2013] [mpm_winnt:notice] [pid 5976:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 20:46:43.035042 2013] [core:notice] [pid 5976:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 20:46:43.036042 2013] [mpm_winnt:notice] [pid 5976:tid 240] AH00418: Parent: Created child process 6624
[Tue Apr 23 20:46:44.366118 2013] [ssl:warn] [pid 6624:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 20:46:44.423121 2013] [mpm_winnt:notice] [pid 6624:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 20:46:59.623991 2013] [core:error] [pid 6624:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:49197] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:47:02.594161 2013] [core:error] [pid 6624:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:49197] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 20:47:12.811745 2013] [core:error] [pid 6624:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:49206] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:38:41.541319 2013] [core:warn] [pid 6272:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 22:38:41.953342 2013] [ssl:warn] [pid 6272:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:38:42.007345 2013] [mpm_winnt:notice] [pid 6272:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 22:38:42.007345 2013] [mpm_winnt:notice] [pid 6272:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 22:38:42.007345 2013] [core:notice] [pid 6272:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 22:38:42.009345 2013] [mpm_winnt:notice] [pid 6272:tid 240] AH00418: Parent: Created child process 4936
[Tue Apr 23 22:38:43.359423 2013] [ssl:warn] [pid 4936:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:38:43.420426 2013] [mpm_winnt:notice] [pid 4936:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 22:39:18.122411 2013] [core:error] [pid 4936:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:54857] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:43:27.934699 2013] [core:error] [pid 4936:tid 1724] (20024)The given path is misformatted or contained invalid characters: [client ::1:54969] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:47:28.659468 2013] [core:warn] [pid 4160:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 22:47:29.134495 2013] [ssl:warn] [pid 4160:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:47:29.189498 2013] [mpm_winnt:notice] [pid 4160:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 22:47:29.189498 2013] [mpm_winnt:notice] [pid 4160:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 22:47:29.189498 2013] [core:notice] [pid 4160:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 22:47:29.191498 2013] [mpm_winnt:notice] [pid 4160:tid 240] AH00418: Parent: Created child process 3168
[Tue Apr 23 22:47:30.498573 2013] [ssl:warn] [pid 3168:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:47:30.556576 2013] [mpm_winnt:notice] [pid 3168:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 22:47:42.045234 2013] [core:error] [pid 3168:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55058] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:49:11.673360 2013] [core:warn] [pid 788:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 22:49:12.185389 2013] [ssl:warn] [pid 788:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:49:12.272394 2013] [mpm_winnt:notice] [pid 788:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 22:49:12.272394 2013] [mpm_winnt:notice] [pid 788:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 22:49:12.272394 2013] [core:notice] [pid 788:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 22:49:12.276394 2013] [mpm_winnt:notice] [pid 788:tid 240] AH00418: Parent: Created child process 5644
[Tue Apr 23 22:49:13.547467 2013] [ssl:warn] [pid 5644:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:49:13.602470 2013] [mpm_winnt:notice] [pid 5644:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 22:49:19.350799 2013] [core:error] [pid 5644:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55070] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:49:33.724621 2013] [core:error] [pid 5644:tid 1724] (20024)The given path is misformatted or contained invalid characters: [client ::1:55071] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:50:36.196194 2013] [core:warn] [pid 5212:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 22:50:36.654221 2013] [ssl:warn] [pid 5212:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:50:36.708224 2013] [mpm_winnt:notice] [pid 5212:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 22:50:36.709224 2013] [mpm_winnt:notice] [pid 5212:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 22:50:36.709224 2013] [core:notice] [pid 5212:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 22:50:36.711224 2013] [mpm_winnt:notice] [pid 5212:tid 240] AH00418: Parent: Created child process 1176
[Tue Apr 23 22:50:38.087303 2013] [ssl:warn] [pid 1176:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:50:38.148306 2013] [mpm_winnt:notice] [pid 1176:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 22:50:52.756142 2013] [core:error] [pid 1176:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55080] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:52:35.951044 2013] [core:warn] [pid 6328:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 22:52:36.397070 2013] [ssl:warn] [pid 6328:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:52:36.476074 2013] [mpm_winnt:notice] [pid 6328:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 22:52:36.476074 2013] [mpm_winnt:notice] [pid 6328:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 22:52:36.476074 2013] [core:notice] [pid 6328:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 22:52:36.480074 2013] [mpm_winnt:notice] [pid 6328:tid 240] AH00418: Parent: Created child process 5432
[Tue Apr 23 22:52:37.816151 2013] [ssl:warn] [pid 5432:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:52:37.874154 2013] [mpm_winnt:notice] [pid 5432:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 22:52:45.787607 2013] [core:error] [pid 5432:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55102] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:52:55.406157 2013] [core:error] [pid 5432:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55105] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:53:36.684518 2013] [core:warn] [pid 4564:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 22:53:37.112542 2013] [ssl:warn] [pid 4564:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:53:37.167545 2013] [mpm_winnt:notice] [pid 4564:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 22:53:37.167545 2013] [mpm_winnt:notice] [pid 4564:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 22:53:37.167545 2013] [core:notice] [pid 4564:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 22:53:37.169546 2013] [mpm_winnt:notice] [pid 4564:tid 240] AH00418: Parent: Created child process 1704
[Tue Apr 23 22:53:38.555625 2013] [ssl:warn] [pid 1704:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 22:53:38.611628 2013] [mpm_winnt:notice] [pid 1704:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 22:53:48.897216 2013] [core:error] [pid 1704:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55126] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 22:59:16.053929 2013] [core:error] [pid 1704:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55207] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 23:21:10.635118 2013] [core:error] [pid 1704:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55284] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF'];?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test3.php
[Tue Apr 23 23:26:11.251313 2013] [core:error] [pid 1704:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:55408] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php
[Tue Apr 23 23:51:46.000720 2013] [core:warn] [pid 6260:tid 240] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 23 23:51:46.495748 2013] [ssl:warn] [pid 6260:tid 240] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 23:51:46.550751 2013] [mpm_winnt:notice] [pid 6260:tid 240] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 configured -- resuming normal operations
[Tue Apr 23 23:51:46.550751 2013] [mpm_winnt:notice] [pid 6260:tid 240] AH00456: Server built: Aug 18 2012 12:41:37
[Tue Apr 23 23:51:46.550751 2013] [core:notice] [pid 6260:tid 240] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Tue Apr 23 23:51:46.552751 2013] [mpm_winnt:notice] [pid 6260:tid 240] AH00418: Parent: Created child process 4288
[Tue Apr 23 23:51:47.934830 2013] [ssl:warn] [pid 4288:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 23 23:51:47.991833 2013] [mpm_winnt:notice] [pid 4288:tid 252] AH00354: Child: Starting 150 worker threads.
[Tue Apr 23 23:51:57.692388 2013] [core:error] [pid 4288:tid 1732] (20024)The given path is misformatted or contained invalid characters: [client ::1:56118] AH00127: Cannot map POST /xampp/%3C?echo%20$_SERVER['PHP_SELF']?%3E HTTP/1.1 to file, referer: http://localhost/xampp/test2.php

the log is from the desktop and the access log is to long I'm afraid
loord
 
Posts: 4
Joined: 23. April 2013 21:56
Operating System: Windows

Re: Error 403

Postby Altrea » 24. April 2013 05:13

loord wrote:the files are saved in C:\xampp\htdocs\xampp

Don't save your own files in that folder. Create your own folder in htdocs because the xampp folder in it is just for some sensitive parts of the xampp administration page. That's the reason why this folder is protected in the httpd-xampp.conf against external accesses.

For security reasons please undo all changes you made in the httpd-xampp.conf. They are not necessary for own created folders in htdocs.

The real reason for your issue is your action attribute of your form. <?echo is not supported by the current php configuration. Use <?php echo instead or the short term. <?= (without the word echo because the = is equivalent for it)

Best wishes,
Altrea

P. S.
We ask for the full error message (independent of the language) because it makes a huge difference between a new xampp security concept 403 error and the normal one. The internet knows some great tools to translate such messages we or you could have been used. An image is not searchable so that it not the best way to post such a message.

We ask for the access.log because especially for request issues it contains very helpful messages which makes providing help much easier and quicker. We don't need the full file but the last 10, maybe 15 lines after the misleading request.
We don't provide any support via personal channels like PM, email, Skype, TeamViewer!

It's like porn for programmers 8)
User avatar
Altrea
AF Moderator
 
Posts: 11926
Joined: 17. August 2009 13:05
XAMPP version: several
Operating System: Windows 11 Pro x64

Re: Error 403

Postby loord » 24. April 2013 07:24

Thanks for your help
loord
 
Posts: 4
Joined: 23. April 2013 21:56
Operating System: Windows


Return to XAMPP for Windows

Who is online

Users browsing this forum: No registered users and 101 guests