Hey There,
Thanks and Great work with this. I’m looking forward to using this to read/write to word press. Any idea when the service will support the write feature?
I’m in two minds about adding in write support, as wordpress itself is such a nice cms. I guess it makes sense for flash to be able to write the odd thing to the wp db, but I’m not sure if I want to replicate wordpress’s write features.
i hear ya. Maybe just a few of them? like for posting? If you need a little more motivation let me know. Working on something right now and I can get you a little something for your troubles…
I have added a new function that might be useful (is very simple)
/**
* Get media items full data by post_parent. Returns a list of WpMediaVO objects.
* @param integer $postParentID – Representing the post_parent of the media item you wish to access.
* @return WpMediaVO
*/
public function getMediaByPostParent($postParentID) {
$sql = “SELECT * FROM wp_posts WHERE post_type = ‘attachment’ AND post_parent =” .$postParentID;
$p = $this->parseMediaData($sql);
return $p;
}
Cheers for the snippet. What version of FlashPress are you using? Version 0.6 has a similar method – getPostAttachments which will return the attachments for a post, by calling getChildren() with the passed in PostID.
[...] Flash-Press de Noponies est un ensemble de services AMFPHP écris pour WordPress. Ainsi WordPress peut devenir facilement le back-office d’un site full-flash Je ne l’ai pas testé avec la version 3 de WordPress mais je ne crois pas que la structure de la base de données ait tant changé que ça. Au pire quelques ajustements à faire… [...]
Ok, is your output getting mangled as you get it out of the database? In theory, the text returned from the database should be the raw text. I’ll have to look into it.
hi,
when I look in my database in phpMyAdmin, all is OK
when I look at the pages generated by wordpress in html, all is OK
when I look in amfphp browser page (http://localhost:8888/amfphp/browser/), which is a flex/flash page, I got problems with special chars.
I did some changes in WpMethodService.php, so I tried with a clean version of yours: the problem is the same.
Thanks and sorry for the future headache
Hey Dale, nice piece of work you have there, in my opinion I don’t think it’s needed to create a editing part in flash, like you said WordPress has such a nice and easy to work interface that it would be a shame to reinvent the wheel, I would say yes to an editing interface if it would rock more then wp does
Kudos to your efforts spent on flashpress, looking forward to the updates in the future.
Ok, nice work.
but how do i install zend or AMF on a server (NOT localhost).
im missing some tutorials on this..
if u write it in here, i can write a tutorial for u?
March 15th, 2009 at 10:07 am
[...] It’s still in development but a nice project they are working on, so have a look. [...]
April 2nd, 2009 at 9:14 pm
Hey Dale,
Could you use this for flash to read blog posts? I am looking to feed a wordpress sites posts into flash. Is this possible?
August 3rd, 2009 at 8:52 pm
Hey There,
Thanks and Great work with this. I’m looking forward to using this to read/write to word press. Any idea when the service will support the write feature?
Cheers!
August 3rd, 2009 at 9:13 pm
I’m in two minds about adding in write support, as wordpress itself is such a nice cms. I guess it makes sense for flash to be able to write the odd thing to the wp db, but I’m not sure if I want to replicate wordpress’s write features.
August 8th, 2009 at 2:09 am
i hear ya. Maybe just a few of them? like for posting? If you need a little more motivation let me know. Working on something right now and I can get you a little something for your troubles…
August 11th, 2009 at 11:15 pm
Hey can you give me a holler? I’d like to discuss further dev on the framework…sgreen[at]wishb.com
June 30th, 2010 at 1:19 pm
Hi Dale,
I have added a new function that might be useful (is very simple)
/**
* Get media items full data by post_parent. Returns a list of WpMediaVO objects.
* @param integer $postParentID – Representing the post_parent of the media item you wish to access.
* @return WpMediaVO
*/
public function getMediaByPostParent($postParentID) {
$sql = “SELECT * FROM wp_posts WHERE post_type = ‘attachment’ AND post_parent =” .$postParentID;
$p = $this->parseMediaData($sql);
return $p;
}
Congrats for FlashPress.
June 30th, 2010 at 8:17 pm
Hi Nuno,
Cheers for the snippet. What version of FlashPress are you using? Version 0.6 has a similar method – getPostAttachments which will return the attachments for a post, by calling getChildren() with the passed in PostID.
July 21st, 2010 at 4:52 pm
[...] Flash-Press de Noponies est un ensemble de services AMFPHP écris pour WordPress. Ainsi WordPress peut devenir facilement le back-office d’un site full-flash Je ne l’ai pas testé avec la version 3 de WordPress mais je ne crois pas que la structure de la base de données ait tant changé que ça. Au pire quelques ajustements à faire… [...]
August 18th, 2010 at 2:51 pm
Hi Dale,
Firstly congratulations for all this work on flashpress. It is really a big help
I’m French, and in our language, we have many special characters like é, è, à, etc. …
And when I fetch the data, I get things like à ©.
we can solve this problem with the php function utf_decode ()
Thank you
August 19th, 2010 at 9:04 am
sorry it’s utf8_decode ()
August 19th, 2010 at 9:06 pm
@Jeremy,
Ok, is your output getting mangled as you get it out of the database? In theory, the text returned from the database should be the raw text. I’ll have to look into it.
August 20th, 2010 at 5:35 pm
hi,
when I look in my database in phpMyAdmin, all is OK
when I look at the pages generated by wordpress in html, all is OK
when I look in amfphp browser page (http://localhost:8888/amfphp/browser/), which is a flex/flash page, I got problems with special chars.
I did some changes in WpMethodService.php, so I tried with a clean version of yours: the problem is the same.
Thanks and sorry for the future headache
August 20th, 2010 at 11:13 pm
@Jeremy
Seems like a Flash text conversion issue. I’m working on this tomorrow, so I’ll do some investigation.
October 9th, 2010 at 3:34 pm
Hey Dale, nice piece of work you have there, in my opinion I don’t think it’s needed to create a editing part in flash, like you said WordPress has such a nice and easy to work interface that it would be a shame to reinvent the wheel, I would say yes to an editing interface if it would rock more then wp does
Kudos to your efforts spent on flashpress, looking forward to the updates in the future.
October 26th, 2010 at 5:07 am
[...] (not to be confused with FlashPress) seems to be a very full featured way of using WordPress as a CMS for your Flash site. You can get [...]
January 5th, 2011 at 11:22 am
[...] Log” mobile application. It’s a very simple Flex application with using away3dlite, flashpress, wordpress and AMFPHP or ZendAMF (both are [...]
February 2nd, 2011 at 9:48 am
[...] FlashPress – An AMFPHP and Zend_AMF service for connecting to WordPress http://www.blog.noponies.com/flash-press/ [...]
May 18th, 2011 at 4:10 pm
Ok, nice work.
but how do i install zend or AMF on a server (NOT localhost).
im missing some tutorials on this..
if u write it in here, i can write a tutorial for u?