Category: Error
-
Error : Failed to connect to FTP Server localhost
Set the right permissions : sudo chown -R www-data:www-data /var/www/wordpress_site_ name sudo chmod -R g+rw /var/www/wordpress_site_ name Notes : This is the basic path to the WordPress installation, it means the path has to be adapted.
-
Error establishing a database connection
In the event of a change of username for the database used by the wordpress site, check in the wp-config.php file in /var/www/sitename that the new username corresponds to that defined in the section : /** Database username */define( ‘DB_USER’, ‘new_username‘ ); Every setting of the database should match the ones defined in the file…
-
Some reasons why the error 404 not found appears when the permalink are changed
Connect via ssh or FTP to your Raspberry Check the file /etc/apache/apache2.conf Modify « AllowOverride » changing « None » with « All » <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted</Directory> Restart apache : sudo service apache2 restart
-
Change the WordPress Address (URL) manually with the database
Instructions to follow if the WordPress site URLs changed (in Settings > General) and impossibility to access the site. Notes: All the text in italics has to be adapted to your configuration, the names in italics are explicit to know with what to replace them with. Connection to the database : mysql -u hostname -p;…