Posts: 1,832
Location: Somewhere else entirely
|
If your pages are written soley in HTML and all your links are relative, you shouldn't have a problem testing them locally straight out of your filesystem. (Ie your links all look like <a href="somefile.html">link</a>, and that file is also on your HD, at the right relative path from the page the link is in).
If you have absolute links (<a href="http://www.yourdomain.com/somefile.html">link</a>) then it will go looking on your domain and not find anything since you haven't put anything there yet.
If your pages employ any kind of serverside scripting language such as PHP or ASP, you will have to run a local webserver to test it, or upload and test that way.
For my local testing I use xampp which is a combined package with Apache, MySQL, PHP and PERL all in one easy to install package (you'll need something else if it's not PHP or PERL you want).
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|