google app engine - The PHP runtime cannot be run with the "Memcache" PECL extension installed -


i'm trying run sample php script on google app engine locally.

on installing php sdk on linux google developer docs, skipped installing php since have on ubuntu system installing sudo apt-get install php5 , php 5-*. php-cgi @ /usr/bin/php-cgi

python google_appengine/dev_appserver.py --php_executable_path=/usr/bin/php-cgi dropbox/webapps/helloworld/ info     2013-05-18 14:10:06,849 sdk_update_checker.py:244] checking updates sdk. info     2013-05-18 14:10:10,024 sdk_update_checker.py:260] update check failed: http error 404: not found warning  2013-05-18 14:10:10,554 simple_search_stub.py:962] not read search indexes /tmp/appengine.helloworld.epqrs-mango/search_indexes info     2013-05-18 14:10:10,557 api_server.py:153] starting api server at: http://localhost:42925 info     2013-05-18 14:10:10,590 dispatcher.py:164] starting server "default" running at: http://localhost:8080 info     2013-05-18 14:10:10,592 admin_server.py:117] starting admin server at: http://localhost:8000 error    2013-05-18 14:10:10,915 php_runtime.py:199] php runtime not available because: php runtime cannot run "memcache" pecl extension installed 

so possibly reason error ? not possible run along existing php setup ?

error 2013-05-18 14:10:10,915 php_runtime.py:199] php runtime not available because: php runtime cannot run "memcache" pecl extension installed


so possibly reason error?

the reason error did not install php app engine development server properly.

is not possible run along existing php setup?

that not depends on development server on existing php setup. specific setup, need disable "memcache" pecl extension. assume have not compiled in, need (temporarily) change php.ini file.

you can run along existing php setup using different configurations (see the phprc environment variable). it's not out-of-the-box experience, expect fiddle little until find perfect setup , workflow.

for compatibility reasons should consider establish setup of same php version in parallel on development machine available on google app engine (e.g. php 5.4.8 of now). can install more 1 php version on same system, however, not covered ubuntu package manager.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -