| Author |
Message |
GamePlayer
Nuclear Falcon
Joined: 18 Aug 2007 Posts: 2365
|
|
Some questions... |
|
Okay, how do you make a RSS feed of a blog or news?
And, how do I do a redirect according to browser version, different browsers, etc...
(I lost Skippet's answer to this)
Oh yes, is there a way to redirect people who have different screen resolutions?
|
|
| Tue Aug 28, 2007 3:53 am |
|
 |
Virtualism
Falcon

Joined: 17 Aug 2007 Posts: 379 Location: Nthrlndz |
|
|
|
1) Wordpress blogs already come with rss feeds
2) I wont call you a moron like i did with the other d00ts, but use google.
Add this between the head tags;
 |
 |
<script>
//Browser redirect Script- ? By Virtualism
//Not for use of non-c404 members
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
//if Firefox
if (browser_type=="Mozilla Firefox"&&browser_version>=1)
window.location.replace("http://mozilla.org")
//if NS 6
if (browser_type=="Netscape"&&browser_version>=5)
window.location.replace("http://netscape.org")
//if IE 4+
else if (browser_type=="Microsoft Internet Explorer"&&browser_version>=4)
window.location.replace("http://microsoft.com")
//if NS4+
else if (browser_type=="Netscape"&&browser_version>=4)
window.location.replace("http://www.netscape.com")
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
window.location="http://www.dynamicdrive.com"
</script> |
3) Again, google is your friend.
Another redirect script that simply redirects everyone
 |
 |
<META http-equiv="refresh" content=
"15; Url=http://www.december.com/html/spec/latin1.html"> |
|
|
| Tue Aug 28, 2007 9:54 am |
|
 |
GamePlayer
Nuclear Falcon
Joined: 18 Aug 2007 Posts: 2365
|
|
|
|
Thanks, that helps a lot. =).
|
|
| Tue Aug 28, 2007 6:44 pm |
|
 |
Virtualism
Falcon

Joined: 17 Aug 2007 Posts: 379 Location: Nthrlndz |
|
|
|
Im afraid i messed up with the browser redirect script because i use the latest stable firefox and it still says i dont have it. on another note, if you click on continue without changes, you still get redirected to the same page which tells you you do not have certified browzerz. ill try to fix it.
edit: i mean on your omega sitez.
|
|
| Tue Aug 28, 2007 9:18 pm |
|
 |
GamePlayer
Nuclear Falcon
Joined: 18 Aug 2007 Posts: 2365
|
|
|
|
Oh. Have you read my page source yet? =/.
|
|
| Tue Aug 28, 2007 9:30 pm |
|
 |
GamePlayer
Nuclear Falcon
Joined: 18 Aug 2007 Posts: 2365
|
|
|
|
Here, Virty.
 |
 |
<script>
//Browser redirect Script- ? By Virtualism
//Not for use of non-c404 members
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
//if FireFox
if (browser_type=="Firefox"&&browser_version>=1)
window.location.replace("http://www.freewebs.com/omegasa2")
//if NS 6
if (browser_type=="Netscape"&&browser_version<=5)
window.location.replace("http://www.freewebs.com/omegasa2/yougotredirected.htm")
//if IE 5
else if (browser_type=="Microsoft Internet Explorer"&&browser_version<=6)
window.location.replace("http://www.freewebs.com/omegasa2/yougotredirected.htm")
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
window.location="http://www.freewebs.com/omegasa2/yougotredirected.htm"
</script> |
Last edited by GamePlayer on Tue Aug 28, 2007 9:46 pm; edited 1 time in total |
|
| Tue Aug 28, 2007 9:38 pm |
|
 |
Virtualism
Falcon

Joined: 17 Aug 2007 Posts: 379 Location: Nthrlndz |
|
|
|
Sorry Gameplayer. I need to read better. This goes between head tags.
 |
 |
<script language="JavaScript">
<!--
var browserName=navigator.appName;
if (browserName=="Netscape")
{
window.location="http://www.YALALALA.com/ducks32.html";
}
else
{
if (browserName=="Microsoft Internet Explorer")
{
window.location="http://www.YALALALA.com/ducks2.html";
}
else
{
window.location="http://www.YALALALA.com/ducks.html";
}
else
{
if (browserName=="Mozilla Firefox")
{
window.location="http://www.YALALALA.com/ducks2.html";
}
else
{
if (browserName=="Firefox")
{
window.location="http://www.YALALALA.com/ducks2.html";
}
else
{
window.location="http://www.YALALALA.com/ducks.html";
}
}
//-->
</script> |
|
|
| Tue Aug 28, 2007 9:44 pm |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|