使用 PHP 驱动程序访问 mongoDB 数据库时遇到问题。 当我在本地运行以下代码时:
<?php
echo "Connecting";
$manager = new MongoDB\Driver\Manager("mongodb://localhost:28124");
echo "Connected";
?>
它有效。 但是,当我从浏览器远程访问这个php文件时,我只看到“正在连接”,然后网页挂起,内部服务器错误500.
我正在使用:
PHP 5.6.25(cli)
MongoDB:1.1.8
Apache:2.2.22
任何想法?!?!?!?
答案 0 :(得分:0)
没有日志就无法追踪问题。
请检查您的默认日志,该日志应位于“/ var / log / httpd / error_log”或“/var/log/apache2/error.log”(自定义日志可能无法获取所有信息)并提供详细信息。
如果您没有从日志中获取任何内容,请在启用PHP登录后重试。
在php.ini(apache目录)中:
从下面的行前面删除分号
display_errors = On
display_startup_errors = On
error_reporting = E_ALL
将值设置为
#include <stdio.h>
/* no of item purchased>1000 then discount of 10% else full price */
int main()
{
int n;
float r,p,d,t;
printf("Enter the no of item purchased");
scanf("%d", &n);
printf("Enter the price per item");
scanf("%f", &r);
if(n > 1000)
{
p = n * r;
printf("Price before discount = %f\n", p);
d = 10 / 100 * p; //please have a carefull look at d
printf("discount offered is = %f\n", d);
t = p - d;
printf("total price after discount = %f\n", t);
}
else
{
p = n * r;
printf("total price is = %f", p);
}
return 0;
}
重启服务器,运行脚本,出错,再次检查日志。
注意:完成后将php.ini重置为默认值。错误记录会给执行带来很大的开销。