Title: autotutorial's Replies - page 40 | 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 - 586 through 600 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/page/39/?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)…
[39](https://wordpress.org/support/users/autotutorial/replies/page/39/?output_format=md)
40 [41](https://wordpress.org/support/users/autotutorial/replies/page/41/?output_format=md)…
[46](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
[47](https://wordpress.org/support/users/autotutorial/replies/page/47/?output_format=md)
[48](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)
[→](https://wordpress.org/support/users/autotutorial/replies/page/41/?output_format=md)

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Display same site from two domains on a multisite install](https://wordpress.org/support/topic/display-same-site-from-two-domains-on-a-multisite-install/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/display-same-site-from-two-domains-on-a-multisite-install/#post-11535587)
 * Hi I’m sorry for your problem [https://codex.wordpress.org/Create_A_Network](https://codex.wordpress.org/Create_A_Network)
   
   wordpress redirects if the domain does not match, also keep in mind that all 
   javascript, css files must be replaced with the appropriate domain. For not multisite:
 * [https://wordpress.org/plugins/multiple-domain-mapping-on-single-site/](https://wordpress.org/plugins/multiple-domain-mapping-on-single-site/)
   for page,post etc.
 * [https://wordpress.org/plugins/multiple-domain/](https://wordpress.org/plugins/multiple-domain/)
   for domain
 * > There is a way to add domain based logic to my themes?
   >  Absolutely. You can
   > use the MULTPLE_DOMAIN_DOMAIN constant to get the current domain. Just notice
   > that since this value is checked against plugin settings, it may not reflect
   > the actual domain in HTTP_HOST element from $_SERVER or user’s browser. It 
   > also may include the host port when it’s different than 80 (default HTTP port)
   > or 443 (default HTTPS port).
 * For multisite and multinetwork
 * [https://wordpress.org/plugins/wp-multi-network/](https://wordpress.org/plugins/wp-multi-network/)
   read all the instructions before installing
 * I’m sorry I don’t know how it’s possible to change dynamically on the multisite
   
   Multisite WordPress 4.5 or higher, secondary sites can be associated with non-
   network top-level domains without any plugins.
 * > [WordPress Multisite Domain Mapping](https://wordpress.org/support/article/wordpress-multisite-domain-mapping/)
 * Prove this
 *     ```
       // Multisite
       define( 'MULTISITE',           true                  );
       define( 'SUBDOMAIN_INSTALL',   false                 );
       define( 'PATH_CURRENT_SITE',   '/'                   );
       //or /blog/
       define( 'DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST'] );
   
       // Likely not needed anymore (your config may vary)
       //define( 'SITE_ID_CURRENT_SITE', 1 );
       //define( 'BLOG_ID_CURRENT_SITE', 1 );
   
       // Uncomment and change to a URL to funnel no-site-found requests to
       //define( 'NOBLOGREDIRECT', '/404/' );
   
       /**
        * These are purposely set for maximum compliance with multisite and
        * multinetwork. Your config may vary.
        */
       define( 'WP_HOME',    'http://' . $_SERVER['HTTP_HOST'] );
       define( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] );
       ```
   
 * and
 *     ```
       // Cookies
       //define( 'COOKIEHASH',         md5( 'yourrootdomain.com' ) );
       define( 'COOKIE_DOMAIN',      ''        );
       define( 'COOKIEPATH',         '' );
       define( 'SITECOOKIEPATH',     '' );
       define( 'ADMIN_COOKIE_PATH',  SITECOOKIEPATH );
       //define( 'TEST_COOKIE',        'thing_test_cookie' );
       //define( 'AUTH_COOKIE',        'thing_'          . COOKIEHASH );
       //define( 'USER_COOKIE',        'thing_user_'     . COOKIEHASH );
       //define( 'PASS_COOKIE',        'thing_pass_'     . COOKIEHASH );
       //define( 'SECURE_AUTH_COOKIE', 'thing_sec_'      . COOKIEHASH );
       //define( 'LOGGED_IN_COOKIE',   'thing_logged_in' . COOKIEHASH );
       ```
   
 * this is an example of a subdirectory installation for the root, blog_id and site_id
   will always be 1 for the network.
    read the last message for cookie dynamics 
   [https://wordpress.org/support/topic/multisite-single-database-in-subdirectories-with-different-domain-names/#post-11506866](https://wordpress.org/support/topic/multisite-single-database-in-subdirectories-with-different-domain-names/#post-11506866)
   for path /blog/ and /
    -  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: [Jetpack – Error Details: Unable to insert blog](https://wordpress.org/support/topic/jetpack-error-details-unable-to-insert-blog/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/jetpack-error-details-unable-to-insert-blog/#post-11535407)
 * Hi, I’m sorry for your problem write in the jetpack section for best support 
   [https://wordpress.org/support/plugin/jetpack/](https://wordpress.org/support/plugin/jetpack/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [PHP 7.3.5 array or an object that implements Countable in](https://wordpress.org/support/topic/php-7-3-5-array-or-an-object-that-implements-countable-in/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/php-7-3-5-array-or-an-object-that-implements-countable-in/#post-11535224)
 * the last update of the plugin dates back two years ago [https://wordpress.org/plugins/equal-height-columns/](https://wordpress.org/plugins/equal-height-columns/)
   to use it I manually modify the code or search for more
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multisite images not working anymore.](https://wordpress.org/support/topic/multisite-images-not-working-anymore/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-images-not-working-anymore/page/2/#post-11534973)
 * very well there are no problems loading files.
    does this folder shop really 
   exist? you can add a rewrite rule before # uploaded files RewriteRule ^([_0-9a-
   zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] `RewriteRule ^([_0-
   9a-zA-Z-]+/)?files/(.+) wp-content/blogs.dir/5/files/$2 [L]` 🙂 when this rule
   is present, do not upload any files
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multisite images not working anymore.](https://wordpress.org/support/topic/multisite-images-not-working-anymore/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-images-not-working-anymore/page/2/#post-11534673)
 * if from the site 5 loads foto.png via ftp you find it in this path wp-content/
   blogs.dir/5/files/foto.png ?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Error in WordPress editor after upgrade to WP5.2](https://wordpress.org/support/topic/error-in-wordpress-editor-after-upgrade-to-wp5-2/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/error-in-wordpress-editor-after-upgrade-to-wp5-2/#post-11533539)
 * Guterbang communicates in javascript with the REST API surely it is a cache problem
   or that php is limited by something.
    Ask your host if there is a cache somewhere?
   You need to clear your, hosting cache, CDN, plugins, your browser and check that
   there is nothing in your cpanel that uses caches or somehow makes all versions
   of php compatible (usually this also uses a cache)
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Error establishing a database connection with XAMPP](https://wordpress.org/support/topic/error-establishing-a-database-connection-with-xampp/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/error-establishing-a-database-connection-with-xampp/#post-11531877)
 * any host indicates remote access to any ip while the server is blocked on the
   local ip. I’m glad you solved it and after reading that a charity site I can 
   claim to have done something good for today 🙂
    [https://mariadb.com/kb/en/library/configuring-mariadb-for-remote-client-access/](https://mariadb.com/kb/en/library/configuring-mariadb-for-remote-client-access/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/page/2/#post-11531453)
 * Disable really simple SSL [https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531331](https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531331)
   
   Edit with http url [https://codex.wordpress.org/Changing_The_Site_URL#Edit_wp-config.php](https://codex.wordpress.org/Changing_The_Site_URL#Edit_wp-config.php)
   Enable hidden file [https://wordpress.org/support/article/changing-file-permissions/#unhide-the-hidden-files](https://wordpress.org/support/article/changing-file-permissions/#unhide-the-hidden-files)
    -  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: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/page/2/#post-11531428)
 * stef the plugin really simple ssl modify home and site in https inside the database
   for this there is the procedure described by me.
    -  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: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531381)
 * No.
    stef any plugin or theme has its procedure to be disabled now it has become
   old to rename the plug-in folder, first google go read all the notes on the plugin
   and then decide. practically set the cloudflare dns but cloudflare does not communicate
   with the name server offered by its hosting … the hosting does not receive a 
   correct name server carries out a redirection to the main domain (the initial
   registration screen, offers that is visible when you access the your hosting 
   portal)
    -  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: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531331)
 * contact your hosting currently you see the page of your hosting and not of your
   domain [http://physicsclass.ml/](http://physicsclass.ml/) … you will have wrong
   to configure the DNS
 * When you have solved the problem with your dns and want to disable really simple
   ssl go here [https://really-simple-ssl.com/knowledge-base/uninstall-websitebackend-not-accessible/](https://really-simple-ssl.com/knowledge-base/uninstall-websitebackend-not-accessible/)
   
   also make sure that with filezilla and after enabling the hidden files that in
   the .haccess file there are no redirects in https
    -  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: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531189)
 * [@serafinnyc](https://wordpress.org/support/users/serafinnyc/) stef i’m sorry
   i can’t write correctly in english but after having solved the DNS confihuration
   problem you’ll have to install the cloudflare plugin and install another plugin
   to change article ,posts with the http prefix in https … read well the title 
   mixed content solved 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531087)
 * [@serafinnyc](https://wordpress.org/support/users/serafinnyc/) the cache is not
   needed on wp-admin / indeed creates problems. If it is an installation from wordpress.
   org the hosting cannot work miracles while if it is wordpress adapted with cloudflare
   from your hosting it can avoid the problem of redirects and the cache. However
   jetpack that is managed by automatic (the one who manages wordpress) indicates
   how to disable the cache for wp-admin /.
 * I agree that the configurations for cloudflare are wrong, you have to talk to
   your hosting because we are talking about wordpress and there is hardly anyone
   who can help you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The Mixed content tests failed](https://wordpress.org/support/topic/the-mixed-content-tests-failed/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/the-mixed-content-tests-failed/#post-11531035)
 * ask your hosting if there are already cloudflare settings in your wordpress if
   they are missing you must follow this link [https://wordpress.org/support/topic/the-requested-url-wp-admin-null-was-not-found-on-this-server-error/#post-11512159](https://wordpress.org/support/topic/the-requested-url-wp-admin-null-was-not-found-on-this-server-error/#post-11512159)
 * Ask about how to enable cloudflare on your hosting 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multisite images not working anymore.](https://wordpress.org/support/topic/multisite-images-not-working-anymore/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-images-not-working-anymore/#post-11530763)
 *     ```
       Options -indexes
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # uploaded files
       RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
       RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
       RewriteRule . index.php [L]
       </IfModule>
   
       # END WordPress
       ```
   
 * Delete all htaccess files and only create this one in the main root.
    upload 
   a new image and check if you see it in the media library, if you see it it means
   that after a certain date the media library no longer shows the old uploads.

Viewing 15 replies - 586 through 600 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/page/39/?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)…
[39](https://wordpress.org/support/users/autotutorial/replies/page/39/?output_format=md)
40 [41](https://wordpress.org/support/users/autotutorial/replies/page/41/?output_format=md)…
[46](https://wordpress.org/support/users/autotutorial/replies/page/46/?output_format=md)
[47](https://wordpress.org/support/users/autotutorial/replies/page/47/?output_format=md)
[48](https://wordpress.org/support/users/autotutorial/replies/page/48/?output_format=md)
[→](https://wordpress.org/support/users/autotutorial/replies/page/41/?output_format=md)