try this:
make a info.php file with the code listed below and place it in your root:
PHP Code:
<?php
phpinfo();
?>
i wonder if it is extremly easy to find out what is someone's path and manipulate his(her) board. what i can do, is make a directory for dynamic content (let's call it "dynamic"), and put in an .htaccess file that has the line:
PHP Code:
ForceType application/x-httpd-php
in it. this will force all accesses from that directory to be processed as a PHP script. then I can just write a PHP script called, say, script (note, not script.php, just script), so if i call the path:
PHP Code:
http://domain.com/dynamic/script/this/is/all/fake/path/
after i call that path, i can check the variable $REQUEST_URI in PHP and strip off everything after /dynamic/script/, and that is the information i want...
you know what? all this info i found it on google.com.