Title: autotutorial's Replies - page 15 | 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 - 211 through 225 (of 706 total)

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WSOD when upgrading to php 7,x using mysqli](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/#post-12212626)
 * if it is set to true it forces the use of the myslq extension, if from your wp-
   config.php you delete `define('WP_USE_EXT_MYSQL',true);` or `define('WP_USE_EXT_MYSQL',
   false);` the WordPress choose mysqli for you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WSOD when upgrading to php 7,x using mysqli](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/#post-12212551)
 * I’m glad you solved it, but why was that constant set to true? did you add it
   or if it’s a plugin can you name it please? do a grep (cli command line) by looking
   for the constant in the plugins directory.
    [https://stackoverflow.com/questions/30097978/to-grep-version-number-from-wordpress-plugin-folder](https://stackoverflow.com/questions/30097978/to-grep-version-number-from-wordpress-plugin-folder)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WSOD when upgrading to php 7,x using mysqli](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/#post-12212501)
 * [https://github.com/WordPress/WordPress/blob/5.3-branch/wp-includes/wp-db.php#L614](https://github.com/WordPress/WordPress/blob/5.3-branch/wp-includes/wp-db.php#L614)
 * any plugins or in the wp-config.php file are you using this constant? **WP_USE_EXT_MYSQL**
 * see references to mysql or mysqli? drop-in file db.php
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WSOD when upgrading to php 7,x using mysqli](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/#post-12212413)
 * You can this?
    Edit:
 *     ```
       <?php
       $var_mysqli = function_exists('mysqli_connect');
       var_dump($var_mysqli); 
       ```
   
 * Constant null is deprecated from PHP 7.2.0
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WSOD when upgrading to php 7,x using mysqli](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wsod-when-upgrading-to-php-7x-using-mysqli/#post-12212129)
 * From 7.0 is removed [https://www.php.net/manual/en/function.mysql-connect.php](https://www.php.net/manual/en/function.mysql-connect.php).
   
   your error_reporting is set to read deprecation warnings is a non-wordpress server
   talk.
 * **E_DEPRECATED** [https://www.php.net/manual/en/function.error-reporting.php](https://www.php.net/manual/en/function.error-reporting.php)
 * Edit:
    if php 7.0 does not find the mysqli extension wordpress try using the 
   mysql extension … the problem is on the server because the mysqli extension is
   not used.
 * [https://www.php.net/manual/en/mysqli.construct.php](https://www.php.net/manual/en/mysqli.construct.php)
   
   read every topic of the mysqli construct and use it according to your needs, 
   create a script.php without sending private information to this forum … do you
   have anything other than false?
 * > The MySQL Native Driver is implemented using the PHP extension framework. The
   > source code is located in ext/mysqlnd. It does not expose an API to the PHP
   > programmer.
 * Mysqlnd from PHP 5.3 and mysqli extension PHP 5.0.
    [https://www.php.net/manual/en/mysqli.installation.php](https://www.php.net/manual/en/mysqli.installation.php)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can’t Get External Site HTTP_REFERER (Divi Theme)](https://wordpress.org/support/topic/cant-get-external-site-http_referer-divi-theme/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/cant-get-external-site-http_referer-divi-theme/#post-12210572)
 * [https://developer.wordpress.org/reference/functions/wp_get_raw_referer/](https://developer.wordpress.org/reference/functions/wp_get_raw_referer/)
   
   Edit:
 *     ```
       if(($my_refer = wp_get_raw_referer())) {
       //Not subdomain
       if(($var = strstr($my_refer,'somedomain')) && strlen($var) == strlen($my_refer)) {
       //Code here
       }
       }
       ```
   
 * When you say external I understand a domain outside of wordpress, it is not important
   if the theme div uses the css file cache since it is on the wordpress domain (
   with www subdomain or without).
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [WordPress Multisite uploads directory](https://wordpress.org/support/topic/wordpress-multisite-uploads-directory/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wordpress-multisite-uploads-directory/#post-12210085)
 * [WordPress media library folders](https://wordpress.org/plugins/media-library-plus/#folders%20and%20images%20added%20to%20the%20site%20by%20ftp%20are%20not%20showing%20up%20in%20media%20library%20folders)
 * > Folders and images added to the site by FTP are not showing up in Media Library
   > Folders
   >  Media Library Folders does not work like the file manager on you computer.
   > It only display images and folders that have been added to the Media Library
   > database. To display new folders that have not been added through the Media
   > Library Folders you can click the Check for new folders option in the Media
   > Library Folders submenu in the WordPress Dashboard. If you allow WordPress 
   > to store images by year and month folders, then you should click the option
   > once each month to add these auto-generated folders.
   > To add images that were upload to the site via the cPanel or by FTP, navigate
   > to the folder containing the images in Media Library Folders and click the 
   > Sync button. This will scan the folder looking images not currently found in
   > the Media Library for that folder. The Sync function only scans the current
   > folder. If there are subfolders, you will need to individually sync them.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [WordPress Multisite uploads directory](https://wordpress.org/support/topic/wordpress-multisite-uploads-directory/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wordpress-multisite-uploads-directory/#post-12209786)
 * the simple movement of files does not work because the paths are stored in the
   database, normally from WordPress 3.5 you will have /wp-content/uploads/sites/
   2/data/ (for site with id 2) for all secondary sites while for the main site 
   it is /wp-content/uploads/data/. If you export from a single site (not multisite),
   the importer only copies the `textual` path (/wp-content/uploads/date/) it is
   up to you to modify the paths to the secondary site with plugins or manually.
   
   from the network in secondary site settings you can set the path (local and/or
   remote) for uploads or use some plugins.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [functions.php file disappearing](https://wordpress.org/support/topic/functions-php-file-disappearing/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/functions-php-file-disappearing/#post-12208229)
 * When the url changes it is not enough to copy the old content to a new path but
   you have to use a plugin to rewrite the old path in the new one or if the url
   is different because you use https you can use a https plugin (technically the
   source server must accept the ip of who can change things …. cloudflare, proxy
   or himself).
    [List for method search and replace](https://wordpress.org/support/article/moving-wordpress/#changing-your-domain-name-and-urls)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [is moving wp-config outside the web root really good for security?](https://wordpress.org/support/topic/wp-security-is-moving-wp-config-outside-the-web-root-really-good-for-security/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wp-security-is-moving-wp-config-outside-the-web-root-really-good-for-security/#post-12206498)
 * Perhaps you meant a directory above the ABSPATH constant (it could be above the
   root or just a directory above). the ABSPATH constant was created to avoid ambiguity
   in the path where WordPress files reside but strangely until today the variable`
   $_SERVER['DOCUMENT_ROOT']` or `$_ENV['DOCUMENT_ROOT']` has never been corrected.
   Is used to create the network and since the constant __FILE__ translate in an
   existing physical path the root must not be a symbolic path or in virtual host
   indicates the initial path but must be a path referred to the constant ABSPATH.
   
   [https://github.com/WordPress/WordPress/blob/5.3-branch/wp-config-sample.php#L86](https://github.com/WordPress/WordPress/blob/5.3-branch/wp-config-sample.php#L86)
 * You could also insert an include function in the file where WordPress expects
   the wp-config.php file and obviously change the path of the ABSPATH constant.
   `
   define( 'ABSPATH', dirname( __FILE__ ) . '/' );`
 * `$_SERVER['DOCUMENT_ROOT'] = '/www/home/user'; //Without end slash for Unix or
   Windows`
    WordPress directory `/www/home/user/wp/` if move wp-config.php without
   include `/www/home/user/`
 * `define( 'ABSPATH', dirname( __FILE__ ) . '/wp/' );`
 * if the attacker can execute arbitration php code and look for the wp-config.php
   file (without being interpreted by php, it only reads the include function and
   knows the exact location of the true wp-config.php file after reading the path
   inside include.) To forgive my bad English. I hope he gave you an extra gear.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress not updating after code change](https://wordpress.org/support/topic/wordpress-not-updating-after-code-change/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wordpress-not-updating-after-code-change/#post-12206347)
 * you have to ask the same question every time you change hosting, what prevents
   me from seeing the changes you just made? the answer is just a **cache**. use
   chrome private mode, clear your cache of your plugins, clear your cdn’s cache,(
   the htaccess code could affect but if you use chrome private mode you always 
   see everything the right way).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [If there is a question mark on the link, how can I redirect with htaccess?](https://wordpress.org/support/topic/if-there-is-a-question-mark-on-the-link-how-can-i-redirect-with-htaccess/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/if-there-is-a-question-mark-on-the-link-how-can-i-redirect-with-htaccess/#post-12206310)
 * [https://developers.google.com/search/docs/ajax-crawling/docs/getting-started#top_of_page](https://developers.google.com/search/docs/ajax-crawling/docs/getting-started#top_of_page)
   
   Pretty url (for ajax crawling is #!) Ugly url (for ajax crawling is query string)
   From `www.example.com/ajax.html#!key=value` To `www.example.com/ajax.html?_escaped_fragment_
   =key=value` in the end you will have the snapshot `www.example.com/ajax.html#!
   key=value` you can expect to have penalties SEO from the query string that refers
   to your articles or pages, otherwise everything is correct.
 * check `about` html’s source, should be present (old) special meta tag.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [l10n.php trouble](https://wordpress.org/support/topic/l10n-php-trouble/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/l10n-php-trouble/#post-12206219)
 * Ask here [https://wordpress.org/support/plugin/mailpoet/](https://wordpress.org/support/plugin/mailpoet/)(
   current version mailpoet 3.41.0).
    WordPress 5.3 has changed something at the
   core, to solve you just have to use theme and plugins compatible with WordPress
   version 5.3
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WP PHP mismatch won’t allow me to use wp-admin to upgrade either wp or plugins](https://wordpress.org/support/topic/wp-php-mismatch-wont-allow-me-to-use-wp-admin-to-upgrade-either-wp-or-plugins/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/wp-php-mismatch-wont-allow-me-to-use-wp-admin-to-upgrade-either-wp-or-plugins/#post-12206072)
 * can you this code? (create a php script to check if the mysqli_query function
   exists) [https://www.php.net/manual/en/mysqli.query.php](https://www.php.net/manual/en/mysqli.query.php)
   
   do not disclose personal information on the forum. Ask your hosting enable PHP’s
   MySQLi Extension.
    -  This reply was modified 6 years, 5 months ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [If there is a question mark on the link, how can I redirect with htaccess?](https://wordpress.org/support/topic/if-there-is-a-question-mark-on-the-link-how-can-i-redirect-with-htaccess/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/if-there-is-a-question-mark-on-the-link-how-can-i-redirect-with-htaccess/#post-12205992)
 * the code does not exist by magic, something intervenes … it can be an old plugin,
   you have your articles with a (old) special meta tag.
    using **Pretty permalink**
   means using url rewriting, using ajax and using javascript are two different 
   things … the meta tag or **ajax** creates query strings (correct code)
    -  This reply was modified 6 years, 5 months ago by [autotutorial](https://wordpress.org/support/users/autotutorial/).

Viewing 15 replies - 211 through 225 (of 706 total)

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