<?php
// includes
set_include_path('.'
. PATH_SEPERATOR . get_include_path()
. PATH_SEPERATOR . '../library/'
. PATH_SEPERATOR . '../application'
);
// front
require_once 'Zend/Controller/Front.php';
Zend_Loader::registerAutoload();
// database connect
new DbInitialize();
// start mvc
Zend_Layout::StartMvc($option);
?>
- - -
Error is:
failed to open stream: No such file or directory in xxxxxxxxxxxxxxx/index.php on line 12
- - -
Why this happen?
// includes
set_include_path('.'
. PATH_SEPERATOR . get_include_path()
. PATH_SEPERATOR . '../library/'
. PATH_SEPERATOR . '../application'
);
// front
require_once 'Zend/Controller/Front.php';
Zend_Loader::registerAutoload();
// database connect
new DbInitialize();
// start mvc
Zend_Layout::StartMvc($option);
?>
- - -
Error is:
failed to open stream: No such file or directory in xxxxxxxxxxxxxxx/index.php on line 12
- - -
Why this happen?
Comment