projectmanager_bugreport
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate] qtranslate is not compatible with wp version 3.8 or 3.8.1Based on previous and current experience, it might be worth the effort searching for an alternative to qTranslate.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] WP SSL 3.3.5 does not work with qTranslate 2.5.34Hi lukelukeluke,
Mvied was indeed right: This is not an issue with WordPress HTTPS. The problem is on the side of qTranslate.
Regards
PatrickForum: Plugins
In reply to: [WordPress HTTPS (SSL)] WP SSL 3.3.5 does not work with qTranslate 2.5.34Thought it was the first thing I did. Had it crossed out on my list. Apparently I ran over that step too fast. Well thanks any way.
Edit: Can you keep your test page online? I’ll reference it on the other plugin’s support page.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] WP SSL 3.3.5 does not work with qTranslate 2.5.34Problem reproduced again: Not fixed after update to WordPress HTTPS 3.3.6
Forum: Plugins
In reply to: [Simple Mail Address Encoder] V 1.5.2.1 merge subject and bodyProblem seems to be still present in v1.5.2.2, see http://ww.wp.xz.cn/support/topic/ampersand-issue-body-parameter-not-evaluated?replies=1#post-4011490
This happened for my projectmanager case, too.
However, it first occurred right after upgrading from 2.9.7 to 3.0.3 (including the database migration thereafter).The code works now, after I manually edited lib/core.php around line 932, where the error was caused.
In my edited version, that loop now looks like this:
foreach ( $meta AS $m ) { $key = sanitize_title($m->label); if($key != null && $key != "") {$dataset->{$key} = $m->value;} }So I just added the “
if” conditions.
The php interpreter cannot again be stuck in the assignment with an empty property.Time for another Bugfix? Or my issue only?