当前位置: 首页 > 知识库问答 >
问题:

找不到propel.php:打开流失败:没有这样的文件或目录

葛言
2023-03-14

我刚刚安装了propel orm并完成了设置,但是在包含了lib/propel.php文件之后,它找不到propel.php文件,下面是我的代码

<?php
$projectPath = realpath( dirname( __FILE__ ) . DIRECTORY_SEPARATOR. '..');
$modelPath = $projectPath . "/model/classes";
// Include the man Propel script
require_once $projectPath . '/propel/lib/Propel.php';

// Initialie Propel with the runtime configuration
Propel::init('model/conf/ehm-conf.php');

// Add the generated 'classes' directory to the include path
//set_include_path("model/classes" . PATH_SEPARATOR . get_include_path());
set_include_path($modelPath . PATH_SEPARATOR . get_include_path());
?>

共有1个答案

丁长卿
2023-03-14

您的错误消息很清楚:没有找到文件“C:\Apache Software Foundation\Apache2.2\htdocs/propel/lib/propel.php”。因此,只需检查存储的路径,propel,并在代码中设置该路径。

测试$ProjectPath是否包含好路径

var_dump($projectPath);
 类似资料: