Home > blogwrapper

blogwrapper

Blogwrapper is a project mainly written in PHP, it's free.

This is a ZF app. The goal is to have a sandbox where I can experiment with ZF and implementing external services (APIs)

This is a ZF app.

The goal is to have a sandbox where I can experiment with ZF and implementing external services (APIs)

The Goal is to support many social media channels as also blogging services as: Posterous, Thumblr, and so on. Actually this looks pretty much like a blog aggregator application. The interesting part about supporting multiple services (mostly blog tools) is to build a general wrapper posts / articles so switching from a service should be easy.

add your credentials to the ./app/config.ini

all supported services are below this line

Posterous:

  • your 'personal' API Token (generate one here)
  • your username (type:email)
  • and password

To be added:

  1. Thumblr
  2. textile /markdown file bases (github)
  3. Blogger

Dependencies:

  • Zend-Framework (1.x)
  • Dwoo. a PHP5 smarty based / like template engine

for these run

git submodule init
git submodule update

put this in your apache/extra/httpd-vhosts.conf

<VirtualHost *:80>
    ServerName local.my-services
    DocumentRoot "{path to clone}/my-services/public/"

    <Directory "{path to clone}/my-services/public/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride All
    </Directory>

</VirtualHost>

and add local.my-services to /etc/hosts

create a new symlink for ZendFramework :

ln -s lib/ZendFramework/library/Zend/ lib/Zend
Previous:was