staze
Forum Replies Created
-
fixed.
See solution here: http://stackoverflow.com/questions/7179216/php-problem-with-the-ssl-ca-cert-path-access-rights
Basically, had to do a full apache restart… somehow graceful was not clearing out whatever cached information there was.
Yeah, still throwing an error about SSL cert when logging in…
Not using sucuri… I’m trying a fresh install (removed gad options in db, reinstalled plugin), and seeing if that clears it up. Waiting to get credentials from client…
Seeing a similar issue on one of my hosts (running RHEL6). curl connects just fine over https, so that’s not the issue.
Do we know what url it’s trying to connect to so I can test via a direct curl? Makes me wonder if this is some breakage due to shellshock bash changes…
Thanks that seems to have fixed it! =) Enjoy your weekend.
Forum: Plugins
In reply to: [EWWW Image Optimizer] [Plugin: EWWW Image Optimizer] PHP Parse errorCool, thanks! Already updated, and seems to work.
Yay habits. =D
Forum: Plugins
In reply to: [EWWW Image Optimizer] [Plugin: EWWW Image Optimizer] PHP Parse errorAh ha, found it.
On line 28 of bulk.php you used a short open tag — that is to say, only <? where it should be <?php — as without short_open_tag enabled, it’ll give a parse error, and go boom.
Same thing on line 87 of nextgen-integration.php.
ewww-image-optimizer.php is fine.
Forum: Plugins
In reply to: [EWWW Image Optimizer] [Plugin: EWWW Image Optimizer] PHP Parse errorphp -l on any of the php files in 1.0.8 gives me syntax errors…
Not exactly sure why yet…
Forum: Plugins
In reply to: [EWWW Image Optimizer] [Plugin: EWWW Image Optimizer] PHP Parse errorSo, interestingly:
PHP 5.3.10 shows no syntax errors with bulk.php, or the other php files.
PHP 5.3.8 does.
Both on Macs… one running 10.7.4, one on 10.6.8 respectively.
Looking further.
Forum: Plugins
In reply to: [EWWW Image Optimizer] [Plugin: EWWW Image Optimizer] PHP Parse erroryup, same result. Manually deleted and readded the latest version, same exact result.
And correction, it’s line 192 that gives the error, which is funny, since that’s a blank line.
Forum: Plugins
In reply to: [EWWW Image Optimizer] [Plugin: EWWW Image Optimizer] PHP Parse errorhmm, seems unlikely, but I’ll give it a shot. I reinstalled 1.0.7 and it worked fine.
My thought was that I’m not using NGG, so the add_action may have been causing the issue.
Will try manual upgrade rather than upgrade through wordpress.
Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] WordPress iOS App (XML-RPC) exclude2.0.5 seems to have resolved this. Though looking at Trac, I’m not exactly sure HOW you fixed it. =P
Anyway, thanks!
Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] WordPress iOS App (XML-RPC) excludeStill happening in latest version released today.
Changing line 2029 to be:
if ((is_admin()) || ($query->is_admin) || ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST))Resolves it.
Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] WordPress iOS App (XML-RPC) excludepmenard,
Just checking to see if you’re going to be pushing this patch, or…?
Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] WordPress iOS App (XML-RPC) excludeOkay, can confirm changing line 1903 in simplyexclude.php to the following allows the iOS app to see all posts:
if (is_admin() || ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ))Done, and done! Let me know if you need anything else. =)