Tutorials  (8)

How to install WordPress on OpenLiteSpeed

...account. mysql > CREATE DATABASE wordpress; mysql > GRANT ALL ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'password'; Flush the privilege table and exit from the mysql shell. mysql > flush...

How to install single node WordPress LEMP CentOS 8

...Y Enter the MySQL shell. mysql -u root -p Create the WordPress database. CREATE DATABASE wordpress; Create the WordPress user inclusive of the desired password. CREATE USER wordpressuser@localhost IDENTIFIED BY...

How to install WordPress with Docker

...wordpress -command. Run the command below while replacing the <password> as you did for the MariaDB container. docker run -e WORDPRESS_DB_USER=root -e WORDPRESS_DB_PASSWORD=<password> --name wordpress --link wordpressdb:mysql -p 80:80 -v "$PWD/html":/var/www/html...

How to set up multiple WordPress sites with EasyEngine

Build your own lightning-fast WordPress development server with UpCloud & EasyEngine.io in just a few minutes. EasyEngine is a powerful CLI tool which is used to deploy WordPress sites. EasyEngine...

How to deploy WordPress with Docker Compose

...WordPress will be able to access the database. wordpress: image: wordpress links: - mariadb:mysql environment: - WORDPRESS_DB_PASSWORD=password - WORDPRESS_DB_USER=root ports: - 80:80 volumes: - ./html:/var/www/html mariadb: image: mariadb environment: -...

How to use Object Storage for WordPress media files

...WordPress pages or posts as if they were stored on your WordPress host. Conclusions Congratulations! You should now have integrated your Object Storage instance with your WordPress site greatly increasing...

How to set up multiple WordPress sites with WordOps

...see a freshly installed WordPress site with HTTPS enabled. You can log in to your WordPress admin panel by going to https://example.com/wp-admin/ and using the WordPress admin credentials that were...

How to install WordPress with CyberPanel on Ubuntu

...ready to start hosting actual content. Continue below with steps on how to install WordPress on CyberPanel. Installing WordPress with LSCache The best thing about CyberPanel is that you do...

Events  (1)

WordPress Singapore Meetup (April 2019)

This WordPress Meetup is open to all who love WordPress. WordPress Singapore is a group of local WordPress developers, designers, and publishers who get together to share knowledge and experience,...

Back to top