Laravel takes a long time to respond to errors when installing msgraph-sdk-php package #56285
Unanswered
edikurniawan-dev
asked this question in
Q&A
Replies: 2 comments 3 replies
-
You have mistakenly called countd() instead of the correct method count() on the User model Go to the part of your code where you're calling: User::countd(); And fix it to: User::count(); |
Beta Was this translation helpful? Give feedback.
1 reply
-
@edikurniawan-dev could it be that the size of the html is so big (many function calls) that it needs time to be processed? Maybe also debug_backtrace() is used in a non optimal way. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I installed the package https://github.com/microsoftgraph/msgraph-sdk-php in a new project using the Laravel Inertia Starter Kit. Before installing this package, Laravel responded quickly to errors. However, after installing this package, Laravel takes a very long time to respond to errors, sometimes even tens of seconds.
Why is this happening, and what is the solution?
Before installing the package

After installing the package

Beta Was this translation helpful? Give feedback.
All reactions