wolfmartin
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Glossary] Endless Loop with V 2.3.2 and specific templateAfter setting up a dev system at home, importing site and database backup, i found it.
Problem was a called function “canonical_request()” taken from http://toscho.de/2010/wordpress-plugin-canonical-permalink/ in theme file admin-functions.php. In Line 1133 there was a comparison:
$canonical_path == $_SERVER[‘REQUEST_URI’])
Problem was a compare missmatch because $canonical_path could contain special chars like ä ö ü. Same chars in $_SERVER[‘REQUEST_URI’] were escaped like using urlencode():
Example: Wörterbuchverzeichnis == W%C3%B6rterverzeichnis
Because of that a check afterwards every time failed causing an endless 301…
Well, fixed for the moment… but probably i should consider choosing another theme 🙁
Regards
M
Forum: Plugins
In reply to: [WP Glossary] Endless Loop with V 2.3.2 and specific templateHi TCBarret,
i have no idea what causes this redirect. It happens only on WP Glossary details…
Any hint for me, how to debug this by myself? I’ve looked through the classes but i dont know which code produces the page output. Could you point me in the right direction?
Regards
M
Forum: Plugins
In reply to: [WP Glossary] Endless Loop with V 2.3.2 and specific templateAdditional information: I tried using the Widget, to display random term in sidebar. This works without any problems, even in full mode…