我正在使用一个免费的域名来主持我的非常简陋的网站,除了1 php/html页面和1 php脚本之外,什么都没有。
imagechange.php脚本如下:
<?php
unlink("images/show.png");
$images = glob("images/*.png");
copy($images[rand(0,count($images))],"images/show.png");
?>
*each time it runs, it should switch show.png to a different image
我已经安装了PHP,当我从命令行使用php -i检查phpinfo时,它显示已经安装了OpenSSL扩展。但是当我使用phpinfo()并在浏览器中访问该文件时,它没有显示openSSL扩展名。这两个文件使用相同的php.ini文件,并且openssl.so位于指定的扩展路径中。如何也为浏览器请求启用此扩展?我需要这样做,因为当我尝试打开一个使用https的遥控器时,它会显示一个错误 Warning: fopen(): Unable to find the wrapper "https" - did you forget to enable it when you confi
我正在尝试运行贝宝webpayments pro的php install.php。但是,当我在windows server 2003上尝试从命令行执行php -the directory- install.php时,它返回错误:
INSTALLATION ERROR: one or more extensions are missing: cURL
我已经三次检查了我的php.ini和phpinfo(),它们都显示cURL已启用并已安装。我试图安装它的目录是在D盘,而php.ini文件在C盘,不确定这是否与它有关,但是phpinfo会告诉我是否在错误的ini文件上启用了curl,所以我被难住了