Title: autotutorial's Replies - page 47 | WordPress.org

---

# autotutorial

  [  ](https://wordpress.org/support/users/autotutorial/)

 *   [Profile](https://wordpress.org/support/users/autotutorial/)
 *   [Topics Started](https://wordpress.org/support/users/autotutorial/topics/)
 *   [Replies Created](https://wordpress.org/support/users/autotutorial/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/autotutorial/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/autotutorial/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/autotutorial/engagements/)
 *   [Favorites](https://wordpress.org/support/users/autotutorial/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 691 through 705 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
[1](https://wordpress.org/support/users/autotutorial/replies/?output_format=md) 
[2](https://wordpress.org/support/users/autotutorial/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/autotutorial/replies/page/3/?output_format=md)…
[46](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
47 [48](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)
[→](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Locked out of wordpress website](https://wordpress.org/support/topic/locked-out-of-wordpress-website/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/locked-out-of-wordpress-website/#post-11472223)
 * [https://plugins.trac.wordpress.org/browser/wp-force-https/trunk/readme.txt](https://plugins.trac.wordpress.org/browser/wp-force-https/trunk/readme.txt)
 *     ```
       Installation
       This section describes how to install the plugin and get it working.
   
       Upload the wordpress-force-https.php file to the /wp-content/mu-plugins/ directory.
       Make sure you have define('FORCE_SSL_ADMIN', true); in your wp-config.php
       ```
   
 * Remove the wordpress-force-https.php to the /wp-content/mu-plugins/ directory.
   
   Remove define(‘FORCE_SSL_ADMIN’, true); in your wp-config.php
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Need Custom Fields Help](https://wordpress.org/support/topic/need-custom-fields-help/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/need-custom-fields-help/#post-11472204)
 * CAN I USE THIS PLUGIN WITH THE NEW EDITOR (AKA GUTENBERG) / WORDPRESS 5.0 AND
   ABOVE?
    The new editor (Gutenberg) removes the custom fields meta box and, as
   a result, you are unable to add or edit existing code embeds. However, the plugin
   will continue to work, in all other ways.
 * However, a rather smart plugin named Custom Fields for Gutenberg will add this
   functionality back in – with that active, you can happily continue to use this
   plugin, even with WordPress 5.0 or later.
 * MY CODE DOESN’T WORK
    If your code contains the characters ]]> then you’ll find
   that it doesn’t – WordPress modifies this itself.
 * Otherwise, it’s likely to be your code and not this plugin. The best way to confirm
   this is to look at the source of the page and compare the code output with what
   you embedded. Does it match? If it does, then your code is at fault.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite redirecting https domains incorrectly](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/#post-11468615)
 * Back up your files and database.
    without revoking the certificate if you change
   from https to http all the urls match the domain (downtownbeaumont.org)? Change
   http to https now. Look and don’t change anything in the dabase wp_site, wp_x_options(
   x does not necessarily have to be an incremental integer value) and wp_blogs 
   tables wp_site is the network while in wp_blogs you find the paths of the network
   and sites. is the right domain? The remote address sets it godaddy SSL.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite redirecting https domains incorrectly](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/#post-11466962)
 * if you use a plugin and modification wp_config.php you can have more than one
   network example [http://www.multisite.org](http://www.multisite.org) [http://www.anothermultisite.com](http://www.anothermultisite.com)
   [https://wordpress.org/plugins/wp-multi-network/](https://wordpress.org/plugins/wp-multi-network/)
   don’t use it.
    Always backup file and MySQL before any modiication.
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite redirecting https domains incorrectly](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/#post-11466700)
 * with multisite you can create subdomains or directories of the same domain and
   not different.
 * Example1 directory ([https://www.multisite.org/wp/](https://www.multisite.org/wp/))
   in wp_config.php
 *     ```
       define('MULTISITE', true);
       define('SUBDOMAIN_INSTALL', false);
       define('DOMAIN_CURRENT_SITE', 'multisite.org');
       define('PATH_CURRENT_SITE', '/wp/');
       define('SITE_ID_CURRENT_SITE', 1);
       define('BLOG_ID_CURRENT_SITE', 1);
       ```
   
 * [https://www.multisite.org/wp/wp-admin/network/setup.php](https://www.multisite.org/wp/wp-admin/network/setup.php)
   
   Note* DOMAIN_CURRENT_SITE is multisite.org (network) for other different domain
   another WordPress installation.
 * Example 2 subdomain ([https://www.multisite.org/](https://www.multisite.org/))
   in wp_config.php
    Configure your DNS for subdomain of multisite.org [https://codex.wordpress.org/Tools_Network_SubPanel](https://codex.wordpress.org/Tools_Network_SubPanel)
 *     ```
       define('MULTISITE', true);
       define('SUBDOMAIN_INSTALL', true);
       $base ='/';
       define('DOMAIN_CURRENT_SITE', 'multisite.org');
       define('PATH_CURRENT_SITE', '/');
       define('SITE_ID_CURRENT_SITE', 1);
       define('BLOG_ID_CURRENT_SITE', 1);
       ```
   
 * [https://www.multisite.org/wp-admin/network/setup.php](https://www.multisite.org/wp-admin/network/setup.php)
 * [https://codex.wordpress.org/Create_A_Network](https://codex.wordpress.org/Create_A_Network)
   I’m sorry not to help with your problem but now you know the limits of a multi-
   site installation
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite redirecting https domains incorrectly](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-redirecting-https-domains-incorrectly/#post-11464866)
 * Revoked certificate [https://www.ssllabs.com/ssltest/analyze.html?d=downtownbeaumont.org](https://www.ssllabs.com/ssltest/analyze.html?d=downtownbeaumont.org)
   
   List domain cajunheritagefest.com Open ticket with Godaddy.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp-login redirects to wp-admin](https://wordpress.org/support/topic/wp-login-redirects-to-wp-admin/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/wp-login-redirects-to-wp-admin/#post-11464803)
 * [https://s2member.com/kb/kb-tag/pre-sale-faqs/](https://s2member.com/kb/kb-tag/pre-sale-faqs/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot edit existing or create new page](https://wordpress.org/support/topic/cannot-edit-existing-or-create-new-page/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/cannot-edit-existing-or-create-new-page/#post-11456373)
 * [https://github.com/elementor/elementor/issues/6890#issuecomment-461037242](https://github.com/elementor/elementor/issues/6890#issuecomment-461037242)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot edit existing or create new page](https://wordpress.org/support/topic/cannot-edit-existing-or-create-new-page/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/cannot-edit-existing-or-create-new-page/#post-11456134)
 * Install theme Oceanwp, Install Ocean extra, install plugin elementor.
 * > It should be noted, again, that you don’t necessarily need to install a demo.
   > You can design and build your very own website with WordPress, OceanWP, and
   > Elementor alone. We’ll get to that in a bit. Importing a demo simply cuts out
   > the process of having to come up with and build your own layout.
 * Import demo Ocean or importing an Elementor Template or create your layout with
   Elementor
    [https://elementor.com/blog/create-wordpress-site-oceanwp/](https://elementor.com/blog/create-wordpress-site-oceanwp/)
 * This for your error [https://docs.elementor.com/article/184-cant-edit-with-elementor](https://docs.elementor.com/article/184-cant-edit-with-elementor)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Secure connection error](https://wordpress.org/support/topic/secure-connection-error-2/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/secure-connection-error-2/#post-11455848)
 * You have to ask for more info, usually when your new provider makes the transfer
   he takes care of what to change in WordPress. Instead, if the transfer is manual,
   in addition to the url home,site change, the database url must also have the 
   substitution.
 * Read [https://codex.wordpress.org/Moving_WordPress#Changing_Your_Domain_Name_and_URLs](https://codex.wordpress.org/Moving_WordPress#Changing_Your_Domain_Name_and_URLs)
 * Always full back-up database and file WordPress. 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [is myISAM okay?](https://wordpress.org/support/topic/is-myisam-okay/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/is-myisam-okay/#post-11455747)
 * The wordpress code for creating tables does not care about which engine is by
   default. all themes and plugins should take this aspect into consideration related
   to the wordpress source code so if a plugin wants to perform a FULL TEXT search
   you must ensure that the table is in MyISAM or InnoDb 5.6.4 or the foreign keys
   InnoDb 5.x code WordPress wp-db.php hide errors bye default.
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Invalid query: Access denied”: WP is using wrong username](https://wordpress.org/support/topic/invalid-query-access-denied-wp-is-using-wrong-username/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/invalid-query-access-denied-wp-is-using-wrong-username/#post-11454378)
 * or it could be a problem of your hosting if I also visit php files that do not
   exist and I find the error to open a ticket and try it.
    I hope you can back-
   up database and prove it [https://www.a2hosting.com/kb/cpanel/cpanel-database-features/mysql-passwords-do-not-work-after-upgrade](https://www.a2hosting.com/kb/cpanel/cpanel-database-features/mysql-passwords-do-not-work-after-upgrade)
 * For WordPress 3.6
    PHP 5.2.4 MySQL 5.0
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Invalid query: Access denied”: WP is using wrong username](https://wordpress.org/support/topic/invalid-query-access-denied-wp-is-using-wrong-username/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/invalid-query-access-denied-wp-is-using-wrong-username/#post-11452646)
 * Sorry 2.0 for upgrade and 1 for repair.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Invalid query: Access denied”: WP is using wrong username](https://wordpress.org/support/topic/invalid-query-access-denied-wp-is-using-wrong-username/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/invalid-query-access-denied-wp-is-using-wrong-username/#post-11452569)
 * 2.1)Full Back-up database WordPress 3.6 , Full Back-up your original file, download
   WordPress 3.6 and see 2.0 repair database.
    [https://wordpress.org/download/release-archive/](https://wordpress.org/download/release-archive/)
   after 3.7 5.1.1 (Please check before this step wp-config corresponds to version
   3.6 with password, host, user correct permission and instruction repair database
   see 1 and 2.0)
 * 2.0)Read [https://codex.wordpress.org/Upgrading_WordPress_Extended#Upgrading_Across_Multiple_Versions](https://codex.wordpress.org/Upgrading_WordPress_Extended#Upgrading_Across_Multiple_Versions)
   *
   various istrutions and example repair database.
 * 1)Database [https://codex.wordpress.org/Editing_wp-config.php](https://codex.wordpress.org/Editing_wp-config.php)
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Admin dashboard accress limited after site migration](https://wordpress.org/support/topic/admin-dashboard-accress-limited-after-site-migration/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/admin-dashboard-accress-limited-after-site-migration/#post-11452307)
 * [https://themify.me/docs/theme-update-installation-crash](https://themify.me/docs/theme-update-installation-crash)
   
   Rename agency/ old_agency/ [https://mountainspringsroofing.com/wp-content/themes/agency/style.css](https://mountainspringsroofing.com/wp-content/themes/agency/style.css)
   copryright 2016 now 2019 🙂
 * [https://wordpress.org/support/topic/admin-dashboard-accress-limited-after-site-migration/#post-11451990](https://wordpress.org/support/topic/admin-dashboard-accress-limited-after-site-migration/#post-11451990)
 * And prove this: directory, or editing the “theme” and “stylesheet” records in
   wp_options [https://codex.wordpress.org/Common_WordPress_Errors#The_White_Screen_of_Death](https://codex.wordpress.org/Common_WordPress_Errors#The_White_Screen_of_Death)
   
   Example default value [https://onecomhelp.zendesk.com/hc/article_attachments/115010325045/en_changed-template.png](https://onecomhelp.zendesk.com/hc/article_attachments/115010325045/en_changed-template.png)
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
    -  This reply was modified 7 years ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).

Viewing 15 replies - 691 through 705 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
[1](https://wordpress.org/support/users/autotutorial/replies/?output_format=md) 
[2](https://wordpress.org/support/users/autotutorial/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/autotutorial/replies/page/3/?output_format=md)…
[46](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
47 [48](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)
[→](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)