PHPretro Security_check_token

Teh-Epic

New Member
Jul 30, 2010
34
1
Well, everytime i go to mylink/ it leads me to mylink/security_check_token and it has that xampp security error. Well, usually u can delete the security_check_token and leave the mylink/ and then it leads u to the mylink/me But then the next day if u dont log out, and go to mylink/ it goes to mylink/security_check_token and then you delete the security_check_token part but then it just goes back to it and leaves the xampp security concept up... Can anyone help with that?
 

JayNZ

Member
Feb 22, 2011
78
7
Heres how to fix the message

Steps:
1) First go to your Xampp control panel
2) Click on explore
3) After click on the folder apache > conf > extra > httpd-xampp.conf
4)Replace

PHP:
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampplicenses|security|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    Deny 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/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
with
PHP:
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampplicenses|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    allow from all
        ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
5) Restart apache
6) That problem will be fixxed.
 

Users who are viewing this thread

Top