"Imported Item" from sonnb-gallery

ehd

Well-known member
Hi,

when importing from the sonnb-gallery (2.1.9) mostly all albums end up with the url and title:

forum/media/imported-item.xxx/

Is there a way to get back the old titles?
 
The titles of albums are imported across.

The URL you indicate above is a media item within an album.

If it has a title of "Imported Item" then it means it did not have a title in XenGallery to begin with. Titles are required in XenForo Media Gallery so that title is used instead if one doesn't exist in XenGallery.

The title can be changed to 'Something Else' with a simple database query (change accordingly):

Code:
UPDATE xengallery_media
SET media_title = 'Something Else'
WHERE media_title = 'Imported Item'

You can also edit them by hand with Inline Moderation.
 
Top Bottom