Posts

Showing posts with the label Zend

[Eclipse] Zend PDT installation error

Got this error while trying to install Zend PDT plugin for Eclipse: An error occurred while collecting items to be installed session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repository found containing: osgi.bundle,org.zend.php.debug.debugger,5.3.18.v20110322 No repository found containing: osgi.bundle,org.zend.php.debug.debugger.win32.x86,5.3.18.v20110322 No repository found containing: org.eclipse.update.feature,org.zend.php.debug_feature,5.3.18.v20110322 Googled around and found the workaround to solve this. Apparently, we just need to get the features jar, the plugin jar and the platform specific plugin. And all these are available on Zend download sites. Missing files - Feature Download org.zend.php.debug_feature_<required-version> from  http://downloads.zend.com/pdt/features/ Unzip the feature jar into "/features" folder of eclipse folder. Missing files - Plugins D...

[Tutorial] Getting Started Zend Framework 1.11

Note: This guide is still at the initial writups. This tutorial is intended to guide beginners through the basic steps to setup a database driven website (without using Zend_tools command). Prerequisites : Zend Framework 1.11.10+ Full PHP 5.3+ (Optional)  Zend Eclipse Plugin / Zend Studio  (30-days trial)   The tutorial is divided into the following sub-sections :  1. Download and Zend Framework setup. 2. Modularize directory structure 3. Database(s) setup 4. Account component 5. Helpers Optional 1. Setting up Subversion SVN References: [1]  http://akrabat.com/zend-framework-tutorial/ [2]  http://framework.zend.com/manual/en/zend.controller.modular.html [3]  http://www.zfforums.com/zend-framework-general-discussions-1/resources-developers-37/setup-multi-modules-zend-framework-v1-9-13-steps-3737.html []  http://framework.zend.com/manual/en/project-structure.project.html []  http://zfsite.andreinikolov.com...