PHP Heroku - 调用未定义的函数mb_detect_encoding()

时间:2014-08-31 00:27:23

标签: php heroku composer-php

我正在尝试将一些php项目部署到heroku。我使用具有所需依赖关系的作曲家slim frameworksimple_http_dom。这是composer.json的内容:

{
    "require": {
        "slim/slim": "2.4.3",
        "shark/simple_html_dom": "dev-master"
    }
}

当我在本地运行此应用程序时,它的工作就像一个魅力。

我的应用程序成功推送到heroku。当我尝试从浏览器访问它时出现问题。它什么也没出现。这是我从heroku logs命令得到的错误的一些线索。

2014-08-31T00:14:38.052441+00:00 app[web.1]: [Sun Aug 31 00:14:37.566291 2014] [proxy_fcgi:error] [pid 60:tid 140467698300672] [client 10.2.162.208:58783] AH01071: Got error 'PHP message: PHP Fatal error:  Call to undefined function mb_detect_encoding() in /app/vendor/shark/simple_html_dom/simple_html_dom.php on line 1234\n', referer: http://myapp.herokuapp.com/index.php/scrap/all
2014-08-31T00:14:38.052437+00:00 app[web.1]: 10.2.162.208 - - [31/Aug/2014:00:14:37 +0000] "POST /index.php/scrap/all/do HTTP/1.1" 500 - "http://myapp.herokuapp.com/index.php/scrap/all" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.94 Safari/537.36"
2014-08-31T00:14:38.052443+00:00 app[web.1]: [31-Aug-2014 00:14:37] WARNING: [pool www] child 58 said into stderr: "NOTICE: PHP message: PHP Fatal error:  Call to undefined function mb_detect_encoding() in /app/vendor/shark/simple_html_dom/simple_html_dom.php on line 1234"
它说:

Got error 'PHP message: PHP Fatal error: Call to undefined function mb_detect_encoding() in /app/vendor/shark/simple_html_dom/simple_html_dom.php on line 1234\n', referer: http://myapp.herokuapp.com/index.php/scrap/all

这是我第一次收到此错误。我在heroku上运行了另一个使用相同依赖项的项目(但是没有作曲家)并且它运行顺利。

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:3)

问题是默认情况下未启用mbstring扩展程序,请参阅https://devcenter.heroku.com/articles/php-support#extensions

只需将ext-mbstring作为依赖项添加到composer.json,所以它看起来像这样:

{
    "require": {
        "ext-mbstring": "*",
        "slim/slim": "2.4.3",
        "shark/simple_html_dom": "dev-master"
    }
}

Heroku将在git push时自动启用扩展程序。