Fixed it! Maybe it helps someone: instructions to find your absolute path:
Here is what you can use for the php script to find the absolute path:
<?php
$path = getcwd();
echo "This Is Your Absolute Path: ";
echo $path;
?>
Save the above file as findpath.php. It is important that you use '.php' (without the quotes) in the file name as you are making a php script file.
You now need to upload this file to your web server. Put this file in the public_html folder of your web server. This will be the root directory of your domain. If you have sub-domains inside that root directory with additional Joomla! installs you will need to put it into the appropriate folder. For the most part, if you only have one domain being served by your web hosting service, it will go in the public_html folder.
To invoke this script and find the absolute path for your Joomla! installation all you need to do is type in your browser window:
http://www.yourdomainname.com/findpath.php
Thanks!
Posted 13 years ago on Tuesday November 22, 2011 |
Permalink