Although the category name does not accept less than 32 characters.
accept: Salça ve Ketcçap 16 characters
not accept: Salça ve Ketççap 16 characters
database is written as : Salça ve Ketççap
therefore returns an error. How can I fix.
therefore returns an error. How can I fix.
Edit admin/controller/catalog/category.php, find line 278:
Change to
(Can't remember the max length allowed in the database, but this should be fine)
Code: Select all
if ((strlen(utf8_decode($value['name'])) < 2) || (strlen(utf8_decode($value['name'])) > 32)) {
Code: Select all
if ((strlen(utf8_decode($value['name'])) < 2) || (strlen(utf8_decode($value['name'])) > 64)) {
Request Reviews v1.0 released.
Hmm.
The database is set to varchar(32) - sorry about that. Try increasing that. (Table: category_description - Field: name)
If that doesn't work either, I'm afraid I can't help you. (Remember you will still have to apply the "fix" I wrote earlier, as it checks the length)
The database is set to varchar(32) - sorry about that. Try increasing that. (Table: category_description - Field: name)
If that doesn't work either, I'm afraid I can't help you. (Remember you will still have to apply the "fix" I wrote earlier, as it checks the length)
Request Reviews v1.0 released.
Who is online
Users browsing this forum: No registered users and 4 guests