ptiswitz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login after update from 3.9.2Yes clearing my cookies solved my problem.
Forum: Fixing WordPress
In reply to: Strict Standards: Declaration of … should be compatible with …You’ve got this kind of error because you run PHP in a strict mode.
Strict mode imply to class inheritance that a child function must have the same declaration that his parent.
The following example will throw a strict error :
class A { function foo($bar = 0) {} } class B extends A { function foo($bar) {} }The foo function of class B must be like that :
class B extends A { function foo($bar = 0) {} }For your case, you’ve to copy the exact declaration written in the Walker class file to fix that.
Forum: Fixing WordPress
In reply to: Upgrade to 3.5.1Do you have the right permissions on your wordpress folder ?
Forum: Fixing WordPress
In reply to: Upgrade to 3.5.1 Breaks Page in Admin – Text Edit shows 0 Word CountI found my problem, it come from my client theme which use an older version of jquery ui for its administration.
So look at your theme if it uses a specific version of jquery ui.
I hope that it will help you 🙂
Forum: Fixing WordPress
In reply to: Upgrade to 3.5.1 Breaks Page in Admin – Text Edit shows 0 Word CountFor my self, when i turn on SCRIPT_DEBUG, i have the same error message “Uncaught TypeError: Cannot read property ‘length’ of undefined ” on jquery.js loading
Also, when i try to add a link i have this error “Uncaught TypeError: Object [object Object] has no method ‘uniqueId'” in jquery.ui.dialog.min.js
The strange fact is that i do the same update on my personal blog and i don’t have any problem.
The difference between my client project and my blog is that the second one use multisite.
Do you use multisite option ?
Forum: Fixing WordPress
In reply to: Upgrade to 3.5.1 Breaks Page in Admin – Text Edit shows 0 Word CountHi,
I’ve the same problem since i’ve update from 3.4.2 to 3.5.1.
When i look at the javascript console, i saw this error message “Uncaught TypeError: Cannot read property ‘length’ of undefined ” in jQuery.
Do you have this message too ?
I think the problem come from jquery loading… 🙂