Just to give a little background: I'm using Dreamweaver CS5 for coding php, XAMPP apache as a test server, and 000WebHost.com for free hosting for testing on a remote server.
I coded an application with a login form that requests images and stores them above webroot along with a few other secure files. All of the program works 100% perfectly on apache as my test server on my laptop. The second I copied the files to my remote server, any links attempting to access outside webroot are broken. I can get to my login page and a simple processing script that is under webroot, but not past it.
Why are my links suddenly broken? I triple checked that all of the relative paths are correct, using a file structure such as:
- Includes
- Images
- Secure
- public_html
from public_html, I used the file path: $path = '../Secure/test1.php';
Thanks for any help, I really need to finish this soon.