File Upload
Move into the installation folder. Below is an example of how to perform this operation.
cd /var/www/pterorust-wi
Navigate to ‘Account’ > ‘Downloads’ and download the latest version. Upload the downloaded pterorust_wipeinterface_x.x.x.zip
into /var/www/pterorust-wi
and then unzip it using
unzip -o pterorust_wipeinterface_x.x.x.zip
Set Permissions
Set the correct permissions on the WI files so that the webserver can use them correctly.
# If using NGINX or Apache (not on CentOS): chown -R www-data:www-data /var/www/pterorust-wi/* # If using NGINX on CentOS: chown -R nginx:nginx /var/www/pterorust-wi/* # If using Apache on CentOS chown -R apache:apache /var/www/pterorust-wi/*
Set the correct permissions on the storage/
and bootstrap/cache/
by issuing the following command:
chmod -R 755 storage/* bootstrap/cache/
Database Migration
Make sure to migrate new database tables by issuing
php artisan migrate --force
Clear Compiled Templates/Views Cache
Make a copy of the example configuration.
php artisan view:clear php artisan config:clear