dancriel
Forum Replies Created
-
Forum: Plugins
In reply to: [Analyticator] [Plugin: Google Analyticator] Dashboard widget stopped workingIn case Brian is still monitoring this thread, I had to make another small change to this plugin to get it working properly with my site.
In google-analyticator.php on line 456 the plugin attempts to auto-select a GA account whose ‘name’ matches that of your site. As I mentioned earlier in this thread somehow I have 2 GA accounts with the same name, and that line of code was causing the HTML
<select>element at the top of the plugin settings page to render with two options selected at the same time. Like this:<option value="UA-[...]-1" selected="selected">www.mysite.com</option> <option value="UA-[...]-2" selected="selected">www.mysite.com</option>Brian, thanks for the great plugin, greatly appreciate you keeping it up to date with Google’s fluctuating API.
Forum: Plugins
In reply to: [Analyticator] [Plugin: Google Analyticator] Dashboard widget stopped workingUpdate: I determined that the failure was occurring while trying to retrieve cached GA data from the DB. As a workaround, I stopped the dashboard widget from attempting to use cached data so it makes a fresh call each time. In google-analytics-summary-widget.php I commented out lines 210, 282, 358, 453, and 505. Now my dashboard summary widget works again.
Forum: Plugins
In reply to: [Analyticator] [Plugin: Google Analyticator] Dashboard widget stopped workingI have 2 sites in GA with the same name, though the UIDs are unique the “name” of the 2 sites are the same… could this be related? The GA tracking code is working properly, only the dashboard widget is broken.
Forum: Plugins
In reply to: [Analyticator] [Plugin: Google Analyticator] Dashboard widget stopped workingAnd 15 minutes later it is failing again with the same error as before. Help?
Forum: Plugins
In reply to: [Analyticator] [Plugin: Google Analyticator] Dashboard widget stopped workingI tried deauth / reauth a few more times and it eventually started working.
Forum: Plugins
In reply to: [Analyticator] [Plugin: Google Analyticator] Dashboard widget stopped workingYes I tried that and I get the same error…is there any additional debug info I can provide to help troubleshoot?
Google Analytics Dashboard is working for me with the latest update.
http://www.ioncannon.net/projects/google-analytics-dashboard-wordpress-widget/Google Analytics Dashboard not working for me either.
http://wordpress.org/support/topic/plugin-google-analytics-dashboard-doesnt-work?replies=4Forum: Plugins
In reply to: W3 Total Cache issue with 3.3So, W3 Total Cache is working for me again with my Rackspace Cloud CDN. Here are the 2 problems that were preventing my setup from working:
- One of the JS files that I was trying to minify had disappeared, it was called l10n.js… may have been coming from a plugin that I’ve since disabled. Not sure.
- The Twitter widget JS (http://platform.twitter.com/widgets.js) was throwing a JS error after being minified by W3TC.
So, I removed both from my list of minified scripts and my site is functioning normally again, and W3TC minify & CDN are running smoothly.
If you are having problems with W3TC minify and WP 3.3 try turning on the debug option for minify, it may shed some light on your problem.
Thanks for the suggestion Josh. Refreshing my permalink settings did not work, but your suggestion did lead me to realize that there was a hack in my theme to remove the category base that apparently stopped working with wordpress v3. Removing that junk and installing this plugin fixed my problem: http://wordpress.org/extend/plugins/wp-no-category-base/
Forum: Plugins
In reply to: W3 Total Cache issue with 3.3I am having the same problem, JS Minify is not working since upgrade to WP 3.3. The CDN upload tool does not seem to recognize the need to upload any minified JS files for some reason, only the minified CSS. JS only works with W3TC JS minify disabled. Hope this gets fixed soon!
My solution was to remove the category chooser from the Quick Edit page. User is required to open the post for editing before they can change the category. The following works in WP 3.2:
function customAdminCSS() { echo '<style type="text/css"> .inline-edit-col .inline-edit-categories-label, .inline-edit-col .category-checklist { display: none !important; } </style>'; } add_action('admin_head', 'customAdminCSS');Forum: Plugins
In reply to: [Plugin: Rich Text Biography] Cannot insert link in biographywhat’s up party people
follow up: if you are using WP 3.2.1 or newer then you do not need the second line. the only line you need is:
add_action( 'admin_print_footer_scripts', 'wp_tiny_mce', 25 );Forum: Plugins
In reply to: [Popularity Contest] [Plugin: Popularity Contest] PHP Fatal errorthe above fix eliminates the error.
Forum: Plugins
In reply to: [Popularity Contest] [Plugin: Popularity Contest] PHP Fatal errorWill mark this thread as resolved if this works.