How to find your absolute path: Difference between revisions
From Joomla! Documentation
No edit summary |
No edit summary |
||
| Line 12: | Line 12: | ||
==== Usage ==== | ==== Usage ==== | ||
To find out what your absolute path is<ref>[http:// | To find out what your absolute path is<ref>[http://joomlatutorials.com/joomla-tips-and-tricks/40-miscellaneous-joomla-tips/110-finding-your-absolute-path.html Finding your absolute path in Joomla! 1.0.x] Joomlatutorials</ref>, copy the following code into a text editor (i.e. Notepad, TextEdit etc), save the file as a .php naming it whatever you want (i.e anyfilename.php.). | ||
Using your FTP software, ftp the file you have just created to your root folder. Open a web browser and type in http://www.yourdomain.com/filename.php. | Using your FTP software, ftp the file you have just created to your root folder. Open a web browser and type in http://www.yourdomain.com/filename.php. | ||
Revision as of 05:34, 11 March 2009
Using Joomla Find Your Absolute Path
What is the absolute path?
The absolute path is the directory location on a server's hard drive where Joomla! is located.
Joomla! 1.0.x
In Joomla! v.1.0.x the configuration.php file would be something like the following, however, it can vary depending on your server.
$mosConfig_absolute_path = '/home/joomla/public_html';
Usage
To find out what your absolute path is[1], copy the following code into a text editor (i.e. Notepad, TextEdit etc), save the file as a .php naming it whatever you want (i.e anyfilename.php.).
Using your FTP software, ftp the file you have just created to your root folder. Open a web browser and type in http://www.yourdomain.com/filename.php.
<?php $path = getcwd(); echo "Your Absoluthe Path is: "; echo $path; ?>
IMPORTANT: For security reasons, delete this file as soon as you have ascertained the information you require.
Joomla! 1.5.x
In Joomla! v.1.5.x the absolute path is set in the index.php (line 17) file in the base directory to the constant JPATH_BASE.
define('JPATH_BASE', dirname(__FILE__) );
Usage
Use the constant JPATH_BASE. This constant returns the absolute path to your Joomla! installation directory.
<?php echo JPATH_BASE; ?>
See Also
Absolute Path for Joomla! 1.0.x
References
- ↑ Finding your absolute path in Joomla! 1.0.x Joomlatutorials