Re: Problem with extern.php

Have you tried this?

include('./punbb_1_1_2/extern.php?action=active');

"Programming is like sex: one mistake and you have to support it for the rest of your life."

27

Re: Problem with extern.php

I tried and failed to do this with PHP v4.32. Someone told me that parameters couldn't be passed to include files like this because the "?action=active" part just gets treated as part of the filename which results in the same errors being experienced here.

Re: Problem with extern.php

Ok, try this then.

$_POST['action'] = 'active';
include('./punbb_1_1_2/extern.php');

"Programming is like sex: one mistake and you have to support it for the rest of your life."