|
|
| Author | Message |
|---|
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Forums redirected Wed Sep 17, 2008 12:23 pm | |
| I am going to make forum.crocodileswamp.com link to these forums in a short while. If any of you are desperate to know the code I am using, it is this: | Code: | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html>
<head> <title>Crocodile Swamp Forums</title> </head> <frameset rows="100%,*" border="0"> <frame src="http://crocodileswamp.forumotion.com" frameborder="0" /> <frame frameborder="0" noresize /> </frameset>
<!-- pageok --> <!-- 04 --> <!-- 7.9--> </html> |
it is alexigator's code, I got it from AHTF.info thanks alex  |
|
 | |
Crown Administrator


Number of posts: 647 Age: 13 Registration date: 2008-07-27
Member Information Crocodile Swamp Username: Crown Credits: Infinity! Infractions: 0
 | |
 | |
BT06 Adult Crocodile


Number of posts: 67 Registration date: 2008-08-17
 | Subject: Re: Forums redirected Wed Sep 17, 2008 6:29 pm | |
| You used the hard one. I use the simple one. I think that one may be a worse than the one I use. |
|
 | |
Momo Banned


Number of posts: 629 Registration date: 2008-08-15
Member Information Crocodile Swamp Username: Momo Credits: 4 Infractions: 0
 | Subject: Re: Forums redirected Wed Sep 17, 2008 7:28 pm | |
| Lol man Gratz on admin. Thats so cool that ur admin now! _________________ Hi, there!
|
|
 | |
Spencer Designer


Number of posts: 1473 Age: 13 Registration date: 2008-08-20
Member Information Crocodile Swamp Username: Spencer Credits: 5 Infractions: 0
 | Subject: Re: Forums redirected Wed Sep 17, 2008 7:36 pm | |
| Awesome. So, it will be redirected? _________________ <div align ='center'> HEY Guest! You half to check out bear forest, its a new RPG Game that is multiplayer, little membership prices, awesome people to play with and more! Even adopt your own eggs and see all the items weve made! </div> |
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Thu Sep 18, 2008 2:20 am | |
| | BT06 wrote: | | You used the hard one. I use the simple one. I think that one may be a worse than the one I use. |
I know, but when I put the skin on, I will be able to use the frame code to position the forums where I want them. |
|
 | |
Spencer Designer


Number of posts: 1473 Age: 13 Registration date: 2008-08-20
Member Information Crocodile Swamp Username: Spencer Credits: 5 Infractions: 0
 | Subject: Re: Forums redirected Thu Sep 18, 2008 7:18 am | |
| | Mr Reptile wrote: | | BT06 wrote: | | You used the hard one. I use the simple one. I think that one may be a worse than the one I use. |
I know, but when I put the skin on, I will be able to use the frame code to position the forums where I want them. |
K, so.... your going to redirect THESE forums to http://forum.crocodileswamp.com, or will http://forum.crocodileswamp.com redirect to this forum?_________________ <div align ='center'> HEY Guest! You half to check out bear forest, its a new RPG Game that is multiplayer, little membership prices, awesome people to play with and more! Even adopt your own eggs and see all the items weve made! </div> |
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Thu Sep 18, 2008 10:49 am | |
| i mean, when you go to forum.crocodileswamp.com, it will show you these forums. |
|
 | |
Snap Retired


Number of posts: 391 Age: 15 Registration date: 2008-07-31
Member Information Crocodile Swamp Username: Snap Credits: Infinity! Infractions: 0
 | Subject: Re: Forums redirected Mon Sep 22, 2008 2:04 pm | |
| when will the url be up? _________________ "If the facts don't fit the theory, change the facts." Albert Einstein Totally awesome siggy made by Joel go to his siggy shop Any questions, or concerns?feel free to email me at snapulicious@hotmail.com |
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Mon Sep 22, 2008 2:10 pm | |
| | Snap wrote: | | when will the url be up? |
don't know |
|
 | |
koolbob Baby Crocodile


Number of posts: 1 Registration date: 2008-09-06
 | Subject: Re: Forums redirected Mon Sep 22, 2008 9:54 pm | |
| Why don't you just use a PHP redirect code or a meta refresh that code i could have made in note pad in like 20 seconds lol and wont allow linking so you should just do a redirection its easy you just have to think DUH  well heres the code to make it redirect if you can use HTACCESS in the host here is the code | Code: | Redirect 301 forum/index.html http://crocodileswamp.forummotion.com/ |
if you prefer PHP
| Code: | <?php header( 'Location: http://crocodileswamp.forummotion.com/' ) ; ?>
|
or if your a web n00b and use HTML here you go
| Code: | <META HTTP-EQUIV="refresh" CONTENT="seconds;URL=http://crocodileswamp.forummotion.com/"> |
here is one in javascript i recommended this one for you
| Code: | <script type="text/javascript"> <!-- window.location = "http://crocodileswamp.forummotion.com/" //--> </script>
|
|
|
 | |
Jman228 Overworked Crocodile


Number of posts: 595 Age: 13 Registration date: 2008-09-05
Member Information Crocodile Swamp Username: Jman228 Credits: 3 Infractions: 0
 | |
 | |
Twist Retired


Number of posts: 1961 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Ace+Twist Credits: 111 Infractions: 0
 | Subject: Re: Forums redirected Mon Sep 22, 2008 10:36 pm | |
| [quote="koolbob"]Why don't you just use a PHP redirect code or a meta refresh that code i could have made in note pad in like 20 seconds lol and wont allow linking so you should just do a redirection its easy you just have to think DUH  well heres the code to make it redirect if you can use HTACCESS in the host here is the code | Code: | Redirect 301 forum/index.html http://crocodileswamp.forummotion.com/ |
if you prefer PHP [code] _________________ <a href="http://cpbroadcast.forummotion.com"><img src="http://i523.photobucket.com/albums/w357/clubmonkeypics/cpb%20forum%20design/sigtwo.png"></a>
|
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Tue Sep 23, 2008 2:23 am | |
| | koolbob wrote: | Why don't you just use a PHP redirect code or a meta refresh that code i could have made in note pad in like 20 seconds lol and wont allow linking so you should just do a redirection its easy you just have to think DUH well heres the code to make it redirect
if you can use HTACCESS in the host here is the code
| Code: | Redirect 301 forum/index.html http://crocodileswamp.forummotion.com/ |
if you prefer PHP
| Code: | <?php header( 'Location: http://crocodileswamp.forummotion.com/' ) ; ?>
|
or if your a web n00b and use HTML here you go
| Code: | <META HTTP-EQUIV="refresh" CONTENT="seconds;URL=http://crocodileswamp.forummotion.com/"> |
here is one in javascript i recommended this one for you
| Code: | <script type="text/javascript"> <!-- window.location = "http://crocodileswamp.forummotion.com/" //--> </script>
|
|
I've already explained, I'm using HTML because PHP is soooo easy to hack. I could of used jaa, but i didn't. And mine has frame codes so I can position it on the page. |
|
 | |
Spencer Designer


Number of posts: 1473 Age: 13 Registration date: 2008-08-20
Member Information Crocodile Swamp Username: Spencer Credits: 5 Infractions: 0
 | Subject: Re: Forums redirected Tue Sep 23, 2008 8:43 am | |
| umm... u mean java or javascript? cause i can do javascript _________________ <div align ='center'> HEY Guest! You half to check out bear forest, its a new RPG Game that is multiplayer, little membership prices, awesome people to play with and more! Even adopt your own eggs and see all the items weve made! </div> |
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Tue Sep 23, 2008 10:56 am | |
| | Spencer wrote: | | umm... u mean java or javascript? cause i can do javascript |
I meant javascript. but HTML is what I use because that is what I am used to coding with  |
|
 | |
Spencer Designer


Number of posts: 1473 Age: 13 Registration date: 2008-08-20
Member Information Crocodile Swamp Username: Spencer Credits: 5 Infractions: 0
 | Subject: Re: Forums redirected Tue Sep 23, 2008 11:04 am | |
| | Mr Reptile wrote: | | Spencer wrote: | | umm... u mean java or javascript? cause i can do javascript |
I meant javascript. but HTML is what I use because that is what I am used to coding with  | html is an open source tho, so couldnt they hack that?(i mean the view source option )_________________ <div align ='center'> HEY Guest! You half to check out bear forest, its a new RPG Game that is multiplayer, little membership prices, awesome people to play with and more! Even adopt your own eggs and see all the items weve made! </div> |
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Tue Sep 23, 2008 11:07 am | |
| | Spencer wrote: | | Mr Reptile wrote: | | Spencer wrote: | | umm... u mean java or javascript? cause i can do javascript |
I meant javascript. but HTML is what I use because that is what I am used to coding with  | html is an open source tho, so couldnt they hack that?(i mean the view source option ) |
do you even know what open source means? |
|
 | |
Spencer Designer


Number of posts: 1473 Age: 13 Registration date: 2008-08-20
Member Information Crocodile Swamp Username: Spencer Credits: 5 Infractions: 0
 | Subject: Re: Forums redirected Tue Sep 23, 2008 11:18 am | |
| | Mr Reptile wrote: | | Spencer wrote: | | Mr Reptile wrote: | | Spencer wrote: | | umm... u mean java or javascript? cause i can do javascript |
I meant javascript. but HTML is what I use because that is what I am used to coding with  | html is an open source tho, so couldnt they hack that?(i mean the view source option ) |
do you even know what open source means? | yea, i mean the view source option on browsers_________________ <div align ='center'> HEY Guest! You half to check out bear forest, its a new RPG Game that is multiplayer, little membership prices, awesome people to play with and more! Even adopt your own eggs and see all the items weve made! </div> |
|
 | |
Mr Reptile Retired


Number of posts: 1672 Registration date: 2008-07-30
Member Information Crocodile Swamp Username: Superspy4 Credits: 0 Infractions: ◄none►
 | Subject: Re: Forums redirected Tue Sep 23, 2008 11:29 am | |
| | Spencer wrote: | | Mr Reptile wrote: | | Spencer wrote: | | Mr Reptile wrote: | | Spencer wrote: | | umm... u mean java or javascript? cause i can do javascript |
I meant javascript. but HTML is what I use because that is what I am used to coding with  | html is an open source tho, so couldnt they hack that?(i mean the view source option ) |
do you even know what open source means? | yea, i mean the view source option on browsers |
Not the same thing. |
|
 | |
|