-
Notifications
You must be signed in to change notification settings - Fork 54
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
Fatal Error Class Not Found #70
Comments
did you run |
Yes, i run it... 2016-07-30 17:26 GMT+02:00 Laszlo Korte [email protected]:
|
@Seymos76 does the CoreSphere folder exist in your vendor folder? |
Yes it does... 2016-08-01 2:09 GMT+02:00 Laszlo Korte [email protected]:
|
From here I can not see why it would not be working. Could you reproduce the error in a repo you can publish? |
I have the same issue (V2.8.13) ??? Update: when I execute the command "composer require coresphere/console-bundle", is not the dev-master version who is installed ... that is the problem for symfony 2.8.13 |
@benbet So if you change the version manually it works? Which version get's installed? The latest released one is 0.4.0 but I do not see any relevant changes since then. |
@laszlokorte I ve just installed on sf2.8.13 and had the same issue i've noticed that the readme wasn't the same as on github i've changed my composer.json from why the 0.2.0 isn't recognised ? |
I've tested @K4M1coder's solution but it fails because the php requirements seams not good :
Could you add ^5.5|^5.6|^7.0 for php requirements ? (if there isn't any problems with php 5.6.x versions) Thank you. |
Sounds like a local problem in your php setup. |
@PapsOu your PHP version (5.6.22-0+deb8u1) overriden by "config.platform.php" version (5.3.9) |
Thank you that was this config entry that was wrong. |
@PapsOu the entry was not wrong it was just default settings. |
Hi !
I'm on a Symfony 2.8.8 Application and i don't understand why the bundle does not work...
I got this error on running "php app/console assets:install web" and the same on running "php app/console server:run" :
Fatal error: Class 'CoreSphere\ConsoleBundle\CoreSphereConsoleBundle' not found in C:\wamp64\www\Vanessa\Application\app\AppKernel.php on line 30
Composer.json
"require": { "php": ">=5.3.9", "symfony/symfony": "2.8.*", "doctrine/orm": "^2.4.8", "doctrine/doctrine-bundle": "~1.4", "symfony/swiftmailer-bundle": "~2.3", "symfony/monolog-bundle": "~2.4", "sensio/distribution-bundle": "~5.0", "sensio/framework-extra-bundle": "^3.0.2", "incenteev/composer-parameter-handler": "~2.0", "egeloen/ckeditor-bundle": "^4.0", "friendsofsymfony/user-bundle": "~2.0@dev", "coresphere/console-bundle": "^0.2.0" },
AppKernel.php
public function registerBundles()
{
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new Front\HomeBundle\HomeBundle(),
new Admin\AdminBundle\AdminBundle(),
new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
new User\UserBundle\UserBundle(),
new FOS\UserBundle\FOSUserBundle(),
);
And routing_dev.php
_console: resource: "@CoreSphereConsoleBundle/Resources/config/routing.yml" type: extra prefix: /_console
Thanks in advance !
The text was updated successfully, but these errors were encountered: