Howto find your absolute path
Posted: Fri Feb 01, 2008 3:16 am
take notepad or any other text editor and insert:
and save as detection.php (or first as txt and rename to detection.php) and upload it to the root directory of your site with ftp.
run: http://yoursitenamexyz.com/detection.php and you have your absolute path
cheers
Leo
Code: Select all
<?php
$p = getcwd();
echo $p;
?>
run: http://yoursitenamexyz.com/detection.php and you have your absolute path
cheers

Leo