googlearchive / symfony-standard

Symfony for GAE (originally from SensioLabs)
http://symfony.com
11 stars 5 forks source link

Unable to delete function dlUnable to delete function mb_send_mail #2

Open karthiksekarnz opened 9 years ago

karthiksekarnz commented 9 years ago

I am getting this error on both my dev environment and prod. I followed the installation steps as per the read me.

As soon as i make a request, i get this error in my logs. I visited the example path which gives this error, although i should mention, i am able to access the clear_cache route without this error

Unable to delete function dlUnable to delete function mb_send_mailERROR:root:php failure (255) with: stdout: Status: 500 Internal Server Error X-Powered-By: PHP/5.5.23 Content-type: text/html

marslangoog commented 9 years ago

Those messages are rather harmless, but the 500 means there's other errors in your app. Try turn on debug mode by setting the second argument of AppKernel's constructor to true here: https://github.com/GoogleCloudPlatform/symfony-standard/blob/2.6.3/web/app.php#L21

bshaffer commented 8 years ago

I received this same issue, and fixed it by changing runtime: php55 to runtime: php in app.yaml:

application: <project-id>
version: 1
runtime: php
api_version: 1
threadsafe: true

But before you deploy to App Engine you'll need to change it back.