Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
Pages: [1]
Send this topic | Print
Topic: After i write a html and save it what do id then?  (Read 4991 times)
« on: July 26, 2005, 06:14:21 PM »
badsanta170 Offline
Newbie

View Profile
*
Posts: 2



after i make an html then save it where do i put it?
Report to moderator   Logged

 
« Reply #1 on: July 30, 2005, 05:03:28 PM »
Junior Member
Toks Offline
Junior Member
Newbie

View Profile
*
Posts: 36



after i make an html then save it where do i put it?

Depends whether you're on freehosting or paidhosting.

FreeHosting
After you make an HTML file. (with .html OR .htm as the file extension) all you need to do is login to your T35 account and upload it.

PaidHosting
For paid hosting you need to upload it to this folder: /public_html/
Report to moderator   Logged

TD : Domains
.com  .net  .org  .biz  .info  .us  .name
Domains from £2
« Reply #2 on: December 14, 2005, 03:34:58 PM »
meiji Offline
Newbie

View Profile
*
Posts: 1



and then?  huh I'm so confused! I uploaded it but I don't know how can I make it my index page so that when someone accesses the site: http://mysite.t35.com , this html can be shown? helppppppppppp me plzzzzzzzzzzzzzzzzzzz ^^
Report to moderator   Logged
« Reply #3 on: December 14, 2005, 03:52:43 PM »
bile Offline
Jr. Member

View Profile WWW
**
Posts: 70



did you name the home page "index.html" or "index.html"?  if you don't, then people wont be able to access it by just typing in http://mysite.t35.com they will need to type in "http://mysite.t35.com/page.html" or "http://mysite.t35.com/page.htm"

So if you have it named something else, change the file name to either:

index.html
index.htm
index.php
Report to moderator   Logged


Browser :: Mozilla FireFox 1.5
Resolution :: 1152x864
Internet Connection :: 2MB Cable Modem
« Reply #4 on: December 18, 2005, 12:49:25 PM »
quoclm Offline
Newbie

View Profile
*
Posts: 1



i've upload file index.html.when i run it in  my computer it's okie,but when i run it on internet it's not active.why???i've upload all file of it. http://quoclm.t35.com
Report to moderator   Logged
« Reply #5 on: December 20, 2005, 12:44:31 PM »
Headbanger in Training
tpgames Offline
Member

View Profile WWW
***
Posts: 170



I see it on my browser. All the links seem to work too. Cool website!  You do need to close the annoying ad though before you can see the site. wink
Report to moderator   Logged

TPGames jaunting off to reconsider her career choice...Headbanging.
It's what you do when you are a webmaster. LOL
Or what people do to my head, after I make a big mistake!
« Reply #6 on: December 21, 2005, 05:09:42 PM »
vikong Offline
Newbie

View Profile
*
Posts: 1



Free Hosting
I have same problem too!
My homepage file name is:index.html.
But I can't visit my website through http://vikong.t35.com nor http://vikong.t35.com/index.html.
Please help me!Thanks!
« Last Edit: December 21, 2005, 05:14:36 PM by vikong » Report to moderator   Logged
« Reply #7 on: December 24, 2005, 10:23:24 PM »
myuusmeow Offline
Newbie

View Profile WWW
*
Posts: 16



Free Hosting
I have same problem too!
My homepage file name is:index.html.
But I can't visit my website through http://vikong.t35.com nor http://vikong.t35.com/index.html.
Please help me!Thanks!
It works perfectly.
Report to moderator   Logged
« Reply #8 on: December 30, 2005, 11:24:51 AM »
bile Offline
Jr. Member

View Profile WWW
**
Posts: 70



Everyone's works fine for me.

I would suggest that if you can't view it, try viewing it on another browser.

I viewed you stuff on Mozilla FireFox
Report to moderator   Logged


Browser :: Mozilla FireFox 1.5
Resolution :: 1152x864
Internet Connection :: 2MB Cable Modem
« Reply #9 on: February 09, 2006, 10:28:33 AM »
nxi Offline
Newbie

View Profile
*
Posts: 4



Great tips!
I  looked forever to find a way to get nxi.t35.com/main.html to be auto-loaded.
I just made a index.html that redirects to main.html.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Please wait...</title>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html"></HEAD>
<BODY>

Loading. Please wait...
</BODY>
</HTML>
Report to moderator   Logged
« Reply #10 on: May 02, 2006, 02:30:09 PM »
pokeworld
Guest

Great tips!
I  looked forever to find a way to get nxi.t35.com/main.html to be auto-loaded.
I just made a index.html that redirects to main.html.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Please wait...</title>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html"></HEAD>
<BODY>

Loading. Please wait...
</BODY>
</HTML>
Theres a better way, use this code
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Please wait...</title>
<script type="text/javascript">
<!--
window.location.replace="main.html";
-->
</script>
<NOSCRIPT>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html">
</NOSCRIPT>
</head>
<body>
Loading... Please Wait
</body>
</html>

The
Code:
<script type="text/javascript">
<!--
window.location.replace="main.html";
-->
</script>
makes the main.html page replace index.html.
This code is better than meta because it dosen't break the back button and doesn't make a sound to show the page has been redirected.
This part only works if the browser supports Javascript.

The
Code:
<NOSCRIPT>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html">
</NOSCRIPT>
is for browser which DON'T support Javascript. Browsers which support Javascript ignore the meta tag and use the replace tecnique.

(I don't know if it validates through W3C because I haven't done that, I just use index.html, but validation won't matter on the redirect page, just on the main page)
Report to moderator   Logged
 
Pages: [1]
Send this topic | Print
Jump to:  

Powered by SMF | SMF © 2006-2008, Simple Machines LLC