Hi i need to input the Directory Location in to install a file but im unsure what it is. i know the file is in /htdocs/video. They give the surgestion of i.e. /var/www/html/path or /home/mysoftwo/public_html any ideas
hey here is the code ... just make php file upload it to the directory you want to find path and run it <?php $path = dirname(__FILE__)."/"; $path = str_replace("\\", "/", $path); ?> <html> <head> <title>Find the path</title> </head> <body> <p>Directory path : </p> <pre><?php echo $path; ?></pre> </body> </html> Code (markup): Enjoy
Do you need to type the exact path to your directory on the server somewhere in the installer ? ... If so then just use that script I posted and it will show you the exact path and you just copy/paste into installer and thats it ...
Thanks it worked a treat now all i need to do is work out how to change the look so it fits in with my site.