luk3thomas
Forum Replies Created
-
Forum: Plugins
In reply to: [Bulk Content Creator] [Plugin: Bulk Content Creator] bbPress supportI see, I’ll have to research bbPress. Feel free to send a PR if you know of a fix:
https://github.com/luk3thomas/wpBulkContentCreatorForum: Plugins
In reply to: [Bulk Content Creator] [Plugin: Bulk Content Creator] Add CategoryOh, and I’ll look into adding this in the next release. Sorry again for the delay.
Forum: Plugins
In reply to: [Bulk Content Creator] [Plugin: Bulk Content Creator] Add CategorySorry for not replying. I never got notified of these posts. If you any more issues or enhancements you want, post them here:
https://github.com/luk3thomas/wpBulkContentCreator/issuesForum: Plugins
In reply to: [Regenerate Thumbnails] [Plugin: Regenerate Thumbnails] Odd PHP when failingFixed for me – was permissions related.
Note: I did this in my development environment, wouldn’t do this in production:
cd wp-content sudo chmod 0777 uploads -R
Forum: Fixing WordPress
In reply to: A cause of the "submit for review" problemI was having the same problem, I was getting the ‘Submit for Review’ error when I tried to publish a post.
Summary of problem:
- Problem occured after an import
- Auto-drafts and newly created users were saving to the database with an ID == 0
Solution:
- Delete all entries from the database with a primary key == 0 (posts, users, etc)
- Reset the primary key fields for all the tables to
AUTO_INCREMENT
Here is the sql code (you’ll want to check any tables created by your plugins and re AUTO_INCREMENT those as well) (Here is a text file with the code – pretty formatting ):
ALTER TABLE
sswp_commentmetaCHANGE
meta_idmeta_id` BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_comments
CHANGEcomment_ID
comment_ID
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_links
CHANGElink_id
link_id
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_options
CHANGEoption_id
option_id
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_postmeta
CHANGEmeta_id
meta_id
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_posts
CHANGEID
ID
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_terms
CHANGEterm_id
term_id
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_term_taxonomy
CHANGEterm_taxonomy_id
term_taxonomy_id
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_usermeta
CHANGEumeta_id
umeta_id
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_users
CHANGEID
ID
BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
~`
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Problems with Selectable Recipient with PipesHere is how I fixed the problem I was having:
I filled in all the fields. When one of the non-required fields was left blank, CF7 would return an error message and the form would not submit.To fix this I just made all the fields in my contact form required. Solved it for me – hope that helps.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Problems with Selectable Recipient with PipesI’m having the same problem. Subscribing to post – will post back if I find a solution
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 disabled JS?Yep