jamk
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Replacement for AddThisThanks for all the replies, I’ll have to delve in more to the management side of the new AddThis.
My main point was and still is, that being a great Social Media -button addon the plugin has expanded to contain lots of other features. Features that might be viable and useful for regular bloggers but add to the strain when it comes to managing several WP Multisite installations.
Exactly the same issue I’m having with Site Stats <> Jetpack. Altho, Jetpack has improved it’s ability to activate only the desired portions of the plugin, it still is a bloated plugin for my users’ purposes.
But as I said – I’ll study more before giving my final judgment ??
Thanks for reacting fast! Just the way open-source community should work ??
After some debugging with Firebug – I tracked down that the problem was in the additional php file that the javascript calls in the Ajax functions: kk-ratings-ajax.php. This file is served (at least in my server) in ISO 8859-1 charset – instead of UTF-8. This probably happens because of the way it is called from a js file instead of normal browser request. If UTF-8 isn’t forced in the server-side, the file is (at least in Firefox or some of it’s versions) handled as ISO 8859-1. If ISO is embedded in UTF-8, it causes the output of the ISO-formatted file to start with few extra characters that seemed to mess up the javascript handling – causing the problems mentions above:
???SUCCESS|||54|||2.7/5(54%) 24 votes|||no
instead of the error free version:
SUCCESS|||54|||2.7/5(54%) 24 votes|||no
UTF-8 force-fed can be enabled from the .htaccess in the root of the www-site, by adding this line:
AddDefaultCharset UTF-8
That’s a way to go around it, but I’d love to see a proper fix into the issue. BTW this also fixes WP Stats plugin’s dashboard box which has the same characters appearing inside the box!
In addendum, I noticed that when this “An error occured” happens – the IP restriction doesn’t seem to work. AKA the person can change their vote afterwards, but apparently can’t vote multiple times which would be much worse.
Can developer comment on this issue in any way?
The same goes for me, when using Firefox. With Internet Exploter 8 or 9 it works fine and displays the votes so far after clicking the stars.
The votes are saved anyways, even with the “An error occured” msg.
Forum: Fixing WordPress
In reply to: 500 error when logging out of admin area – IISScratch that… I got mine working after reinstalling some php’s ldap-modules again. ??
Forum: Fixing WordPress
In reply to: 500 error when logging out of admin area – IISHi!
I caught the same issue with my WordPress installations when upgrading from PHP 5.1.6 to PHP 5.3.3. -> WPMU LDAP plugin broke in the same manner (allowing only local users aka admin to login usccesfully).
I posted about it in the authors forum here:
https://wpmuldap.tuxdocs.net/2011/03/23/wpmu-ldap-3-1-1-released/#comment-5398I’m assuming you’re using the same plugin as I am, and unfortunately that plugin is not in WordPresses plugin repository, so I’d say asking for help in that matter won’t catch the author’s attention.
Let’s hope that we’ll get a response and a fix asap!
Forum: Installing WordPress
In reply to: WordPress and PHP 5.3 questionThanks for the reply Esmi! Guess I can upgrade w/o any worries then ??
Didn’t work for me either (WP version 3.1.4) with Google Analytics for WordPress plugin.
Fortunately, adding two slashes to the source of the Yoast’s plugin did the trick… But I’d prefer this plugin :/
Forum: Plugins
In reply to: [AJAX Report Comments] AJAX report comments works only partiallyThe missing respond is due a bug in the code. The fix is described in this post:
https://www.ads-software.com/support/topic/plugin-ajax-report-comments-formatting-on-30#post-1575842Basically, you add this line:
status_header(200);
Before this line:
echo <<< EOT
At line 132 or so, in the end of report.phpHope that helps you, since the developer of this plugin certainly isn’t ??
I’m also hoping for a support to localization for this plugin, and done that myself to the code but I’m not gonna put this plugin into production unless the dev decides to upgrade this plugin…
It seems that
$addthis_styles
doesn’t have any function anymore – all the available button styles are in the$addthis_new_styles
array. That array has different structure – I duplicated the last one and modified according to my own buttons, like this:$addthis_new_styles = array( 'small_toolbox' => array( 'src' => '<div class="addthis_toolbox addthis_default_style addthis_" %s ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>', 'img' => 'toolbox-small.png', 'name' => 'Small Toolbox', 'above' => 'hidden ', 'below' => '' ), // 32x32 ... 'jamk' => array( 'src' => '<div><a class="addthis_button" href="https://addthis.com/bookmark.php?v=250" %s><img src="/wp-content/plugins/addthis/img/jamk-button.gif" width="59" height="16" alt="JAMK Addthis" style="border:0"/></a></div>', 'img' => 'jamk-button.gif', 'name' => 'JAMK Addthis', 'above' => 'hidden ', 'below' => 'hidden' ), // JAMK );
The only problem is that every time the plugin is updated, I need to reinsert the added style to the source – it’d be better if they could be added from theme’s functions.php or such place. Anyone wanna help me with that? ??
I don’t call the addthis-widget from my theme, I use the plugin’s own insert method which suits me well (and gives individual bloggers the option to disable it if desired)
After looking into this myself later, I found out that one needs to add own button styles nowadays to a different slot in the
addthis_social_widget.php
file. Now they must be added to$addthis_new_styles
array. I copied the Plus sign share style and changed the images and it’s now working. Thanks for all the moral support btw ??I guess this problem will go away w/o us doing anything, Automattic is fixing it for sure as we speak. ??
Forum: Plugins
In reply to: [More Privacy Options] [Plugin: More Privacy Options] WP 3.1 Version Coming?Hi Tevya,
I installed the present version (3.0.1.3) of this plugin into my WordPress 3.1 (multisite, subdirectories) site and it works fine. What problems are you having with yours?
Forum: Fixing WordPress
In reply to: Category pages?Hi!
I’m looking into the Page Links To plugin, but I’m not 100% sure whether it does what I want to accomplish.
That is, to have Pages the similar ability to have tags and categories just like Articles have. And I’m not talking about messing with Custom Fields, but something user-friendly, just like Tags and Categories in article-edit-page. Has anyone done this already?