joecr
Forum Replies Created
-
Forum: Plugins
In reply to: [Advertising Manager] Is Advertising Manager a dead product?Switch back to https://www.ads-software.com/extend/plugins/adsense-manager/ where it came from, as it is maintained again.
Forum: Plugins
In reply to: [Advertising Manager] Is Advertising Manager a dead product?Sorry my mouse clicked twice when I clicked once.
Forum: Fixing WordPress
In reply to: wp_commentmeta: Table ‘a39xxxx2_blog.wp_commentmeta’ doesn’t existAll I had to run was the following. If you have a prefix other then “wp_” you will need to change the first line to match what it is.
CREATE TABLE wp_commentmeta ( meta_id bigint(20) unsigned NOT NULL auto_increment, comment_id bigint(20) unsigned NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (meta_id), KEY comment_id (comment_id), KEY meta_key (meta_key) )
Forum: Fixing WordPress
In reply to: wp_commentmeta: Table ‘a39xxxx2_blog.wp_commentmeta’ doesn’t existWell after some searching I found the file that has the SQL command. It is in wp-admin/includes/schema.php. I’ll test it later as I have other things that I have to do right now.
Forum: Fixing WordPress
In reply to: wp_commentmeta: Table ‘a39xxxx2_blog.wp_commentmeta’ doesn’t existI have full rights for that database. It is a local test install. My problem is that the https://codex.www.ads-software.com/Database_Description#Table:_wp_commentmeta doesn’t provide me with enough information to make the SQL query myself. I can figure out most of it just not all of it.
Forum: Fixing WordPress
In reply to: wp_commentmeta: Table ‘a39xxxx2_blog.wp_commentmeta’ doesn’t existI’m having the same issue but I can’t find directions on how to do it exactly.
Forum: Themes and Templates
In reply to: Scripts not closing connections on database. HELP!It is more likely that you are experiencing load issues a plugin like WP Super Cache should help with what sounds like possibly performance related issues.
The two most common causes that I’ve seen is a fubared plugin &/or a fubared theme. So if disabling the plugins didn’t resolve it & changing the theme to the default one didn’t either, then it becomes issues I’ve seen less of personally, but since it changes based on the time of the day it might be related to performance which is why I made that suggestion.