Viewing 15 replies - 1 through 15 (of 31 total)
  • Hi,

    You should check your minify settings and your page for JavaScript errors (see the FAQ page on the official blog). Things like minification are not designed to work out-of-the-box.

    Thread Starter buyacsgo

    (@buyacsgo)

    Hello,
    I downgraded W3 Total Cache plugin version and now everything is working fine.

    • This reply was modified 8 years, 5 months ago by buyacsgo.

    It is showing “Loading the required libraries. If this results in a blank screen or a fatal error, try this solution: Library conflicts between WordPress plugins” while going to general settings

    Jerome

    (@jeromebierman)

    Same problems here! dashboard analytic not work after update W3 total cache v0.9.5 and the FAQ from deconf.com can’t access at all, any suggestions?

    Thread Starter buyacsgo

    (@buyacsgo)

    I’m using older version of W3 and now it’s working fine.

    Hello Alin! Same problem here. Even if every cache option is disabled, the dashboard won’t show your metrics, from this plugin nor from the Google Adsense Dashboard.

    The Chrome console is showing this error:
    Uncaught TypeError: jQuery(…).tooltip is not a function
    at https://www.mydomain.com/wp-content/plugins/google-analytics-dashboard-for-wp/common/realtime/jquery.ui.tooltip.html.js?ver=4.6.1, line 10

    You can see where is the break point in this capture:
    https://drive.google.com/file/d/0B4ZIdz9VEIQGWGlJdC11M3hKY2c/view?usp=drivesdk

    It happens only when W3 Total Cache is active, but only your plugin is effected.

    I’ve tested this with PHP 5.5, 5.6 and 7.0, and will happen even if you set CONCATENATE_SCRIPTS to false.

    Any ideas?

    FYI: If I disable the dashboard widget at Google Analytics Dashboard for WP settings, but still the Google Adsense Dashboard plugin is active, this is the error it throws

    Failed to load resource: the server responded with a status of 500 (Internal Server Error)

    Error 500
    I’m puzzled.

    I also have this conflict with the last W3 total cache update. There’s a discussion and a patch in this thread: https://www.ads-software.com/support/topic/conflict-with-google-analytics-dashboard-for-wp-gadwp/

    @spacedroid: I tried the suggested patch and in my case it only generated an error 500. I had to downgrade W3TC while a decent patch is prepared -perhaps-.

    I’m having the same problem. How do you downgrade to the older version of W3TC?

    @thekitchensnob:
    Hello, just follow these steps:

    • First you go here and download version 0.9.4.1.
    • Deactivate your installed W3TC 0.9.5.
    • Enter the FTP and delete the folder “w3-total-cache” from your plugins folder (do this via FTP, not from within WP!).
    • Upload the contents of the zip.
    • Activate the plugin and there you have it, with all its configurations preserved.
    • This reply was modified 8 years, 5 months ago by Marcelo Pedra.

    @kent-brockman: Seems like the patch is not stable. Thanks for sharing a better solution until W3 is fixed.

    • This reply was modified 8 years, 5 months ago by spacedroid.

    Quick fix:

    on line 140 in wp-content/plugins/w3-total-cache/w3-total-cache-api.php add this

    		if (in_array('Analytics', $classPath)){
    			return;
    		}

    It’s just a temporary solution. I will investigate further and see what’s the exact cause and possible solutions.

    @deconf: WELL DONE ALIN! YOUR PATCH ROCKS.

    Still, when your Google Adsense Dashboard plugin is active, the dashboard widgets load will be aborted and an error 500 will be logged. Should I open a ticket in the support forum of that plugin?

    Thank you!!

    @kent

    If you remove the previous patch and just replace line 143

    require $filePath;

    with

    		if (file_exists($filePath)) {	
    			require $filePath;
    		}

    in wp-content/plugins/w3-total-cache/w3-total-cache-api.php, it should solve the problem for both plugins and is actually a permanent fix that all authors should use while doing autoloading and not distributing the entire library, in this case Google’s PHP Client library.

Viewing 15 replies - 1 through 15 (of 31 total)
  • The topic ‘Dashboard widget not loading.’ is closed to new replies.