本文介绍了安装php5-curl软件包后Cakephp无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Android应用程序,它调用了Web服务器的功能(使用cakephp)。并返回类似调用未定义函数curl_init()的错误。
我在Google上进行了一些搜索,并尝试通过安装php5-curl软件包来解决该错误,但是在安装了此软件包之后,网络服务器无法再工作了。它返回

does anyone know how to fix it?Thanks in advance.

解决方案

Please check if your CakePHP /app/tmp/cache folder is writable. I faced similar issue with CakePHP 1.3 and realized it was due to the cache folder's permission. Hope this helps.

In your terminal, type the following command to allow the CakePHP folder to be writable:-

chmod -R 777 /your_root_directory/your_site_name/app/tmp/cache

这篇关于安装php5-curl软件包后Cakephp无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 14:59