Hi Kyle,
I copied over the router file and I now get the default list being displayed rather than the error I was getting before, but not the list with id of 11.
In the function userList in comprofiler.php, it is checking $_POST which is blank. It is the REQUEST variable that has the listid of 11 but the POST variable doesn't have anything set. So, this is the reason that we are getting the default list rather than list 11. If I add this line:
Code:
$listid = cbGetParam( $_REQUEST, 'listid', 0 ); //Line49 hack
into the function usersList() then I get the proper list being displayed.
It looks like the $_POST and $_GET variables are not being setup correctly, somewhere. The
Code:
$searchFormValuesRAW = $_GET;
is blank as well.
So, where should the POST & GET variables be set for use? Or am I safe to just use the REQUEST variable in the usersList function?
A second problem, I can no longer get user profiles to display, I just get the 404 page when I try to click into a user profile. I think that this problem happened when I upgraded to Joomla 3.3.0. Has anyone else had that problem?
Thank you for your help.