Hi,
I upgraded to PP5.5 (thanks for this great release!) and everything seems to work fine except with friendly URLs.
1) FriendlyURL doesn't work with PHP5 : showphoto.php always says "picture not found in database"
This is due to the fact that PHP5 doesn't support longer $_SERVER["PATH_INFO"], that is used in showphoto.php, so photopost can't set correctly $photo.
Here is a quick fix that I would like to see applied in pp-inc.php :
Code:
Content visible to verified customers only.
2) The new ajax previous / next filmstrip thumbnails doesn't work with FriendlyURLs
This is due to the fact that in your javascript, paths are relative to the showframe.php file. When you are using friendly URLs, you are not in the root directory (you are browsing an adress such as showphoto.php/photo/1447/cat/500/ppuser/2).
That's why Javascript can't find showframe.php in the relative directory.
I don't know how you could fix it in a generic way, but in my configuration, galeries are installed on the root folder so I just added a "/" before showframe.php in the .
js file and it did the trick :
Code:
Content visible to verified customers only.
Oh, another bug, the forum profile link doesn't show up in the profile (I didn't try to fix it...)