|
05-24-2004, 01:43 AM | #1 |
Green Mole
Join Date: May 2004
Location: France
Posts: 8
|
$pu['file']
In robot_functions.php you make a call to parse_url($url)
and set this: settype($pu['file'],'string'); The problem is that 'file' is not a valid component of the parse_url function and, of course, is always empty. only these compenents ares valid: scheme host port user pass path query fragment So, what is supposed to be 'file', 'query' ? |
05-24-2004, 03:02 AM | #2 |
Green Mole
Join Date: May 2004
Location: France
Posts: 8
|
I forgot to say in which function:
function phpdigGetSiteFromUrl($id_connect,$url) [Edit:] Ok, I think that I see what is wrong. The call to phpdigRewriteUrl should be: $subpu = phpdigRewriteUrl($pu['path'].$pu['query'].$pu['fragment']); At least, that's how I understand what you're doing in that function. Last edited by Pulsar-san; 05-24-2004 at 03:58 AM. |