WP-CLI Import Content

Rather than using the WordPress admin to import a WXR file, you might find it helpful to use WP-CLI instead. By importing with WP-CLI instead of the WordPress admin, you’ll also have additional options available to you, such as skipping certain types of data. Importing WordPress WXR (.xml) Files To perform a simple import of … Read more

Apache sub post/page not found

In gara-gara setting di apache2.conf, sudo nano /etc/apache2/apache2.conf Ganti : <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> Dengan : <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>

Apache error “Could not reliably determine the server’s fully qualified domain name”

This is just a friendly warning and not really a problem (as in that something does not work). If you go to: /etc/apache2/apache2.conf and insert: ServerName localhost and then restart apache by typing into the terminal: sudo systemctl reload apache2 the notice will disappear. If you have a name inside /etc/hostname you can also use that name … Read more

Setting Apache, Mysql, PHP

Follow : https://devanswers.co/install-apache-mysql-php-lamp-stack-ubuntu-20-04/ Common Errors : Failed! Error: SET PASSWORD has no significance for user ‘root’@’localhost’ as the authentication method used doesn’t store authentication data in the MySQL server. Please consider using ALTER USER instead if you want to change authentication parameters. Solution : Login as root, sudo mysql, ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password … Read more