今天在稍微不同的系统上遇到了类似的问题 - Win 2008 R2 / IIS 7.5 / PHP 5.3.9 nts
我正在寻找启用 php_printer.dll 进行网络打印。还没有找到不涉及编译 dll 的解决方案,但我确实了解到有人启用了安全模式。
此信息来自手册@ function.dl.php。
7 年前发布的信息帮助了我,似乎适合我的系统。
以下是我发现有用的部分,来自前点 ru 的 mag_2000:
//make sure that we are ABLE to load libraries
if( !(bool)ini_get( "enable_dl" ) || (bool)ini_get( "safe_mode" ) ) {
die( "dh_local(): Loading extensions is not permitted.\n" );
}
//check to make sure the file exists
if( !file_exists( $extensionFile ) ) {
die( "dl_local(): File '$extensionFile' does not exist.\n" );
}
//check the file permissions
if( !is_executable( $extensionFile ) ) {
die( "dl_local(): File '$extensionFile' is not executable.\n" );
}
希望有帮助!