[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-10 Thread Micke Nordin
Which version of PHP are you using? I have been asking around, and one possible answer I got from the MediaWiki mailing list was that you were using PHP4, which is no longer supported by MediaWiki. Could that be the case? You can check the installation requirements for MediaWiki here:

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-10 Thread Jack Park
PHP5: the apache dll is php5apache2_2.dll On Sat, Oct 10, 2009 at 1:29 AM, Micke Nordin mickew...@gmail.com wrote: Which version of PHP are you using? I have been asking around, and one possible answer I got from the MediaWiki mailing list was that you were using PHP4, which is no longer

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-07 Thread Jack Park
The only change made that actually made it work was to remove the ampersand from $parser since it's not like that in any other parser extension I have access to. Then it started working. But, I got lots of error messages due to things like $args[id] which php defaulted to $args['id'] and ran

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-07 Thread Micke Nordin
FYI the ampersand makes it so the parser object is passed by reference instead of being copied, so that is a part of PHP and not a typo: http://us3.php.net/references.pass That should definitly work and it is what is specified in the MediaWiki docs. I don't now what difference putting tics

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-07 Thread Micke Nordin
The tic thing is definitely an error on my part though (check under Array do's and don'ts): http://se2.php.net/manual/en/language.types.array.php You dont think that it is that alone which is causing the problem? /Micke On 7 Okt, 22:07, Jack Park jackp...@gmail.com wrote: That may be so. I'm

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-07 Thread Jack Park
According to the original error message, it never got to that. I went so far as to put up a wave / tag with no id, hoping to provoke that error message. It never got there. Always failed on passing the wrong thing to $parser On Wed, Oct 7, 2009 at 2:06 PM, Micke Nordin mickew...@gmail.com

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-06 Thread rick eisenmenger
Hello Micke, for now I am dragging a wave into another one to examine the link that contains the wave id; I hope there are other ways.. How did you manage the authentication against the appserver? (I am trying to embed a wave on an application web page on a remote server..) Regards Rick On

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-06 Thread Micke Nordin
On Oct 6, 3:55 pm, rick eisenmenger rick.eisenmen...@gmail.com wrote: for now I am dragging a wave into another one to examine the link that contains the wave id; I hope there are other ways.. I know two ways: 1. Use the URL * Click on a wave in the Google Wave site, the

[Google Wave APIs] Re: Embedding waves in MediaWiki from different wave servers

2009-10-05 Thread Micke Nordin
I managed to fix this, all I had to do was switch places for these lines in my js from; wave.loadWave(...); wave.setUIConfig(...); to: wave.setUIConfig(...); wave.loadWave(...); Oddly enough the former works with the sandbox server, but not with the live server. Also, we need a good way