Log in

View Full Version : Cerb's Custom Query Strings hack! (Looks awesome!)


Cerb
08-23-2004, 10:00 PM
Alright, this is really useless but it looks really cool.

First I'll explain what a query string is.

Well a query string is "additional page information" for instance index.php?page=forums&sid=1

Well the query string here is page=forums&sid=1

What this hack allows you to do is to replace this " = " and " &"


Instead of having (using the same example) index.php?page=forums&sid=1, you could have index.php?page:forums,sid:1

Yes, this IS useless, however it looks really cool and professional.

This is pretty long to install. You've got to open all your vB files and change every link, replacing ' = ' with $qs['eq'] and ' & ' with $qs['and']

For instance, replace:

"online.php?$session[sessionurl]sort=$sortfield&order=$sortorder&pp=$perpage"

with

"online.php?$session[sessionurl]sort".$qs['eq']."$sortfield".$qs['and']."order".$qs['eq']."$sortorder".$qs['and']."pp".$qs['eq']."$perpage"


Anyways, you understand. This is quite long. I think I'm going to eventually write a small application in C++ to do it for you. Anyways, if you have the time to do it, hope you'll enjoy your custom URL's :-D

Note that you can also use this on ANY php page, not only vB.


Then add this at the top of your global.php file, right after the <?php

$qs['eq'] = "="; // Change me
$qs['and'] = "&amp;"; // Change me

$queryAND = explode($qs['and'],$_SERVER["QUERY_STRING"]);

for($i=0;$i<sizeof($queryAND);$i++)
{
$queryEQ = explode($qs['eq'],$queryAND[$i]);
$_GET[ $queryEQ[0] ] = $queryEQ[1];
}



EDIT: Fixed a mistake ^_^

streamzone
08-24-2004, 08:43 PM
funny :) cool...
I'll install.. hope 2 housrs will be enought ;)
thx for the mastering

pjdaley
08-24-2004, 08:45 PM
your a very interesting character Cerb. did you know that? lol

try to do some a bit more useful such as:

https://vborg.vbsupport.ru/showthread.php?t=68461


;)

MrNase
08-24-2004, 09:05 PM
Do you have a demo? I just want to see how it could look like ;)

Cerb
08-24-2004, 09:16 PM
Well MrNase, here's a text demo:

(Link wont work, dont click it)

http://www.bnfreak.com/portal.php?page:index,memberid:20,session:1

You can change the ' = ' and ' & ' from your query strings, this looks very original :-)



pjdaley, I'm (probably tonight) going to release a language hack pretty much like ( I think ) uBB does.

For instance, I've had a Final Fantasy forum which I wanted to be in both french and english.

Well there was this thing you could set in your profile so you could view either french forums only, english forums only, or both :-)

dndog
08-24-2004, 10:17 PM
Hotm! Hotm!

Who's with me? :rolleyes:

Cerb
08-24-2004, 10:25 PM
Well it's just like 5 lines of code haha.

I was on fire when I wrote that though :-|

pjdaley
08-24-2004, 11:52 PM
cerb, so my request is not in none of your interest? :rolleyes: :disappointed:

Cerb
08-25-2004, 12:16 AM
To tell you the truth, I couldn't do it.

I am not familiar with vB at all.

I've released two hacks until now and they're plain PHP, they don't link to vB in any case.

So you might want to ask another programmer... I'm sorry

sabret00the
08-25-2004, 12:58 PM
nice thread, welcome to the Borg Cerb :)

DrkFusion
08-25-2004, 11:16 PM
You know when you look at it, it does look more professional. Like all those news websites makes me tingle inside.

You get an install even though I didn't install it ;) Good hack!

Erwin
08-26-2004, 12:22 AM
The question is... why? :)

Cerb
08-26-2004, 03:49 AM
The answer is... for the hell of it!

It looks more professional and well, I like that :-)

KW802
08-26-2004, 05:13 AM
/me is still scratching his head over this one.

Erwin
08-26-2004, 05:31 AM
The answer is... for the hell of it!

It looks more professional and well, I like that :-)
You're better off making the "query strings" as you put it more search-engine friendly. :)

Tim Wheatley
08-26-2004, 03:46 PM
You're better off making the "query strings" as you put it more search-engine friendly. :)
Do the original links still work? Otherwise I expect a lot of 404's...

Cerb
08-26-2004, 08:06 PM
Nope heh

Reeve of shinra
08-26-2004, 10:44 PM
This deffenitely deserves most interesting hack of the month.

roundhost
08-27-2004, 04:04 PM
This is brilliant! I love it! Fantastic!

You are a star!

Just what i always wanted!!!

/me wacks himself with a nylon tube and wraps surgical tape around his cracked skull!

Ah, err, WTF!!!???