Posts that OptoGeek is monitoring

Subscribe to Posts that OptoGeek is monitoring 10 posts found

Apr 14, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

its ok man ou can do it wen ever you can :)

 
Apr 13, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

wana use it as a admin mod on my site will change vaultx.co.za to sumthn else ..i want it to work on my site only..il show you wat i wana do with it...can you do it fo me please..

 
Apr 13, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

i Need to append it to everythng in the soucre eg..css,images etc..

 
Apr 12, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

and yes i did all the extensions to that list you gave me..

 
Apr 12, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

thanks it rights the links jus the css styles and images still dnt get rewritten///

 
Apr 12, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

Thanx man i will try it now giev me 5min :)

 
Apr 11, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

This script only rewrite links in the adress bar i need it to rewrite all the links on the page :)

 
Apr 11, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

Thanx bro i will try it and get back tp you..:)

 
Apr 11, 2007
Gabe Gorelick 1 post

Topic: Script request: Rewrite all links

Something like this should work:


// ==UserScript==
// @name         URL Appender
// @description  appends ?vaultx.co.za to the end of certain URLs
// @include      http://domain.com*
// ==/UserScript==

var url = window.location.href;

//the ?vault.co.za conditional makes sure that the script only appends it once, otherwise, it continues running 
//and reloading the page with another ?vaultx.co.za

if(url.indexOf("?vaultx.co.za") == -1 && (url.indexOf(".gif") != -1 
						|| url.indexOf(".php") != -1)) //add more formats ad nauseam
{
	window.location.href += "?vaultx.co.za";
	
}

You may also want to try this using location.replace(url) instead

 
Apr 3, 2007
raven69 9 posts

Topic: Script request: Rewrite all links

Can some body please write this script for me , i tryed but it kept on bombing out...

the script should do the following...

if the format is .gif,.mp3.php.html.png.jpg etc ... the script mus add ?vaultx.co.za at the end

eg:
domain.com/logo.gif to domain.com/logo.gif?vaultx.co.za

2:

if the site has sum excess coding
eg:
domain.com/index.php?act=home the script should do this domain.com/index.php?act=home&sd=vaultx.co.za

...

Thanx to anyone who helps me :)