Title: autotutorial's Replies - page 18 | 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 - 256 through 270 (of 706 total)

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12165128)
 * [https://en.wikipedia.org/wiki/Integrated_development_environment](https://en.wikipedia.org/wiki/Integrated_development_environment)
   
   IDE for PHP [https://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php](https://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12165005)
 * are you able to use a php IDE, set it with UTF-8 encoding without BOM?
    [https://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php](https://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php)
   A php IDE shows you syntax errors
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164961)
 * I understand that you are frustrated, you asked why you had the mistake and I
   told you how to solve.
    Even if before it didn’t show the error this indicates
   that it worked with the error (not that the code is written correctly)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164903)
 * `Parse error: syntax error, unexpected '$table_prefix' (T_VARIABLE) in /kunden/
   xyz-123/Website XYZ/wp-config.php on line 113`
    this indicates a syntax error
   on line 113 or earlier. from line 113 or before it verifies to replace the grave
   accent with `'` and each variable ends with `;`
 * before copying your error use the tag code for opening and the tag code for closing(
   click on code in the forum editor)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164747)
 * make sure that each php statement ends with a semicolon `;` end for $table_prefix
   and other php variables or functions.
    **Correct**: `$table_prefix = 'wp_';` **
   Bad**: `$table_prefix = 'wp_'` Example bad function:
 *     ```
       function my_function() {
       return false
       }
       ```
   
 * note missing `;`
 * Example good function:
 *     ```
       function my_function() {
       return false;
       }
       ```
   
 * Note `;`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164643)
 * Change:
    `define('DISALLOW_FILE_EDIT',true);` For PHP never use [https://en.wikipedia.org/wiki/Grave_accent](https://en.wikipedia.org/wiki/Grave_accent)
   but this `'` or this `"`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164533)
 * Yes, you have bad code into wp-config, replace your DISALLOW_FILE_EDIT with this
   [https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164510](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164510)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems updating from PHP PHP 7-71 (7.1.32)](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/problems-updating-from-php-php-7-71-7-1-32/#post-12164510)
 * Set this Correct.
    `define('DISALLOW_FILE_EDIT',true);` into your wp-config.php
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multisite wp-admin keeps logging me out](https://wordpress.org/support/topic/multisite-wp-admin-keeps-logging-me-out/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/multisite-wp-admin-keeps-logging-me-out/#post-12164023)
 * [https://wordpress.org/support/article/htaccess/](https://wordpress.org/support/article/htaccess/)
   please your .htaccess [https://wordpress.org/support/topic/multisite-wp-admin-keeps-logging-me-out/#post-12159816](https://wordpress.org/support/topic/multisite-wp-admin-keeps-logging-me-out/#post-12159816).
    -  This reply was modified 6 years, 6 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: [Upgrading WP 3.7.31 site & PHP 7.2](https://wordpress.org/support/topic/upgrading-wp-3-7-31-site-php-7-2/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/upgrading-wp-3-7-31-site-php-7-2/#post-12161948)
 * if you have backups of the files and the database of 3.7.31 access the site **
   do not log out**, make sure you set the default theme ( [https://github.com/WordPress/WordPress/blob/3.7.31/wp-includes/default-constants.php#L314](https://github.com/WordPress/WordPress/blob/3.7.31/wp-includes/default-constants.php#L314)
   if you started from this version, check your local file as a set theme) and obviously
   have it updated .. disable all plugins or try to update all plugins for the WordPress
   version 5.3), download at least WordPress 4.9.12 [https://wordpress.org/download/releases/](https://wordpress.org/download/releases/)(
   the core supports php 7.2 [https://wordpress.org/support/wordpress-version/version-4-9/#miscellaneous](https://wordpress.org/support/wordpress-version/version-4-9/#miscellaneous))
   go up [http://domain.com//wp-admin/upgrade.php](http://domain.com//wp-admin/upgrade.php)
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Docker Curl(7): error; cannot access pages from dashboard](https://wordpress.org/support/topic/docker-curl7-error-cannot-access-pages-from-dashboard/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/docker-curl7-error-cannot-access-pages-from-dashboard/#post-12161904)
 * Your error indicates that it was not possible to connect.
    Firewall block (on
   the port), proxy, Docker. Setting to ALL will then allow you to use Permalinks(
   then for WordPress).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upgrading WP 3.7.31 site & PHP 7.2](https://wordpress.org/support/topic/upgrading-wp-3-7-31-site-php-7-2/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/upgrading-wp-3-7-31-site-php-7-2/#post-12161747)
 * PHP 5.2.4 from WordPess 3.2 to WordPress 5.1. PHP 5.6.20-7.3 WordPress 5.2 , 
   WordPress 5.3 PHP 5.6.20-7.4.
 * if you can use at least PHP 5.2.4 everything works like a charm (of course sometimes
   the core has code changes, so it’s safe to use a tested plugin for the current
   wordpress version).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multisite wp-admin keeps logging me out](https://wordpress.org/support/topic/multisite-wp-admin-keeps-logging-me-out/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/multisite-wp-admin-keeps-logging-me-out/#post-12159816)
 * hello, sorry some information is missing, you can enable hidden files from settings(
   cPanel or FTP client), I need what you wrote in your .htaccess file
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why does the REST api use the home_url?](https://wordpress.org/support/topic/why-does-the-rest-api-use-the-home_url/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/why-does-the-rest-api-use-the-home_url/#post-12159296)
 * the multisite installation (only) works with the rewriting of the url to identify
   each blog_id.
    Multisite on Root: subfolder(it’s a it’s a path,does not create
   a folder) [http://yourdomain.com](http://yourdomain.com) (default blog of network,
   the path with which the multisite was started `$blog_id = 1`) [http://yourdomain.com/path/](http://yourdomain.com/path/)(
   $blog_id = 2).
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Docker Curl(7): error; cannot access pages from dashboard](https://wordpress.org/support/topic/docker-curl7-error-cannot-access-pages-from-dashboard/)
 *  [autotutorial](https://wordpress.org/support/users/autotutorial/)
 * (@autotutorial)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/docker-curl7-error-cannot-access-pages-from-dashboard/#post-12157605)
 * Mac Users running WordPress locally must edit their httpd.conf file editing the
   AllowOverride line to read AllowOverride All in theDirectory “/Library/WebServer/
   Documents” host instructions. For Mac OS X 10.5.x and up this file is located
   in/private/etc/apache2/users/[your-username].conf, otherwise it is located at/
   etc/httpd/httpd.conf.
 * do you read any denied rules?

Viewing 15 replies - 256 through 270 (of 706 total)

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