hey guys i was following the laravel installation guide for cloud9 IDE here and when go run the app i get following in the screen shot below
im still new so my debugging solutions are very limited, does anyone know whats wrong on cloud9 ide?
hey guys i was following the laravel installation guide for cloud9 IDE here and when go run the app i get following in the screen shot below
im still new so my debugging solutions are very limited, does anyone know whats wrong on cloud9 ide?
Under the tab called 'PHP - Running' which opens when you click the 'Run Project' button, click on where it says 'Runner: ' (between the green bug icon and 'CWD') and select 'Appache httpd (PHP, HTML)'
After changing that setting I had to log out and back in again to get the project to run, but the problem appeared to be fixed.
php -S ip_address:port_number -t public
and that still doesnt work. It just gives me a redirect to a yahoo DNS page. Any thoughts on that? –
Finnish I was facing same issue while running ZF application. Actually I was executing following command
php -S 127.0.0.1:80 -t /d/MyProjectRootFolder/
Actually I forgot to add public folder path as
php -S 127.0.0.1:80 -t /d/MyProjectRootFolder/public/
This fixed issue for me.
I had the same problem.
In my case, I added next line in routes.php Route::resource('image','ImageController');
But, in /public directory, it was /public/image directory.
Solution:
change directory's name for: /public/img
or change routes.php: Route::resource('imageSite','ImageController');
Regards!
The name (path) is the same as the file name in (general) you must change the file name
© 2022 - 2025 — McMap. All rights reserved.