Log in

View Full Version : Modifying online.php


Weasel
08-12-2002, 05:17 AM
I'm accessing the forum via a seperate page and I'm trying to add it to online.php so it doesn't say:

Unknown Location: /mp3/index.html?dir=/Zero

(obviosly the dir variable changes)

I tried adding this to online.php but it still recognizes it as unknown:

case 'mp3/index.html':
$userinfo[activity] = 'mp3';
break;

does anyone know how to make this work properly?

[D]Vincent
08-12-2002, 05:43 AM
Vincent]Unless the mp3 folder is in your forums folder change it to http://www.your-site.com/mp3/index.html if it is the right location I think the : in
case 'mp3/index.html':
Should be a ;

Weasel
08-12-2002, 06:27 AM
I got it to work, seems the code does so much parsing on the URL it turns it into "index.html", so I just put


case 'index.html':


and it works. That will be a temporary solution until I add something else that has the same name, but whatever works for now.

(BTW, that is the correct syntax for a switch statement ":" and not ";")

[D]Vincent
08-12-2002, 06:33 AM
My bad, I'm still learning PHP :ermm: