我试着在WAMP中设置Neo4jPHP。我在运行index.php file.时遇到错误,我已经上传了用于参考@ http://ilovec.in/neo4jphp/的文件,文件名是
Setup directory structure : dirtree.xml
index.php file as text : index.php.txt
error output : output.html请帮帮我。
发布于 2013-07-02 13:37:25
正如您的错误"cUrl extension not enabled/ installed“所述,您尚未安装或激活curl扩展。
检查您的php.ini并搜索
;extension=php_curl.dll
并删除;
extension=php_curl.dll
然后重新启动您的http服务器。
如果你没有这样的条目,要么手动输入(如果安装了扩展,也可以),或者安装它(取决于你的主机,是windows/linux吗?)
https://stackoverflow.com/questions/17418028
复制相似问题