autotutorial
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)Forum: Fixing WordPress
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)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
A php IDE shows you syntax errorsForum: Fixing WordPress
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)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
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)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
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)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
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)Change:
define('DISALLOW_FILE_EDIT',true);
For PHP never use https://en.wikipedia.org/wiki/Grave_accent but this'or this"Forum: Fixing WordPress
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)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
Forum: Fixing WordPress
In reply to: Problems updating from PHP PHP 7-71 (7.1.32)Set this Correct.
define('DISALLOW_FILE_EDIT',true);
into your wp-config.phpForum: Fixing WordPress
In reply to: Multisite wp-admin keeps logging me outhttps://wordpress.org/support/article/htaccess/ please your .htaccess 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.
Forum: Fixing WordPress
In reply to: Upgrading WP 3.7.31 site & PHP 7.2if 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 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/ ( the core supports php 7.2 https://wordpress.org/support/wordpress-version/version-4-9/#miscellaneous ) go up http://domain.com//wp-admin/upgrade.php
Forum: Localhost Installs
In reply to: Docker Curl(7): error; cannot access pages from dashboardYour 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
In reply to: Upgrading WP 3.7.31 site & PHP 7.2PHP 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
In reply to: Multisite wp-admin keeps logging me outhello, 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
In reply to: Why does the REST api use the home_url?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 (default blog of network, the path with which the multisite was started$blog_id = 1)
http://yourdomain.com/path/ ($blog_id = 2).Forum: Localhost Installs
In reply to: Docker Curl(7): error; cannot access pages from dashboardMac 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?