Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zend Framework Plugin for Eclipse PDT

I have eclipse PDT IDE version 1.2.0 installed. I have used it together with Dojo to develop very interesting Ajax applications. Now i want to enable the Zend framework within my eclipse IDE. How can i do this. After some googling, i have tried the following.

1.) downloaded the Zend framework and unzipped to my C directory. 2.) added the following path in my php.ini file

include_path = ".;C:\ZendFramework-1.10.5\library"

3.) changed the following line in the httpd.conf file in Apache to support .htaccess files

AllowOverride None to AllowOverride All

Restart Apache once and tested to see if this had any effect. I tested by trying to create a new PHP project and take a look at the structure of the project files.

The question is

1.) how can i include zend framework to an already existing eclipse pdt ide.

2.) is there a plugin that can be added directly or can i use the add software capabilities of eclipse. If yes, what URL do i have to supply for software download

3.) finally, how do i test to make sure that the zend framework has been properly installed

thanks for your help

like image 675
user224645 Avatar asked Jun 21 '10 13:06

user224645


1 Answers

I suggest setting ZF path as library for your ide (Preferences > PHP > PHP Libraries > New > Add External Folder). And then for your project: RMB on project in sidebar > Properties > PHP Include Path > Add Library > User Library > select your library.

I develop full time in Zend and this way is the best so far ;) (if you don't want to pay for ZendStudio ;)

like image 106
Tomáš Fejfar Avatar answered Nov 18 '22 19:11

Tomáš Fejfar