If you can access the directory in FTP, C-Panel or shell, chmod the app/storage directory with 777 permissions.
chmod 0777 /www/htdocs/accountnumber/waa/app/storage
Try something like
And put everything from /public into /accountnumber. Paths in index.php should remain the same.
Than in /bootstrap/paths.php change
'public' => __DIR__.'/../public',
// To
'public' => __DIR__.'/../accountnumber',
I haven't tried it before myself but found it in forums couple of times.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.