Finding out the correct absolute path to the root of your install
----------------------------------------------------------------------
To find out the full pathway to the root of your install do this:
1. Create a new text document on your desktop and name it cwd.php. Ignore the warning about changing the file type.
2. Put this code into it:
Code:
<?php
$p = getcwd();
echo $p;
?>
3. Upload it to the root of your install via FTP.
4. Go to http://www.yourdomain.com/cwd.php via your browser and printed on the screen will be the full pathway to the root of your install. Edit this pathway if you have installed inside a folder e.g. www.yourdomain.com/catalog/
5. Write down that pathway and then delete the cwd.php file from your hosting.
Vger