login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Fout met zend (Opgelost)

Offline tomie94 - 22/12/2008 17:53 (laatste wijziging 22/12/2008 17:58)
Avatar van tomie94PHP interesse Hallo,

Ik ben sinds kort bezig met Zend, en ben nu de Quickstart aan het volgen. Helaas wil mijn host de document root niet aanpassen en staat de public folder nu gewoon in de root folder, hiervoor heb ik in index.php een aantal mappen aangepast, zodat de includes allemaal kloppen. Index.php bevat momenteel:
  1. <?php
  2. // public/index.php
  3. //
  4. // Step 1: APPLICATION_PATH is a constant pointing to our
  5. // application/subdirectory. We use this to add our "library" directory
  6. // to the include_path, so that PHP can find our Zend Framework classes.
  7. define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/application/'));
  8. APPLICATION_PATH . '/../library'
  9. . PATH_SEPARATOR . get_include_path()
  10. );
  11.  
  12. // Step 2: AUTOLOADER - Set up autoloading.
  13. // This is a nifty trick that allows ZF to load classes automatically so
  14. // that you don't have to litter your code with 'include' or 'require'
  15. // statements.
  16. require_once "Zend/Loader.php";
  17. Zend_Loader::registerAutoload();
  18.  
  19. // Step 3: REQUIRE APPLICATION BOOTSTRAP: Perform application-specific setup
  20. // This allows you to setup the MVC environment to utilize. Later you
  21. // can re-use this file for testing your applications.
  22. // The try-catch block below demonstrates how to handle bootstrap
  23. // exceptions. In this application, if defined a different
  24. // APPLICATION_ENVIRONMENT other than 'production', we will output the
  25. // exception and stack trace to the screen to aid in fixing the issue
  26. try {
  27. require 'application/bootstrap.php';
  28. } catch (Exception $exception) {
  29. echo '<html><body><center>'
  30. . 'An exception occured while bootstrapping the application.';
  31. if (defined('APPLICATION_ENVIRONMENT')
  32. && APPLICATION_ENVIRONMENT != 'production'
  33. ) {
  34. echo '<br /><br />' . $exception->getMessage() . '<br />'
  35. . '<div align="left">Stack Trace:'
  36. . '<pre>' . $exception->getTraceAsString() . '</pre></div>';
  37. }
  38. echo '</center></body></html>';
  39. exit(1);
  40. }
  41.  
  42.  
  43. // Step 4: DISPATCH: Dispatch the request using the front controller.
  44. // The front controller is a singleton, and should be setup by now. We
  45. // will grab an instance and call dispatch() on it, which dispatches the
  46. // current request.
  47. Zend_Controller_Front::getInstance()->dispatch();


Als ik nu naar http://localhost ga krijg ik de volgende errror:
[error=php]

Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in C:\xampp\htdocs\library\Zend\Controller\Dispatcher\Standard.php:241 Stack trace: #0 C:\xampp\htdocs\library\Zend\Controller\Front.php(934): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http)) #1 C:\xampp\htdocs\index.php(48): Zend_Controller_Front->dispatch() #2 {main} thrown in C:\xampp\htdocs\library\Zend\Controller\Dispatcher\Standard.php on line 241[/error]

Weet iemand wat dit te betekenen heeft?

Tom

PS: Bedacht me net dat een screentje van de mappen handig kan zijn: http://img253.i...eenvk8.gif

3 antwoorden

Gesponsorde links
Offline Martijn2008 - 22/12/2008 18:17
Avatar van Martijn2008 PHP beginner Hoi Tommie94,

Ik probeer ook Zend Framework te leren, gebruik daarbij de tutorial reeks van Stijn, die je hier ook op Sima kunt vinden. Waarschijnlijk kom je daar wel wat verder mee. Succes:)!

Martijn
Offline lemoinet - 22/12/2008 18:51
Avatar van lemoinet PHP gevorderde verander eens index.phtml.php naar index.phtml
Offline tomie94 - 22/12/2008 19:14
Avatar van tomie94 PHP interesse
lemoinet schreef:
verander eens index.phtml.php naar index.phtml


dom:), dat ik dat niet gezien had, ik denk dat m'n editor daarvoor gezorgt heeft.

Heel erg bedankt!

Tom
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.201s