Fatal error: Class 'Illuminate\Console\Command' not found - php

I've been trying to run a cron task in my server using Laravel. The problem is that I'm getting this error every time.
Fatal error: Class 'Illuminate\Console\Command' not found
I've been trying running the composer install and composer dump-autoload, but nothing changes. I keep getting this error.
I have checked my vendor folder in Illuminate/Console/Command.php and everything is in the right place.
How can I solve it or what could be causing it?

Related

PHP Fatal Error with Userfrosting now server always shows Error 500

I was managing my server and after a composer update I receive this message:
PHP Fatal error: Uncaught TypeError: Argument 1 passed to UserFrosting\System\Facade::setFacadeContainer() must be an instance of Interop\Container\ContainerInterface, instance of Slim\Container given, called in /home/arteller/www/userfrosting/app/system/UserFrosting.php on line 53 and defined in /home/arteller/www/userfrosting/app/system/Facade.php:210
After this, I receive only 500 Internal Error from my server.
The error persists every time I also try to use the command "php bakery bake" or something related to bakery.
Anyone can help?
You need to update to UserFrosting 4.3.3 or later, and run composer update again. This issue was introduced by Slim, which introduced a breaking change recently.

PHP Fatal error: Class 'WP_UnitTestCase' not found - phpunit

I know that it already has answer in PHP Fatal error: Class 'WP_UnitTestCase' not found when trying to run test-sample But it doesn't fixed my issue. I am trying to initialize php unit testing with my wordpress plugin using phpunit. I found this tutorial and it was easy to follow. Here's the link
https://www.smashingmagazine.com/2017/12/automated-testing-wordpress-plugins-phpunit/
Everything was working great until the below step.
When I came to this Step in tutorial where the command I tried to run
phpunit tests/test-sample.php
and I get:
PHP Fatal error: Class 'WP_UnitTestCase' not found in PHP Fatal error: Class 'WP_UnitTestCase' not found in /var/www/html/testwordpress/wp-content/plugins/wp-ultimate-csv-importer/tests/test-sample.php on line 11
I don't Know how to solve this issue. I found the same question in Stackoverflow. Here's the Link:
PHP Fatal error: Class 'WP_UnitTestCase' not found when trying to run test-sample
But it was in windows. Somehow he managed to fix it. I checked his solution and it says that issue in MySQL.
But in my case, MySQL works fine and I am in linux with the flavor of Ubuntu. Help me with some solutions to fix this problem in Linux

File not found with Google Calendar API

I am having trouble doing the quickstart.php using the Composer dependency manager.
I have used Composer in order to require the Google Calendar API. autoload.php is present in the vendor folder. And I am just running the code from this page: https://developers.google.com/google-apps/calendar/quickstart/php
The error I am getting is
Fatal error: Uncaught Error: Class 'Google_Service_Calendar'
on quickstart.php line 12.
Does anyone know how I can fix this?
I've tried using: composer dump-autoload which has done nothing to remedy this.
Thanks!

Laravel 4 ReflectionException error

exception 'ReflectionException' with message
Class Chrono\Services\Controllers\Frontend\KeywordController does not exist
in /home/legal/vendor/laravel/framework/src/Illuminate/Container/Container.php:296
I am installing a site on liquidweb.com and I am getting the above error.
Has anyone ever gotten this error before?
Don't forget to php composer dump-autoload
It seems that Laravel can't find this class, and won't initialize it.

Paypal PHP SDK Not found! Fatal error: Class 'string' not found

I need to execute the phpsdk paypal samples on:
http://www.fastbreakplay.com/preview/paypal/sample/
but I get the following error:
Fatal error: Class 'string' not found in
/home/fastbre/public_html/preview/paypal/sample/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/Model.php
on line 53
The product you are using is rest-api-sdk-php
https://github.com/paypal/rest-api-sdk-php
If you look under issues, two days ago there
was an issue reported that may be related to
your problem.
https://github.com/paypal/rest-api-sdk-php/issues/4
As you can see in the issue, they had some
issues updating. That could have messed up
all kinds of things. They were suggesting
removing the vendor folder and
composer.lock files; then doing a composer update.
Since your problem was in the vendor directory, and
you may have been installing around the time of
this update issue, you may want to try their
suggestion.

Categories