PDA

View Full Version : anyone good with web hosting?



SonnHalter
March 26th, 2009, 04:20 PM
okay. I designed my website. all code is done. but.... when i'm uploading this file to my host my media (flash and images) won't show up because it located on my computer.

does anyone know how to transfer these files online so they will show up online?

beercz
March 26th, 2009, 04:21 PM
okay. I designed my website. all code is done. but.... when i'm uploading this file to my host my media (flash and images) won't show up because it located on my computer.

does anyone know how to transfer these files online so they will show up online?
In your code, what is the path to the images and flash movies?

sydbat
March 26th, 2009, 04:22 PM
okay. I designed my website. all code is done. but.... when i'm uploading this file to my host my media (flash and images) won't show up because it located on my computer.

does anyone know how to transfer these files online so they will show up online?Filezilla. In the repos.

And, as beercz mentions, make sure the file associations are correct when everything is uploaded.

SonnHalter
March 26th, 2009, 05:20 PM
i design on windows.

the files exampled are like c:user/documents/pictures/header.jpg

things liek that.
i need them online

i'm trying to use filezilla but its not going so good.

ubersolid
March 26th, 2009, 05:38 PM
Your path is
<img src="c:user/documents/pictures/header.jpg"
That will not work as you have noticed, you are referring to folder that is on your computer, but your code is pointing to that path on the server where you are hosting your page, and that folder does not exist there.
You need to make a folder, say "pictures" on the server, put your "header.jpg" inside that folder and fix your code to say
<img src="pictures/header.jpg">

That should work.

beercz
March 26th, 2009, 05:40 PM
I don't think this is the right thread for this put here goes ...

In your code where does the <img src .... /> tag point to?

It should be something like <img src="picture1.jpg" .... /> and not <img src="C:\Documents and Settings ...... \picture1.jpg" ... />

I think you may need to learn about relative and absolute paths.

Mods, perhaps this thread should be moved to a more appropriate forum where the OP can get more help.

Coreigh
March 26th, 2009, 05:42 PM
To clarify: in your webpage code do your links look like this:

file:///this folder/thatfolder/myflashfile.swf
or this:

C:\this folder\thatfolder\myflashfile.swf

if the DO then you need to learn about relative links.
see this:
http://www.extropia.com/tutorials/web_design/relative_absolute_links.html


The other poster is asking if you are having trouble uploading the files and suggesting to use an FTP program, which is a good idea if your host offer FTP access. Other wise just use the upload tool they offer.

EDIT: I see that many people caught this idea before I was able to post.

SonnHalter
March 26th, 2009, 06:52 PM
thx for the path. I already know about paths. I just didn't know where to put the files.

mrsteveman1
March 26th, 2009, 06:54 PM
What exactly is the problem? You can't get the files to upload to a webserver? Or you don't know how to configure the server to serve the pages?

SonnHalter
March 26th, 2009, 08:05 PM
...its solved now.