How to install wordpress on InterServer VPS using ISPConfig

cd /var/www/yourdomain.com/web/
wget https://wordpress.org/latest.zip
unzip latest.zip
mv wordpress/* .
rm -rf wordpress latest.zip
chown -R web1:client0 /var/www/nuvizo.site/web/
find /var/www/nuvizo.site/web/ -type d -exec chmod 755 {} ;
find /var/www/nuvizo.site/web/ -type f -exec chmod 644 {} ;
systemctl restart apache2

Run these commands to reset password of Database.

ispconfig_update.sh --force
mysql -u root
USE dbispconfig;
UPDATE sys_user SET pass_word = MD5('YourStrongPassword') WHERE username = 'admin';
EXIT;

Leave a Comment