How to find the correct spelling and path for your files, missing images

When you get a 404 error, check the URL in your browser. This tells you the path and file name that cannot be found.

Example:
http://yourdomain.com/astro/Astros/help.html


The file must be in public_html/astro/Astros/ and the names are case-sensitive.

For addon domains, the file must be in public_html/addondomain.com/astro/Astros/ and the names are case-sensitive.


Broken Image
When you have a missing image, go to IE and view your website. You will see a box with a red X where the image is missing. Right click on the X and choose Properties. The properties will tell you the path and file name that cannot be found.

Example:
http://yourdomain.com/images/banner.PNG


The image file must be in public_html/images/ and the names are case-sensitive.

For addon domains, the image file must be in public_html/addondomain.com/images/ and the names are case-sensitive.

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

Adjusting the file upload or post size

If you are using a PHP script and want to increase the "post size" or the "size of a file I can...

How to use sendmail with PHP

Here is the magical line of code which tells PHP to send an email through your mail server....

403 Forbidden or No Permission to Access

The top reasons for this error are permissions or .htaccess error. Permissions The 403...

404 error page

404 means the file is not found. If you already uploaded the file, then either the name is...

allow_url_fopen, how to enable

This can be done via your php.ini file by adding the following line: allow_url_fopen = On The...