I have a file uploader on two pages. One loads to a directory that is in the same place:
Page.php
|- Folder that it Uploads to
But my other uploader needs to upload to a directory higher than itself.
|- Folder that it needs to Upload to
|- Some other folder
...|- Page.php
In the first one.. it uploads to the path, such as:
$uploadpath = 'folder/'
But I cant get the second one to upload right.. I get errors. I have tried:
$uploadpath = 'http://www.site.com/folder/realfolder/'
$uploadpath = '../folder/realfolder/'
$uploadpath = '/folder/realfolder/'
$uploadpath = 'folder/realfolder/'
But with no success...