1

Hello i'm trying to run a laravel app inside of a wordpress envoirement,

wordpress is here: http://example.nl

laravel is here: http://example.nl/admin

but i get a white screen and no error what so-ever, i have debug enabled in the .env.

laravel log says nothing usefull

LARAVEL .htacces : located : http://example.nl/admin/public/.htaccess

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

RewriteEngine On

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

is there something i forgot?

Any help is appreciated! THanks

Rubberduck1337106092
  • 1,294
  • 5
  • 21
  • 38

1 Answers1

1

::class is only available in PHP5.5 and above.

My server had X-Powered-By: PHP/5.4.16.

Paul T. Rawkeen
  • 3,994
  • 3
  • 35
  • 51
Rubberduck1337106092
  • 1,294
  • 5
  • 21
  • 38