Thankfully, we don’t use the auto-censor feature of vBulletin on this board. But some boards do use it, and this leads to the accidental censoring of URLs like http://www.thisisscunthorpe.co.uk because of the embedded naughty word. You can’t even use vB code to mask the URL; the censor will mangle the link anyway.
Any ideas how to make a working link to Scunthorpe (whatever that is) when the auto censor is on duty? Is there a web site or utility that lets you make intermediate links that will forward you to the desired destination?
There is a site somewhere where one can post a link and then link to that site; others have posted this where apostrophes and similar problems have garbled a link, and hopefully one of them will be by to answer that. For the record, what I’d suggest doing on the Pizza Parlor, where I am an Admin. and which has the “censor” thing enabled, is to post the link with automatic parsing of URLS turned off and an asterisk in place of the vowel, suggesting to people that they C&P the URL in their browser and replace the vowel:
My suggestion would be to use an escaped version of the URL. Essentially, the HTTP standard allows any character to be represented by an escape sequence consisting of a percent sign followed by the character’s ASCII value in hex; for example, %7E in an URL is exactly equivalent to ~, and both the user agent and the HTTP server are required to treat them as exactly the same thing. If you don’t know ASCII by heart (most people don’t), this page has a conversion script to generate escape sequences. If you escape one of the characters c, u, n, or t in the above URL, it should avoid triggering autocensoring, while pointing to the same location.
I thought this was a perfectly acceptable work-around, and I suggested it right off the top of my head. But some grumps just can’t be pleased, so I was hoping there might be a better fix.
And yep, it’s the Randi board.
Unfortunately I don’t hold an admin position on a vBulletin site, or I’d experiment. The site I admin uses YaBB software.
Some Guy, it took me a while to figue out how to do what you’re suggesting, but figure it out I did. That conversion script thingy didn’t work, I put in a C and it gave me a C as an answer. I had to dig up the character set pages to find out that a C can be represented by “& # 6 7”.
I don’t know, but it irks me no end. I know of one board that has a nifty hack so that the “prune” feature only deletes closed threads. This is a neat concept that keeps ongoing conversations from being deleted, yes, but it means that any poster who starts a new thread must monitor that thread even after people have stopped posting, and report it to the mods for closing once two weeks have passed since the last post. Insane.
Is there any easy way to find a particular web page’s underlying . . . er . . . number thingie? You know, the ones that go 123.456.789.001. If there is, you could post that instead of the text url.
IP address? Yes, just ping it. But not all webpages have their very own IP. For example, I run a webhosting business, and if you pinged one of my customers, the IP would come back as the address for our website, not theirs.
Define ‘easy’. Many computers have a program called “nslookup”, which you can run - unfortunately for those used to modern windowing systems it’s a command line tool. You run it like this:
You can then use that number (62.189.74.93) in your URL instead of the hostname. It’s not perfect (if the site uses load balancing, or moves because they switch ISPs, then you may lose.) In addition, it may fail completely if the host is a ‘virtual host’ - many computers serve many web sites. In the case of virtual hosting the same IP address is used, but based on the name you ask for it gives you a different web page - it’s like calling a small business and having to ask “Is Bob there?” The receptionist gives you a different person than if you ask “Is Alice there?”
There are nslookup gateways on the internet, so you can do this from a web browser, for example a2z internet has one. However, they are not super simple to use as far as I’ve seen.
I’d try the “%63” escape sequence for the c in Scunthorpe and see if that helps.