I own a server with several accounts on them.
I manage all of the accounts from a master account.
At the moment all of the other accounts get set stuff (from the main account) using php’s ftp functions which works fine.
However now i need to search a folder on the other accounts and make thumbnails of images the script finds.
Question: Can/How can I allow php to have access out of its own folder??
/home/main_account/public_html/script.php
script then checks these folders
/home/acc1/public_html/images/ <– makes thumbnails (so read and write)
/home/acc2/public_html/images/ <– makes thumbnails (so read and write)
etc
Cheers Guys