zend-studio

Zend Framework 1.10 custom Class inside library folder not found

I'm learning zend framework from zendCast and can't find the problem I'm using: -Zend Server CE -Zend Studio 7.2 -Zend Framework 1.10 (created with zend studio) In my library folder I have a folder App and in that folder a php file Countries.php which corresponds to App_Countries class but when I try to create a new App_Countries ob...

How fix building workspace broblem in Zend Studio?

How fix building workspace problem in Zend Studio? I'm try rename project and rename folder of project, however nothing: Errors occurred during the build. Errors running builder 'JavaScript Validator' on project 'PROJECT'. java.lang.NullPointerException ...

PHP crash after executing code - Zend studio - Windows 7 64bits

Hi, I am using Zend Studio (7.2) to develop a PHP project. When I launch php script/unit test directly with Zend, my code is executed but PHP crash. By "crash" I mean windows opens a small message and says something like "CLI stop to works" (not exact message because I do not use a english version of windows). So this is not a problem t...

How to generate new method or property stub in Zend Studio ?

Is there a way with Zend Studio to generate new method or property stub ? So that if I,m writing code in a php class like $this->SomeMethod('parameter1',$param2); and 'SomeMethod' is a new method I want to write I would like to be able to have the IDE generate this for me: public function SomeMethod($arg1, $arg2) { caret here } Bu...

Anyone knows what does highlight mean in svn revision view of zend studio?

I'm confused what the line in bold means? ...

How to set up zend debugger and zend studio for groups of users

How to set up zend debugger and zend studio for groups of users?. Here is my zend debugger settings: zend_debugger.allow_hosts 212.98.163.244,86.57.250.3,91.149.157.77,127.0.0.1/24,192.168.1.0/24,192.168.1.45 212.98.163.244,86.57.250.3,91.149.157.77,127.0.0.1/24,192.168.1.0/24,192.168.1.45 zend_debugger.allow_tunnel 127.0.0.1/24,192.168....

Zend Studio or Eclipse PDT project managment

After years of using notepad++ for web development I've decided to start using some IDE. I've tried both: Zend Studio and Eclipse PDT. It appears they are pretty much similar. When working on multiple projects I used to make "sessions" in notepad++ to keep each project files opened in editor. How do I achieve that in Zend Studio or Ecl...

Zend Studio 7.2 showing error on namespaces?

I have these namespaces defined in my bootstrap file: use Doctrine\Common\ClassLoader, Doctrine\Common\Annotations\AnnotationReader, Doctrine\ODM\MongoDB\DocumentManager, Doctrine\ODM\MongoDB\Mongo, Doctrine\ODM\MongoDB\Configuration, Doctrine\ODM\MongoDB\Mapping\Driver\AnnotationDriver; But there is an error on th...

Code Completion for private/protected member variables when using magic __get()

How do I setup code completion to work on Zend Studio (or any Eclipse based IDE) when working with a class that has private or protected member variables WITHOUT resorting to a bunch of Getter's OR setting the member vars as public. For example: class Dog { protected $bark = 'woof!'; public function __get($key) { if (...

PHP Working set in Zend Studio does not show Subfolders

Hello, I am using Zend Studio 7.2.0 for coding. When I create a PHP working set and add some folders to it, the PHP Explorer view displays the list of files in these folders, but not their subfolders. However, if I expand the desired subfolders in 'create working set' dialog -which are selected by default, they will appear in the PHP Ex...

Zend Studio + Zend Framework

How to save answers from path mapping dialog? Now, always, I need to choose about 10 files before I can start debugging my Zend Framework application. It's really irritated. I found something interesting in Window -> Preferences -> PHP Servers -> Edit -> Path Mapping but I don't know how to use it. :-( I have my Zend library in "/usr/loc...

Access is denied while using Zend Tool in Zend Studio

Why do I get this error: executing zf show actions Access is denied When using Zend Tool in Zend Studio. I do everythink like in this video: http://www.youtube.com/watch?v=TqJs270tKg4 EDIT: I noticed that when I create a project in ZS with ZT the projects location is in the ZS workspace (C:\Users\user\Zend\workspaces\DefaultW...

Anyone managed to do cross remote debug in zend studio?

I have two projects A and B . My debug starts by accessing a url of A,and breakpoint works.And A need to curl B,how can I make it stop there? ...

How to enable code assist for Solr in php using ZendStudio

Hi: I have just installed the Solr extension for php and I'm trying to set ZendStudio to recognize the lib so I can get code assist for it. I read here that I should put a stub file for the library in the path, but I couldn't find such a file, and before I code it myself... here I am. Thanks! ...

Zend studio 7.2 code assist window

Does anyone know how to change the code assist font to a smaller size on Zend Studio ???. Using a 13" mac hence its too big. ...

Zend Studio and localhost - Forbidden error

Okay so basically, I switched my DocumentRoot in Apache2 default to look like this: DocumentRoot /home/scott/MySite/ That works. I have a file called index.php in that root. I created a Zend Studio project, pointing to /home/scott/MySite/, and was able to create my project use this line as it's source, modify the .php file and see th...