4 messages in com.googlegroups.bloggerdevRe: Call to undefined method Reflecti...
FromSent OnAttachments
laptoplover26 Feb 2008 11:38 
Austin (Google)26 Feb 2008 14:34 
laptoplover27 Feb 2008 01:08 
gmnl...@gmail.com28 Mar 2008 15:32 
Subject:Re: Call to undefined method ReflectionClass::newInstanceArgs() in Zend/Gdata/App.php
From:Austin (Google) (api.@google.com)
Date:02/26/2008 02:34:11 PM
List:com.googlegroups.bloggerdev

On Feb 26, 11:39 am, laptoplover <geor@gmail.com> wrote:

I'm trying to publish a post back to a blog and have used the code fromhttp://code.google.com/apis/blogger/developers_guide_php.html#Creatin... but my web app returns this error.

Hi,

It appears that your PHP engine cannot find the Reflection class (http://us.php.net/language.oop5.reflection) which part of the latest PHP5 release. I am suspecting you are on a server that is running with an outdated PHP engine. You can run a test with

echo phpinfo();

this should output the list of runtime components of your PHP engine. If it has the Reflection package installed, it should list "Reflection" as one of the tables. You can upgrade to the latest stable version of PHP by going to this page -

http://us3.php.net/downloads.php#v5

Hope it helps, Austin