graphics not loading

 
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions
View previous topic :: View next topic  
Author Message
guppy75
-


Joined: 20 Aug 2004
Posts: 4

PostPosted: Fri Aug 20, 2004 11:26 pm    Post subject: graphics not loading Reply with quote

i've seen this issue raised before, but no answers that have helped. none of my graphics will load when accessing pages via the net. for an example, have a look at http://www.cope.net.nz

the images display just fine if i use http://127.0.0.1/cope/

i'm using dynamic dns (dyndns.org) to direct traffic to my site, but no funky port specification, just the default port 80

i've tried uninstalling ver 1.2 and installing 1.1, but this makes no difference. the allowed MIME types include jpgs

i've tried changing the html from <img src="paralogo.jpg" border=0> to <img src="http://www.cope.net.nz/paralogo.jpg" border=0> and it makes no difference.

any suggestions appreciated. i have 5 sites to get up and running. tearing my hair out seems like a viable option right now.
Back to top View user's profile Send private message
mrblue
-


Joined: 24 Feb 2004
Posts: 27

PostPosted: Sat Aug 21, 2004 12:20 am    Post subject: Reply with quote

try using http://www.no-ip.com i find them to be alot better and it could be a problem to do with your rediret service do the pictures show up when you go to http://yourip/cope/
_________________
WolframHartLA - Angel Forums and general sci-fi
Back to top View user's profile Send private message Visit poster's website
senshi
-


Joined: 05 Nov 2003
Posts: 385
Location: UK

PostPosted: Sat Aug 21, 2004 2:50 am    Post subject: Reply with quote

Quote:
Error 404
Not Found



--------------------------------------------------------------------------------
Abyss Web Server X1
© Aprelium Technologies - 2001-2002


when I extracted the images URL I put it into my browser and tried to view the image directly and got the above error.

Seems that the issue is your end and I would say that you need to check the HTML and the method that your using to reference the image too, it is important that the image file is relative to the web root and that the link info does not point to the file using the file:// call in the HTML, if it does, you need to correct the error.

Another problem is sometimes due to image size, if the image is too big, the viewers browser may drop the image because it too large or got dropped because the request timed out.

I would say on the face of it that the issue is a URL referencing one.
Back to top View user's profile Send private message
guppy75
-


Joined: 20 Aug 2004
Posts: 4

PostPosted: Sat Aug 21, 2004 3:43 am    Post subject: Reply with quote

thanks, but the image is there, in the same directory and the html is exactly as i posted it above. here's the whole file:

<html>
<head>
<title>CoPE</title>
</head>
<body bgcolor=black text=gray alink=gray vlink=gray link=gray>
<p align=center><font face="Verdana" size=6><a href="/test/index.htm">CoPE</a></font></p>
<center><img src="paralogo.jpg" border=0></center>
<table border=0 bgcolor=gray>
<tr>
<td>
<p><IMG SRC="http://homepages.paradise.net.nz:80/cgi-bin/count.cgi?cope01"></td>
</tr>
</table>

</body>
</html>

the jpg file is only 5kb, so it's not an issue of size.
i've also tried putting the entire file path: <img src="http://www.cope.net.nz/paralogo.jpg" border=0>, but again, the image doesn't load.

i've tried signing up to no-ip, but it'g going to take a while for the domain's dns to update.
Back to top View user's profile Send private message
guppy75
-


Joined: 20 Aug 2004
Posts: 4

PostPosted: Sat Aug 21, 2004 4:12 am    Post subject: Reply with quote

well, i've solved the problem. i installed another server (LiteServe) and now everything works just fine. i really like the console that comes with Abyss, but i just don't have the time to spend on getting it working properly. also LiteServe comes with multiple domain support, which i need, as well as an FTP server. thanks for the help tho.
Back to top View user's profile Send private message
senshi
-


Joined: 05 Nov 2003
Posts: 385
Location: UK

PostPosted: Sat Aug 21, 2004 10:08 am    Post subject: Reply with quote

Quote:
<IMG SRC="http://homepages.paradise.net.nz:80/cgi-bin/count.cgi?cope01">


Should really be <IMG SRC="/cgi-bin/count.cgi?cope01"> because your using an external reference, something I said that you need to check and you obviously misunderstood what relative path means.

If you tried the above instead of the full URL, you would have seen a difference, also you specify port 80 in the URL, not needed unless your ISP runs proxy servers to mask your connect. any path you specify in a server from the web root (htdocs) should be referenced without the network address and just the path after your servers address, example...

loose the :: http://homepages.paradise.net.nz:80 part of the address and use everything including the '/' after the address.

When you got some time, you will have to give it another go, you will soon see where you were going wrong. You may have had an error given off by the cgi script your using or the way it was set up.
Back to top View user's profile Send private message
guppy75
-


Joined: 20 Aug 2004
Posts: 4

PostPosted: Sat Aug 21, 2004 10:46 am    Post subject: Reply with quote

thanks, but that's not the image i'm having the problem with. the image you're referring to is the counter, which works fine. the code for the counter was supplied by the ISP that offers this script.

the image that was not showing was paralogo.jpg, which is a simple image file. it's sitting in the same directory as the index.html file. i tried referencing it as relative - <img src="paralogo.jpg"> and with the full path <img src="http://www.cope.net.nz/paralogo.jpg">. neither worked. when i set it to <img src="http://cope.net.nz/paralogo.jpg">, which still points to my old site, the image showed.

since i needed to get my sites working again (i have a lot of images on them) i've changed to another server, so if you go there now, you will see the image. the problem is not with the html, since as soon as i moved the files to the new server directory, all the image files were showing again. all i did was move the directories the files were in from the htdocs directory to the directory specified for the new server. i didn't make any changes to the files at all.

i'd still like to use Abyss, since it has features i like - such as configurable error pages, so if you have any ideas let me know. i realise it's going to be pretty difficult to suggest anything since i'm no longer running the software, but you never know.

btw, i've been designing websites for 8 years, and started out writing the code myself in notepad, so i do know how to link an image file. i realise (having worked in tech support for almost as long) that it's usually user error, but in this case i went over everything very carefully before posting my query.
Back to top View user's profile Send private message
TRUSTAbyss
-


Joined: 29 Oct 2003
Posts: 3752
Location: USA, GA

PostPosted: Sat Aug 21, 2004 11:09 am    Post subject: Reply with quote

LiteServe has Virtual Hosting so it comes to my attention that you where
probably trying out the ::Virtual Host Creator:: script , their are certain
rules for those scripts , their not real Virtual Hosts , read the main area.

Example:
Code:
<img src="/other_site/image.jpg">


My guess is that you wanted Virtual Hosting and you saw my GUI for
creating easy Virtual Hosts and you came to a stop , that image is
broken , well I got news for you , you didn't read the main page :(

Note: Abyss will serve any image you got , I can serve up PNG , GIF , JPG
and other files so that script is probably not configured correctly on your site


Last edited by TRUSTAbyss on Sat Aug 21, 2004 11:18 am; edited 1 time in total
Back to top View user's profile Send private message Visit poster's website
senshi
-


Joined: 05 Nov 2003
Posts: 385
Location: UK

PostPosted: Sat Aug 21, 2004 11:18 am    Post subject: Reply with quote

Yeah, You said it, you said the bit that you didnt tell us... Supplied by your ISP...

so you need to supply the URL in full to the counter your ISP has supplied.

You should have been given a URL to your personal counter, use that instead of a relative path, well if your using cgi, use the URL in the cgi script to the ISP supplied counter image.
Back to top View user's profile Send private message
TRUSTAbyss
-


Joined: 29 Oct 2003
Posts: 3752
Location: USA, GA

PostPosted: Sat Aug 21, 2004 11:36 am    Post subject: Reply with quote

I did some research and it was indeed the Virtual Hosting script , god im smart , if you look at
the two different URL's in my example below , you will see that one of the URL's are broken but
get this , thats the actual server IP Address so he was trying to get Virtual Hosting and failed
to configure the script. If people would read the docs I put they would get it to work. LateR!

Example: 203.167.187.201 (www.cope.net.nz)

when you compare these URL's , their both the same as the
actual Server IP because I did a ping , now using the paths
for the image with the IP and URL , see the difference.

http://www.cope.net.nz/paralogo.jpg (Not Broken)
http://203.167.187.201/paralogo.jpg (Broken)

why is the second broken , well thats because its a Virtual Host , stick
with Abyss man , I know why you switched and I want that feature also.
Back to top View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group