bonjour j'ai mon site avec zend qui marche tres bien sur mon pc (sous windows) hier j'ai voulu le placer sur un serveur unix alors j'ai ce message

Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in /chemin physique/httpdocs/config/Bootstrap.php on line 3

je ne sais pas comment résoudre ce problème est ce que a cause des sessions ou bien autre chose

voila mon index
<?php

defined('APPLICATION_PATH') or define('APPLICATION_PATH', dirname(__FILE__));
set_include_path('.'
. PATH_SEPARATOR . './library'
. PATH_SEPARATOR . './WEB-INF/public/'
. PATH_SEPARATOR . './WEB-INF/public/models/'
. PATH_SEPARATOR . get_include_path());
include "./config/Bootstrap.php";
Bootstrap::run();

--config
----Bootstrap.php
----
--library
--WEB-INF
----public
------controllers
------models