0
I installed wordpress following these steps:
Steps to Install Wordpress in Ubuntu 16.04
Step 1: Update the System
#apt-get update
Step 2: Install LAMP Server
#apt-get install lamp-server^
Step 3: Wordpress Database Initialization
#mysql -u root -p
Commands
CREATE DATABASE wordpressdb;
CREATE USER wordpressuser@localhost IDENTIFIED BY 'wordpresspassword';
GRANT ALL PRIVILEGES ON wordpressdb.* TO wordpressuser@localhost;
FLUSH PRIVILEGES;
exit
Step 4: Installing Wordpress
#cd /tmp
#wget http://wordpress.org/latest.zip
#unzip -q latest.zip -d /var/www/html/
#chown -R www-data:www-data /var/www/html/wordpress
#chmod -R 755 /var/www/html/wordpress
#mkdir -p /var/www/html/wordpress/wp-content/uploads
#chown -R www-data:www-data /var/www/html/wordpress/wp-content/uploads
Now I went to install a theme and appeared:
**O arquivo ultrapassa o limite definido em upload_max_filesize no php.ini.**
How to increase the defined size?
Local machine or some accommodation?
– Don't Panic
Marquina local @Everson
– Junior Vilas Boas