donsony
Forum Replies Created
-
I already tried this, unfortunately, the output is blank.
Forum: Plugins
In reply to: [W3 Total Cache] Cannot configure Redis on W3 Total CacheInstall phpredis
Without phpredis, W#TC will not detect REDIS
Forum: Plugins
In reply to: [W3 Total Cache] W3TC and Redis from ElasticacheOkay, I atlast found the issue.
First:
Install phpredisSecond
Enable phpredis in php.ini
extension=redis.soRestart Apache and it Works
Forum: Plugins
In reply to: [W3 Total Cache] Redis disabled from dropdownI am also stuck with this. I have a redis instance on elasticache which has an external url and W3TC is not detecting the same.
I belive I need to specify the URL someplace for W3TC to find the specific installation, but unable to find out where.
Please help
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Venue List on Create New Event?Hi Stephen, I am using WordPress 3.4.2 and the Blocked Theme. I deactivated all other plugins and issue persists. So I am guessing it has to be a theme issue… Any clues as to what it might be
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Venue List on Create New Event?I have the same issue, but the error I am getting is Cannot modify header information – headers already sent by (output started at /home/*******/public_html/wp-admin/includes/plugin.php:1286)
My issues: no list of venues in edit event, quick eit show, but throws the same error on update, but somehow is saved
Forum: Plugins
In reply to: [Pagerank tools] [Plugin: Pagerank tools] Missing images with odd urlsI also have the same issue. Guess it’s limiting the maximum number of characters in a url. the tent in your case comes from wp-content…
Forum: Fixing WordPress
In reply to: Help with Custom CSS?You got nothing to do with this code. You gotta edit either .logo_ph or #logo or .logo values in styles.css to rectify this.
Forum: Fixing WordPress
In reply to: get_header('whatever') problem in child themesThank you gregory, It works. That was simple PHP, but wouldn’t it be bypassing the wordpress provided layers of interaction? Would it result in any performance issues?
Forum: Hacks
In reply to: Trying to Count Number of rows of a custom fieldcorrected it just the additional brackets was the problem….
<?php global $wpdb; $countries = tgt_get_countries(); foreach ($countries as $country) { $testcount = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->postmeta WHERE meta_value = '$country' AND meta_key = 'tgt_job_country'"); if ($testcount !=0) echo "<li>".$country."(".$testcount.")";} ?>
Forum: Hacks
In reply to: Trying to Count Number of rows of a custom fieldglobal $wpdb; $countries = tgt_get_countries(); foreach ($countries as $country) { $sqlquery="SELECT COUNT(*) FROM ($wpdb->postmeta WHERE meta_value = '$country' AND meta_key = 'tgt_job_country')"; $testcount = $wpdb->get_var($sqlquery); echo " <li>".$country."(".$testcount.")";}
The above code also doesnt work