Posts Tagged ‘Zend’

5
Jun

Data Visualization is Key

   Posted by: Daniel Hudson    in Enterprise 2.0

Happy Fav Five Friday!

Social Media + Time = Information Overload

Our time to review information is shrinking while the available information to review is growing, which leads us to the need for methods that help us understand information faster. Data visualization will play a key role in helping us convey and interact with information in more interesting ways. Adobe Flash Builder is a tool that will help.

new-internet-media

Adobe Releases Flash Builder 4 Beta 1 – Including Zend Framework

Adobe has released a beta version of Adobe Flash Builder, the next generation of the popular Flex Builder tool. Zend Framework is now included within Flash Builder, allowing developers to introspect PHP classes and then to use a drag and drop approach to bind specific methods to UI components in applications, such as interactive charts, graphs, datagrids, and more. These new features provide a simplified development approach for adding rich UI to PHP applications using the Flex Framework and Zend Framework. Download Flash Builder 4 Beta 1 today from http://labs.adobe.com/?sdid=ERZSR.

Learn more about Flash Builder 4 and Zend Framework integration in an online e-seminar on June 9th. Register for free at: http://www.adobe.com/go/flex_seminars/?sdid=ERZSR

Zend Framework

zendframework

I’m excited to see the Zend Framework is included in the new Adobe Flash Builder.  I have been closely following this project.  I believe the Zend Framework plays a key role in Enterprise Level application development.  This framework is

  • Well Documented
  • Simple
  • Safe for the Enterprise
  • Supported by Industry
  • Supported by Development Community
  • Supports Rapid Development
  • Flexible Architecture
  • Extensible
  • Tested Code Base
  • Professional Training Available
  • Certification Possible

Some people may argue that PHP Zend Framework is just an abstraction layer of unwanted, bloated code.  I disagree.  I believe the Zend Framework, with it’s Object Oriented approach is the foundation of Enterprise 2.0 level code.  I recommend at least taking a look http://framework.zend.com .

Tags: , , , , , , ,

Zend Demo Videos: Fav Five Friday

Happy Friday!  I have been helping people with web-based solutions for years.  Some of my projects have included simple brochure type of web sites, others have been dynamic, database driven web sites with a huge number of people rapidly accessing components while expecting instant responses from the application.  Most of this code has been written in PHP with tools like Adobe Dreamweaver.  A while back I posted an article about installing the Zend Framework and a quick article about “New Zend Demo – Developing Rich Internet Applications (RIAs)“.  Zend has an endless amount of tools, training, education, & resources to help you with your social media platform development, which should be part of your Enterprise 2.0 strategy.

Using Zend Studio to develop your Social Media Platform for your Enterprise 2.0 Solution

When developing PHP Solutions for Social Media Platforms, I prefer a robust toolset to help create exciting user interfaces, especially in the Enterprise.

I found these videos very helpful and I just wanted to share them with you to hopefully help you in your quest for developing rich internet applications for your social media platforms.

Zend Demo Videos

  • Unlock the Value of Your PHP Applications
  • Zend Studio for Eclipse – Getting Started
  • Zend Framework and Ajax Webinar
  • Zend Framework and Dojo
  • Zend Framework Google data PHP Client Update

Happy Fav Five Friday!

What’s your favorite Zend?

Tags: , , ,

15
Dec

New Zend Demo – Developing Rich Internet Applications (RIAs)

   Posted by: Daniel Hudson    in Frameworks

Creating Rich Internet Applications (RIAs) has never been easier! The integration of Zend Framework and Dojo, and the new Dojo code editing support in Zend Studio for Eclipse 6.1, provide an out-of-the-box solution for rapid development of Ajax-based applications. View our new, five minute screencast to understand the basic steps of creating a meeting scheduler PHP Web application:

  • Creating a Zend Framework and Dojo project
  • Using Zend Studio’s code assist for writing Dojo code
  • Deploying and running the application

If you can not see the embedded video, you can access the zend demo video here.

Tags: , ,

8
Dec

Installing The Zend Framework

   Posted by: Daniel Hudson    in Frameworks

http://framework.zend.com/

Extending the art & spirit of PHP, Zend Framework is based on simplicity, object-oriented best practices, corporate friendly licensing, and a rigorously tested agile codebase. Zend Framework is focused on building more secure, reliable, and modern Web 2.0 applications & web services, and consuming widely available APIs from leading vendors like Google, Amazon, Yahoo!, Flickr, as well as API providers and cataloguers like StrikeIron and ProgrammableWeb.
http://framework.zend.com/about/overview

Installing Zend Framework from the command line

Connect to your server with a command line tool like PuTTY

PuTTY is a free implementation of Telnet and SSH for Win32 and Unix platforms, along with an xterm terminal emulator. It is written and maintained primarily by Simon Tatham.

Here are the command line steps

These steps are executed by super user (su) in your site’s root directory

  1. wget http://framework.zend.com/releases/ZendFramework-1.7.0/
    ZendFramework-1.7.0.tar.gz
  2. tar -xzvf ZendFramework-1.7.0.tar.gz
  3. rm ZendFramework-1.7.0.tar.gz
  4. mv ZendFramework-1.7.0/library/Zend /usr/local/lib/php
  5. rm -rf ZendFramework-1.7.0

Command line steps explained

  1. Get file package from site.
    wget http://framework.zend.com/releases/ZendFramework-1.7.0/
    ZendFramework-1.7.0.tar.gz
  2. Decompress the file.
    tar -xzvf ZendFramework-1.7.0.tar.gz
  3. Delete the compressed file.
    rm ZendFramework-1.7.0.tar.gz
  4. Move the library files to your standard location.
    Note:
    This is usually something like “/usr/local/lib/php”, but you may need to check your PHP Include Path to validate your standard location.
    mv ZendFramework-1.7.0/library/Zend /usr/local/lib/php
  5. Delete the decompressed directory and all it’s contents.
    rm -rf ZendFramework-1.7.0

Setup Zend Framework Directories

Move just outside of site root directory to create your Applications directory.

  • mkdir applications
  • mkdir applications/data
  • mkdir applications/data/logs
  • mkdir applications/data/tmp
  • mkdir applications/data/tmp/templates_c
  • mkdir applications/controllers
  • mkdir applications/views
  • mkdir applications/templates

The Zend Framework site offers offers Zend Framework installation steps that are a little different than the steps explained here.

Tags: , ,