php artisan cache:clear <enter>
php artisan key:generate <enter>
Done!
php artisan cache:clear <enter>
php artisan key:generate <enter>
sudo mv /usr/lib/vmware/modules/binary /usr/lib/vmware/modules/binary.old
sudo vmware-modconfig --console --install-all --appname="VMware Player" --icon="vmware-player"
Error Code: 1140. In aggregated query without GROUP BY, expression #1 of SELECT list contains nonaggregated column 'dbname.a.column_name'; this is incompatible with sql_mode=only_full_group_by
SELECT @@sql_mode;
ONLY_FULL_GROUP_BY
SET sql_mode = '';
application/config/config.php
Change value $config['uri_protocol'] = "AUTO";
to $config['uri_protocol'] = "REQUEST_URI";
try_files $uri $uri/ /index.php?r=$request_uri;
on nginx.conf file located at /etc/nginx/nginx.conf
. The nginx.conf file should be like this: location / { index index.php; try_files $uri $uri/ /index.php?r=$request_uri; }
service nginx restart
Options -Indexes
sudo chmod 755 .htaccess