DNS domain name help!

03moscropl

Flash Freak
Messages
698
Reaction score
0
Points
0
i have brought a domain name and i have had my cpanel account changed to dragongamer.net but when i type in dragongamer.net/cpanel noting happens do i need to change the name servers or something!
 

n4tec

Active Member
Messages
3,312
Reaction score
0
Points
36
I have checked and you have the correct nameservers. i can alos view the cpanel login @ your domain via dragongamer.net/cpanel and www.dragongamer.net/cpanel with not problem..
 

03moscropl

Flash Freak
Messages
698
Reaction score
0
Points
0
that s great it must of took some time for dns. but in my case half and hour!
 

n4tec

Active Member
Messages
3,312
Reaction score
0
Points
36
03moscropl said:
that s great it must of took some time for dns. but in my case half and hour!

when did you change the nameservers for your domain?
 
Last edited:

03moscropl

Flash Freak
Messages
698
Reaction score
0
Points
0
about an hour ago.


ps do you know the script were you get redirected from a page to another

eg

dragongamer.net to dragongamer.net/site
 

n4tec

Active Member
Messages
3,312
Reaction score
0
Points
36
03moscropl said:
about an hour ago.


ps do you know the script were you get redirected from a page to another

eg

dragongamer.net to dragongamer.net/site

You need to create a index.html and then upload it to root folder your site..

here is the code to use..
Code:
<html>
<head>
<meta name="author" content="drangongamer">
<meta http-equiv="refresh" content="2;url=http://dragongamer.net/site/">
</head>
<body bgcolor=#ffffff>
</body>
</html>

Or you can use the code below:-

Code:
<html>
<head>
<meta name="author" content="drangongamer">
<meta http-equiv="refresh" content="2;url=/site/">
</head>
<body bgcolor=#ffffff>
</body>
</html>

meta
This is the actual HTML tag. It belongs in the <head> of your HTML document. You can learn more about the meta tag in my tag library.

http-equiv="refresh"
This attribute tells the browser that this meta tag is sending an HTTP command rather than a standard meta tag. Refresh is an actual HTTP header used by the Web server. It tells the server that the page is going to be reloaded or sent somewhere else.

content="2"
This is the amount of time, in seconds, until the browser should reload the current page.
 
Last edited:

TheSeer

New Member
Messages
52
Reaction score
0
Points
0
or, you could have index.php and have in it
<?
header("Location: site/");
?>
might have to put a preceeding "/" before site though.
 
Top