PDA

View Full Version : PHP uploading images onto my monster webspace


earthman
12-18-2006, 10:23 AM
Hello all,

Could someone please let me know the FULL directory for my folder "images" to allow users to upload photos using my PHP script etc. Im new to monster so not sure if the directories are the same.

My PHP script is fine, just need to know the full file directory for this server!

eg on old server it was.....

'/usr/local/psa/home/vhosts/mydomain.com/httpdocs/images/'

Cheers

McCoy
12-18-2006, 10:57 AM
Just use

dirname(__FILE__)

in your PHP script.

RDM
12-18-2006, 11:11 AM
You're going to want to use $_SERVER variable.


<?= $_SERVER['DOCUMENT_ROOT']; ?>



The directiory struction is as follows

/home/{USERNAME}/public_html/{PATH_TO_YOUR_FOLDERS}/

earthman
12-20-2006, 11:15 AM
So i take it this is the correct file upload directory path?

upload_dir = $_SERVER['DOCUMENT_ROOT']."/images/";

Thanks

RDM
12-20-2006, 12:32 PM
yep, that should work