localhost页面无效

时间:2016-05-17 17:24:10

标签: php iis-7 oci8

我正在使用带有php的oci8的IIS 7以及我写作时

$connection= oci_connect('username', 'password', 'localhost/XE');

并显示我的错误

  

localhost页面无效   localhost目前无法处理此请求。   HTTP ERROR 500

帮帮我

1 个答案:

答案 0 :(得分:1)

首先在IIS中擦除你的简单PHP页面

如果运行成功则运行此代码

<?php
phpinfo();
?> 

如果您无法在此页面中看到oci8驱动程序,请搜索 Oracle Instant Client for php http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html

还在system32和system

中复制相同的DLL

然后再次重启IIS,然后在 phpinfo()中查看是否显示oci8驱动程序

运行此连接代码

https://stackoverflow.com/a/36057262/2125924