Find Absolute Path Of A File Or Directory Using PHP
The absolute path for a file or directory is not the same as the URI. The absolute path on the web server is/home/DIR/Xs/something/mydir/. Here is how to find the absolute path on your web host for a given directory if you can’t find it, or it isn’t shown, in your web hosts control panel.
- Copy and paste the following code into a text file (take out the space between the less than sign and the question mark):
< ?php
$getPath = getcwd();
echo $getPath;
?> - Save the file as a PHP file, say abspath.php.
- Upload the file into the root directory, or a sub-directory, of your website.
- In your web browser, go to http://www.mysite/abspath.php (or wherever you saved the file to)
Related posts:
- Simple file upload script using php
- Finding size of a directory using php
- Search Plugin
- Fix the problem in getting 500 Internal Server Error In Localhost Due To .htaccess
- File System Reference In PHP
- Fatal error: Checking if a package is enabled for an invalid package ’3′ on line 392 in [path]/vb/types.php in [path]/vb/vb.php on line 287
- Custom Error Pages Using .htaccess
