Skip to content

Instantly share code, notes, and snippets.

View sebastianmoran-mainwp's full-sized avatar
🚀
Fast Lane Strategies: Turbocharging Your WordPress Website for Optimal Speed.

Sebastian Moran sebastianmoran-mainwp

🚀
Fast Lane Strategies: Turbocharging Your WordPress Website for Optimal Speed.
View GitHub Profile
@sebastianmoran-mainwp
sebastianmoran-mainwp / Custom DB tables
Created October 8, 2020 04:07
AcyMailing plugin custom database tables
wp_acym_action
wp_acym_automation
wp_acym_campaign
wp_acym_condition
wp_acym_configuration
wp_acym_field
wp_acym_form
wp_acym_history
wp_acym_list
wp_acym_mail
@sebastianmoran-mainwp
sebastianmoran-mainwp / Custom DB tables
Created August 21, 2020 03:32
WP Statistics plugin created custom database tables
wp_statistics_exclusions
wp_statistics_historical
wp_statistics_pages
wp_statistics_search
wp_statistics_useronline
wp_statistics_visit
wp_statistics_visitor
@sebastianmoran-mainwp
sebastianmoran-mainwp / Command
Last active July 24, 2020 21:22
AMP plugin delete the validation of all URLs using a WP-CLI command
wp amp validation reset
@sebastianmoran-mainwp
sebastianmoran-mainwp / Example
Created July 17, 2020 04:18
Test a site if using Autoptimize plugin to bypass that version
https://sitedomain.com/?ao_noptimize=1
@sebastianmoran-mainwp
sebastianmoran-mainwp / Command
Created July 17, 2020 04:15
Clear Autoptimize minified cache using a WP-CLI command
wp autoptimize clear
@sebastianmoran-mainwp
sebastianmoran-mainwp / Option names
Created July 3, 2020 03:20
hCaptcha plugin for WordPress created option values
hcaptcha_api_key
hcaptcha_bbp_new_topic_status
hcaptcha_bbp_reply_status
hcaptcha_bp_create_group_status
hcaptcha_bp_reg_status
hcaptcha_cf7_status
hcaptcha_cmf_status
hcaptcha_jetpack_cf_status
hcaptcha_language
hcaptcha_lf_status
@sebastianmoran-mainwp
sebastianmoran-mainwp / Commands
Created June 25, 2020 02:09
Commands for Discourse to index content if using the Algolia plugin
cd /var/discourse
./launcher enter app
rake algolia:initialize
rake algolia:reindex_posts
@sebastianmoran-mainwp
sebastianmoran-mainwp / Custom DB tables
Created June 14, 2020 02:02
Tutor LMS custom database tables
wp_tutor_earnings
wp_tutor_quiz_attempt_answers
wp_tutor_quiz_attempts
wp_tutor_quiz_question_answers
wp_tutor_quiz_questions
wp_tutor_withdraws
@sebastianmoran-mainwp
sebastianmoran-mainwp / Command
Created June 13, 2020 00:27
Disable read only mode in Discourse
cd /var/discourse
./launcher enter app
rails c
Discourse.disable_readonly_mode(Discourse::USER_READONLY_MODE_KEY)
@sebastianmoran-mainwp
sebastianmoran-mainwp / Commands
Created June 13, 2020 00:21
Discourse restore from backup file
./launcher enter app
discourse enable_restore
discourse restore <filename.of.the.backup.tar.gz>
discourse disable_restore
cd /var/discourse
./launcher rebuild app