supertester
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Select File” button doesn’t workHaving the same weird problems, already tried everything. Any updates on this?
Forum: Fixing WordPress
In reply to: Media upload button is not working.I’m having the same problem, any updates on this? It seems to be Chrome related, in Firefox it does work.
Forum: Plugins
In reply to: [Loco Translate] Internal Server ErrorFixed it, added
define( 'WP_MEMORY_LIMIT', '64M' );
to wp-config.php and all is working fine now!Forum: Plugins
In reply to: [Loco Translate] Internal Server ErrorI’m having the same problem. AJAX response is empty (checked with firebug) and the error_log displays the following:
[21-Oct-2014 23:33:05 UTC] PHP Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 64 bytes) in /secretpath/plugins/loco-translate/lib/build/gettext-compiled.php on line 6
Forum: Plugins
In reply to: [Facebook] WP_Query orderby comment_count supportI’ve managed to find another way without hacking the plugin, but still wondering why this is not standard?
Forum: Plugins
In reply to: [WP-PostViews] Query breaks when using v_orderby and meta_queryYes I already found that fix but couldn’t find the topic to set it on ‘resolved’. I fixed it with the following code, in case anyone else needs it:
$args = array( 'meta_key' => 'views', 'orderby' => 'meta_value_num', 'order' => 'DESC', 'meta_query' => array( array( 'key' => 'otherkey', 'value' => 'othervalue' ); )
Forum: Fixing WordPress
In reply to: Wrong $wpdb->prefix value after AJAX requestIt was including the wrong wp-load.php, I guess not coding the wordpress way got the better of me!
Forum: Plugins
In reply to: [BuddyPress Groupblog] No Group Blog Option – Fresh Installlolled at ‘detail’
Forum: Plugins
In reply to: [BuddyPress Groupblog] Fatal error: Call to undefined functionSame here! Also, the included P2 Parent Theme is an old version.
why first removing the wpautop filter, and then readd it? does the priority number matter?
Forum: Plugins
In reply to: [W3 Total Cache] Plugin broken after (during) update.All problems are solved! Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] Plugin broken after (during) update.Yes I have read about that. I thought my problem might be different because I interrupted the upgrade procoess.
Frederick and his team are doing an awesome job so i’ll just patiently wait for a update. I hope it fixes my problems too!
Forum: Plugins
In reply to: [GD Star Rating] Aggregated rating not workingI just found out that
wp_gdsr_render_article(46, true);
works for this too. Maybe I misunderstood the meaning of the wp_gdsr_render_comment_aggregation function?