View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001219 | OXID eShop (all versions) | 4.09. SEO, SEO URL | public | 2009-08-19 15:25 | 2012-12-10 13:35 |
Reporter | rgruber | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.1.5 revision 21618 | ||||
Fixed in Version | 4.1.6 revision 22740 | ||||
Summary | 0001219: Saving of seo url not possible | ||||
Description | Saving of changes of the seo url is in some cases not possible. If I change a letter within the seo url from upper case to lower case and press the save button, the changed letter will change again to upper case. If I activate the checkbox "URL fixieren" and change a letter from upper case to lower case and press the save button, the changed letter will be saved correctly and is still lower case. But if I change the letter again to upper case and press the save button, the leter will change automaticly to lower case. Tested this in the demo shop and had the same problem. | ||||
Tags | No tags attached. | ||||
Theme | |||||
Browser | All | ||||
PHP Version | 5.2.6 | ||||
Database Version | 5.0.33 | ||||
|
I guess, this is because Upper and Lower cases are interpreted as the same. So system does not find the change - thus not saves the url with changed letter cases. |
|
You can fix this problem by executing this query: ALTER TABLE `oxseo` CHANGE `OXSEOURL` `OXSEOURL` TEXT CHARACTER SET latin1 COLLATE latin1_bin NOT NULL; this will be included in next release update sql. |