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 -RForum: 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 TABLEsswp_commentmetaCHANGEmeta_idmeta_id` BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_commentsCHANGEcomment_IDcomment_IDBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_linksCHANGElink_idlink_idBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_optionsCHANGEoption_idoption_idBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_postmetaCHANGEmeta_idmeta_idBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_postsCHANGEIDIDBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_termsCHANGEterm_idterm_idBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_term_taxonomyCHANGEterm_taxonomy_idterm_taxonomy_idBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_usermetaCHANGEumeta_idumeta_idBIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLEsswp_usersCHANGEIDIDBIGINT ( 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