Fixed vBulletin 3.8 private galleries become public

Rasmus Vind

Well-known member
I just had a member complain to me that his private vBulletin galleries became public after the import to XenGallery. I can't really provide any reproduction steps aside from trying to import vBulletin 3.8.
 
If you still have access to the vBulletin database, could you please run the following query:

Code:
SELECT albumid, state
FROM vb_album
WHERE albumid = 123

With this query you will need to change vb_ with whatever your vBulletin database prefix is (or remove it if you don't have one) and replace 123 with whatever the albumid is for that album (in the VB database).
 
As I didn't know the albumid, I did this instead:
Code:
SELECT DISTINCT state FROM album
and got this:
Code:
public
private
profile

It appears that this member had one with the state "profile". I believe those albums were hidden but the images accessible for profile customization.
 
Last edited:
Yeah. They are invisible when set to that. You should be able to confirm with your colleagues, I believe they wrote it just before they left.
 
We'll just consider anything that isn't public to be private.

This is fixed in the next release, thanks.
 
Top Bottom