Title: autotutorial's Replies - page 45 | 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 - 661 through 675 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/page/44/?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)…
[44](https://wordpress.org/support/users/autotutorial/replies/page/44/?output_format=md)
45 [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/46/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Website Down](https://wordpress.org/support/topic/website-down-97/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/website-down-97/#post-11498631)
 * Before back-up all file and MySQL [https://codex.wordpress.org/WordPress_Backups](https://codex.wordpress.org/WordPress_Backups)
 * Read this [https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/](https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/)
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite (single database) in subdirectories with different domain names](https://wordpress.org/support/topic/multisite-single-database-in-subdirectories-with-different-domain-names/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-single-database-in-subdirectories-with-different-domain-names/#post-11496825)
 * In other words, given the intrinsic nature of the cookies that will be visible
   for the set domain, for example the first network domain [http://www.domain1.com/wp-admin/network/](http://www.domain1.com/wp-admin/network/)(
   dashboard network) will not be able to access different domains of domain1.com(
   note that the presence or absence of the www suffix is irrelevant in this context)
   means that the super admin can not directly access the dashboard of the sites
   but should access directly to the dashboard of the sites after login on the site
   in question [http://www.domain2.org/wp-admin/network/site-info.php?id=2](http://www.domain2.org/wp-admin/network/site-info.php?id=2)(
   dashboard site) ie from the network administration, copy the link on the site
   board, then go to the site, log in and then paste the site board.
    and in this
   case you will not need to set the cookie because wordpress would decide to set
   the cookie on the current blog. You must set the cookie with define only in case
   of problems
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite (single database) in subdirectories with different domain names](https://wordpress.org/support/topic/multisite-single-database-in-subdirectories-with-different-domain-names/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-single-database-in-subdirectories-with-different-domain-names/#post-11496719)
 * Hi so your cookies will be present on any site even those external to wordpress
   and not only for the super administrator but also for all other users. create
   a site administrator for each of your sites … With the super administrator do
   not enter the site board or with the define $ _SERVER [‘HTTP_HOST’] login super
   administrator in the various sites.
    and your http_host must be an spofing anto
   [https://expressionengine.com/blog/http-host-and-server-name-security-issues](https://expressionengine.com/blog/http-host-and-server-name-security-issues)(
   you could expand the define prior)
 *     ```
       if(! empty($_SERVER['HTTP_HOST'])) {
       if($_SERVER['HTTP_HOST'] == 'www.domain1.com' || $_SERVER['HTTP_HOST'] == 'www.domain2.org' || $_SERVER['HTTP_HOST'] == 'www.domain3.en') {
       // Valid host
       define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST'] );
       }
       }
       ```
   
 * Anti spofing HTTP_HOST SERVER_NAME [https://expressionengine.com/blog/http-host-and-server-name-security-issues](https://expressionengine.com/blog/http-host-and-server-name-security-issues)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WP removed all http/https prefixes after updating to 5.1](https://wordpress.org/support/topic/wp-removed-all-http-https-prefixes-after-updating-to-5-1/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/wp-removed-all-http-https-prefixes-after-updating-to-5-1/#post-11496173)
 * If you notice no malfunctions beyond a visual level, everything works … the schema
   value is chosen by the browser if it is missing … If I open a file it will be
   flie:/// if I open with http:// if I open with https:// .. [https://en.wikipedia.org/w/index.php?title=URL&mobileaction=toggle_view_desktop](https://en.wikipedia.org/w/index.php?title=URL&mobileaction=toggle_view_desktop)
   do you miss the schema (http: or https:) only in the href value? Everything is
   fine though 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[WEBAPI ERROR][HTTP] Could not connect to host](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/#post-11496113)
 * Before any change create Backup of files and database. For manual updates of 
   the same or higher wordpress 3.7 read here “Manual update” [https://codex.wordpress.org/Updating_WordPress](https://codex.wordpress.org/Updating_WordPress)
   for manual updates on previous versions of the 3.7 click on extended upgrade 
   instructions. While for updates of themes or plugins, look at what the pages 
   of the theme say or pugin.
 * Upgrade WPMU [https://codex.wordpress.org/Upgrading_WPMU](https://codex.wordpress.org/Upgrading_WPMU)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[WEBAPI ERROR][HTTP] Could not connect to host](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/#post-11496067)
 * You need to ask your host for more information, especially request a version 
   of OpenSSL that is updated and uses a TLS 1.3 certificate (This is useful if 
   you want to communicate with servers that use this version, for example PayPal).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[WEBAPI ERROR][HTTP] Could not connect to host](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/#post-11496000)
 * Even if you don’t use jetpack in php you need OpenSSL for secure connections (
   automatic update, one-click update, theme update, plugin update)
    Your errors:
   on line 384 Plugin Update [https://github.com/WordPress/WordPress/blob/master/wp-includes/update.php#L160](https://github.com/WordPress/WordPress/blob/master/wp-includes/update.php#L160)
 * on line 160 Core update [https://github.com/WordPress/WordPress/blob/master/wp-includes/update.php#L160](https://github.com/WordPress/WordPress/blob/master/wp-includes/update.php#L160)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to block link access if visitor not referred from our wordpress site?](https://wordpress.org/support/topic/how-to-block-link-access-if-visitor-not-referred-from-our-wordpress-site/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/how-to-block-link-access-if-visitor-not-referred-from-our-wordpress-site/#post-11494653)
 * [https://wordpress.org/plugins/download-manager/](https://wordpress.org/plugins/download-manager/)
 * Back up your .htaccess many you have to enable hidden files on different ftp 
   clients, then look at this example referring to the file I recommend you show
   me the code through the code tag … You have to merge the wordpress code with 
   a band antitheft (don’t write two times RewriteEngine on RewiteBase /).
    [https://perishablepress.com/creating-the-ultimate-htaccess-anti-hotlinking-strategy/](https://perishablepress.com/creating-the-ultimate-htaccess-anti-hotlinking-strategy/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[WEBAPI ERROR][HTTP] Could not connect to host](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/webapi-errorhttp-could-not-connect-to-host/#post-11494638)
 * [https://wordpress.org/support/topic/error-updating-settings-fetchnetworkerror-2/#post-11494632](https://wordpress.org/support/topic/error-updating-settings-fetchnetworkerror-2/#post-11494632)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Error updating settings. FetchNetworkError](https://wordpress.org/support/topic/error-updating-settings-fetchnetworkerror-2/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/error-updating-settings-fetchnetworkerror-2/#post-11494632)
 * php to communicate in https/ftps must have OpenSSL installed/enable in php.ini
   and have valid certificates [https://www.php.net/manual/en/book.openssl.php](https://www.php.net/manual/en/book.openssl.php)
 * * Then I’ll explain how to exclude the wordpress cache in the admin area
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite Upload Directory Change](https://wordpress.org/support/topic/multisite-upload-dir-change/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-upload-dir-change/#post-11494458)
 * Multisite
    Uploaded File Path # Your first site on a fresh install will put uploaded
   files in the traditional location of /wp-content/uploads/, however all subsequent
   sites on your network will be in the /wp-content/uploads/sites/ folder, in their
   own subfolder based on the site number, designated by the database. These files
   will be accessible via that URL.
 * This is a change from Multisite 3.0-3.4.2, where images of subsites were stored
   in /wp-content/blogs.dir/ and were shown in [http://example.com/files/](http://example.com/files/)
   and [http://example.com/sitename/files](http://example.com/sitename/files) and
   so on. If you started with a Multisite install older than 3.5, it is not an error
   if your images show with the URL of /files/.
 * Regardless of WP version, these locations cannot be changed by site admins. Only
   the network admin can make changes on the site settings page. It is not recommended
   that you change these without understanding how both the ms-files.php works in
   conjunction with your .htaccess, as it can easily become non-functional. If the/
   files/ urls aren’t working, it’s indicative of a misconfigured .htaccess or httpd.
   conf file on your server.
 * Exampe id 2 [http://domain.com/wp-admin/network/site-settings.php?id=2](http://domain.com/wp-admin/network/site-settings.php?id=2)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Admin Login Portal Loopback Issue](https://wordpress.org/support/topic/admin-login-portal-loopback-issue/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/admin-login-portal-loopback-issue/#post-11494425)
 * According to the documentation it is not possible to use multisite on port different
   from 80 or 443 ..
    Excuse me, can you indicate if you use multise or a normal
   installation? If you want to use a multisite you can only on port 80 or 443 ..
   make backups of all your files and the database before each change.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WooCommerce Gateway PayPal Checkout requires cURL to be installed on your server](https://wordpress.org/support/topic/woocommerce-gateway-paypal-checkout-requires-curl-to-be-installed-on-your-server/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/woocommerce-gateway-paypal-checkout-requires-curl-to-be-installed-on-your-server/#post-11493789)
 * Doc php [https://www.php.net/manual/en/curl.installation.php](https://www.php.net/manual/en/curl.installation.php)
   
   enable curl [https://stackoverflow.com/questions/2939820/how-to-enable-curl-installed-ubuntu-lamp-stack#](https://stackoverflow.com/questions/2939820/how-to-enable-curl-installed-ubuntu-lamp-stack#)
 *     ```
       Enable this extention by runing :
   
       sudo gedit /etc/php/7.0/cli/php.ini
       and in the file "php.ini": search for keyword "curl" to find this line Below and change it from
   
       ;extension=php_curl.dll
   
       To:
   
       extension=php_curl.dll
   
       Next, save your file "php.ini".
   
       Finally, In your command line restart your server by running : sudo service apache2 restart.
       ```
   
 * Code plug-in [https://github.com/woocommerce/woocommerce-gateway-paypal-express-checkout/blob/master/includes/class-wc-gateway-ppec-plugin.php#L298](https://github.com/woocommerce/woocommerce-gateway-paypal-express-checkout/blob/master/includes/class-wc-gateway-ppec-plugin.php#L298)
 * please ask for more information first here [https://wordpress.org/support/plugin/woocommerce-gateway-paypal-express-checkout](https://wordpress.org/support/plugin/woocommerce-gateway-paypal-express-checkout)
   don’t do what I wrote
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Admin Login Portal Loopback Issue](https://wordpress.org/support/topic/admin-login-portal-loopback-issue/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/admin-login-portal-loopback-issue/#post-11490856)
 * [@santura](https://wordpress.org/support/users/santura/) on your profile I see
   a link with port 8012 it is only possible to create Multisite (Network) on port
   80 or 443 (default port for http and https respectively) [https://codex.wordpress.org/Before_You_Create_A_Network](https://codex.wordpress.org/Before_You_Create_A_Network)
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite Upload Directory Change](https://wordpress.org/support/topic/multisite-upload-dir-change/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [7 years ago](https://wordpress.org/support/topic/multisite-upload-dir-change/#post-11490579)
 * [https://wordpress.org/support/article/multisite-network-administration/#uploaded-file-path](https://wordpress.org/support/article/multisite-network-administration/#uploaded-file-path)

Viewing 15 replies - 661 through 675 (of 706 total)

[←](https://wordpress.org/support/users/autotutorial/replies/page/44/?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)…
[44](https://wordpress.org/support/users/autotutorial/replies/page/44/?output_format=md)
45 [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/46/?output_format=md)