-
Notifications
You must be signed in to change notification settings - Fork 11.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Other Laravel projects get failure when one of them calls an API #20207
Comments
@martinrios95 This is a server configuration problem on your end. |
But neither Apache Server or PHP made me a fatal error, only MySQL-related. All the projects we work are on my dev-server. Oh, I forgot, we work on AppServ 8.4.0 (PHP and MySQL version were updated due to technical reasons)... |
Two sites on Apache on Windows? Upgrade to Laravel 5.4 (since 5.0 is no longer supported) and run |
Thank you! I've found the problem... It was related from PHP-dotenv issue here. So, I'll try upgrading Laravel and see if this problem disappears from the sites. |
Description:
When I was running a function on routes section on my Laravel project (path-to-project/app/Http/routes.php), my developer partner, working in another project but in the same framework and host (we're using the same development-web-server to work on distinct projects), had a syntax error on a query my partner had to get, referencing my database I was working.
The function calls Google Maps API to search and update geographic coordinates, the HTTP-request makes it on JSON.
Then, when the script finished, my partner could continue working as well.
Steps to Reproduce:
Route::get('home', function(){ // Put your database code or call an API... });
The text was updated successfully, but these errors were encountered: