-
Notifications
You must be signed in to change notification settings - Fork 3
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
Problem locating class #3
Comments
Hi, -Nick |
Hey, I run PHP 5.3.10-1ubuntu3.2 with Suhosin-Patch (cli) on ubuntu 12.04.1 LTS Meanwhile i will try to poke around code and see if i can locate problem, maybe it's my laravel setup. |
Hey @armababy, My first guess would be that this has something to do with the bundle not being loaded correctly. Can you paste your bundles.php? Also if you throw a die('test') in the bundle's start.php, it will let you know whether or not the bundle's being loaded properly. Let me know! |
Hey @janhartigan, Here's my bundles.php return array(
'crud',
'swiftmailer',
'nesty' => array('auto' => true),
'sentry' => array('auto' => true),
'theme' => array('auto' => true),
'filesystem' => array('auto' => true),
// Voto stuff
'profile' => array('auto' => true, 'handles' => 'profile'),
'restaurant' => array('auto' => true, 'handles' => 'restaurant'),
'multup' => array('auto' => true),
'resizer' => array('auto' => true)
); I could not test die statement because of that Class not found. |
Hello,
I don't know if it's my application issue or Multup so i just ask.
After downloading Multup and enabling it in bundles.php i get this error in my model when i try to use bundle:
I have tried to
But nothing changes.
For example i use CRUD and Sentry bundles in my modules with no problem when i use proper namespaces.
What could be the problem?
The text was updated successfully, but these errors were encountered: