Does IF support Laravel?

Just asking

thank you :slight_smile:

Laravel 5.5.0 is the last version supported with PHP 7.0, so you should be able to install apps based on Laravel 5.5.0 without problem.
But the problems start if you install apps based on Laravel with version greater than 5.6.0, that require a version of PHP greater than 7.1.0.

@Ergastolator1

do i need to setup laravel or already exists?

You need to configure the app configuration file with the new database details.

You can use Laravel with some effort, but it doesn’t work very nicely.

Laravel by default assumes that the webroot of your website can be changed to the public directory, and the other folders are not web accessible. You could edit the index.php file and move everything from the public, or add some good .htaccess rules to the main folder.

Another issue is that many administrative functions of Laravel require the Artisan command line tool, which you can’t use on the free hosting server.

Honestly, Laravel was not designed with a regular web hosting service in mind. It can work, but it won’t work well.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.