I am using this with 3.5.3 and it sort of works. When you click a user's gallery button it takes you to the main member gallery page, not to the gallery that actually belongs to the member.
This is what you get: ..../photopost53/showgallery.php?cat=500&ppuser=
The problem is this part:
<a target="_blank" href="/photopost53/showgallery.php?cat=500&ppuser=$userinfo[userid]">
For some reason it isn't generating a userid and passing that on to Photopost. Is this because Photopost isn't installed in the same database as the forum?
Can anyone help with this?
EDIT: I have a fix for my own problem. I'll put it here in case anyone else needs it.
Change this:
<a target="_blank" href="/directory_name_of_your_photopost/showgallery.php?cat=500&ppuser=$userinfo[userid]">
to this:
<a target="_blank" href="/directory_name_of_your_photopost/showgallery.php?cat=500&ppuser=$post[userid]">
It now takes me to the correct gallery.
|