File README.SUSE of Package wordpress
This is SuSE README for wordpress
Wordpress is installed to /srv/www/wordpress.
An apache mapping is setup to allow it to be accessed at http://your.domain.com/wp
1) Decide on the database name, user name, and password for wordpress to use. The database should be unique to workdpress.
update /etc/wordpress/wp-config.php to reflect your choices.
also replace the 8 lines defining keys and salts with the output of https://api.wordpress.org/secret-key/1.1/salt/
create mysql database, and allow access
Make sure the mysql service is available
sudo systemctl enable mysql.service
sudo systemctl start mysql.service
Set your sqldb to be secure
sudo mysql_secure_installation
mysql -u root -p
Enter password:
CREATE DATABASE wordpress;
CREATE USER wordpressuser@localhost;
GRANT ALL PRIVILEGES ON wordpress.* TO wordpressuser@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
exit
2) open browser and go to:
http://your.domain.com/wp
3) If php files are downloaded and not executed on the server, make sure php is enabled in apache2
a2enmod mod_php7
4) If the basic theme is working, but you can't install alternate themes, makes sure php7-curl and php7-zlib are installed
zypper in php7-curl php7-zlib
Have FUN :)