Zend Framework - how to upload posts to my blog? - zend-framework

I want to be able to create ready to publish blog posts on my desktop and then upload them to a blog I've created with ZF.
(similar to Wordpress from what I've read).
Looking for suggestions on how that is best implemented?
Thanks, -km

Get yourself comfortable with Zend Documentation for xmlRPC.
That is the way it is done in Wordpress (and how it should be done in Zend Framework -- I think).
This Wordpress source code of xmlrpc.php shows how it is working in Wordpress. Didn't found any examples for Zend, but it should work out (as it is also just php).

Related

Zend GData - Share sheet

I would like to share a Google Docs (spread)sheet via Zend GData API (in PHP).
Is there a way to do it via API?
Alternatively, I could create the sheet in a collection, which is already shared. But could not find a way to do it either.
Best,
David
You can share a file using the new Google Drive API: https://developers.google.com/drive/manage-sharing
It doesn't use the Zend library but the documentation includes PHP snippets for all methods and a complete sample application in the same programming language:
https://developers.google.com/drive/examples/php

create app from WordPress website

I have a personal website which built on WordPress. Now, I'm going to create a simple iOS app for it which enables my readers to read and comment on the posts, view the archive, ... usual stuff.
Since I'm using WordPress and my website is something very common, I was wondering if there are any free out of the box toolbox or something for this purpose?
Are you using WPTouch already?
http://wordpress.org/extend/plugins/wptouch/
Did you find :
http://ios.wordpress.org
and the whole project:
http://ios.trac.wordpress.org/browser/trunk
I hope it will save you a lot of work ;-)

Sample working CMS with Zend Framework

I'm looking for a sample project that uses Zend Framework so that I can see how masters do it.
I'm not looking for something that uses other stuff like smarty, or any other major library.
There are plenty of samples for different subjects on sites like zendcast.com but I need a full working solution.
I couldn't come up with anything like that by googling.
I came accross this a while ago, it has a sectoion on Central authentication
http://www.zend.com/webinar/Framework/70170000000bEs9-webinar-secure-application-development-with-the-ZF-20100505.flv
Here are the notes, look at page 9
http://static.zend.com/topics/Webinar-Zend-Secure-Application-Development-with-the-Zend-Framework.pdf
Is this a good idea?
We are making a full open source CMS, based on Zend Framework: Centurion CMS (http://www.centurion-project.org/).
We are working on it since more than 2 years. The project is under the new BSD licence.
Feel free to try, use, pull feature, make some push request, criticize...
If you have any question use the our Google group: http://groups.google.com/group/centurion-project
Social Engine 4 is what you are asking for but its not free nor open source . The best application ever created using ZF has became even more popular then Zend itself (google trend) its known as "Magento". Its open source and based on best programming practices (design patterns) .
Social Engine 4 projects are built on Zend Framework.
Social Engine 3 used smarty but they decided to move to Zend.
Have a look at TomatoCMS
Pro Zend Framework Techniques: Build a Full CMS Project
I think this book will be useful for you.

Blog Plugin in zend framework 1.11.7

I want to use blog plugin in zend framework 1.11.7. So please give me the full path from where I can download plugin and all the steps to implement in site.
No, there isn't.
There are, however, plenty of tutorials to help you get started with building one. http://akrabat.com/zend-framework-tutorial/

How can I integrate FCKeditor in a Zend Framework application?

I've seen there are questions here about how to integrate scripts in ZF. There are also some questions about FCKEditor. But I have found nothing about both ZF and FCKEditor.
Does anyone use FCKEditor with ZF?
Alternatively...is there an RTE which can integrate well with ZF?
Thank you
Hi there is a some pages that may be usefull:
http://blog.ekini.net/2007/11/28/using-fckeditor-with-zend-framework-file-browser-enabled/
http://www.leftcolumn.net/2009/03/10/zend-framework-how-to-add-fckeditor-to-a-zend_form/
http://vnwds.com/threads/20-Build-FCKeditor-in-your-Zend-Project-with-Zend_View_Helper
You should probably want to create zend form elements and a zend view helper. It would enable seamless zend framwork integration and can be reused to reduce any code duplication.
Here's an article explaining how:
FCKeditor Zend Form Integration