Re: OOm Media Gallery 2.1.4 RC3 - Long gallery names impossible? It would appear that it is limited to 25 chars, if you want longer names then you will have to edit the mysql table defenitions for the zoom gallery.
However it *may* be a typo from the developer, I am not sure.
If you have phpMyadmin installed (your host probably do) then you should be able to go into the database and change the appropriate field value.
In this case that is the table mos_zoom, field catname. it is set to varchar length 25, change the length to 255 and you should get long gallery names.
Another alternative if you do not have phpmyadmin, and do not mind uninstalling zoom and reinstalling it is to edit the zoom.xml file before you upload to the server.
Then you unpack the file first, edit zoom.xml and change
catname varchar(25) default '0',
to
catname varchar(255) default '0',
pack the file again, and upload as normal.
I do not know which is easiest, personally I would just go into the database and alter it there. |