Questions tagged [zend-studio]

Zend Studio is a commercial, proprietary integrated development environment (IDE) for PHP developed by Zend Technologies, based on the PHP Development Tools (PDT) plugin for the Eclipse platform (the PDT project is led by Zend).

Zend Studio is the leading IDE for professional PHP developers. Built upon the Eclipse PHP Development Tools project led by Zend, Zend Studio boosts developer productivity and facilitates standardization and team collaboration.

Zend Studio includes

  • Advanced code editing, debugging and profiling
  • Support for development and integrated debugging
  • integration for faster coding
  • Seamless deployment and testing on virtual and remote servers
  • integration for problem detection and diagnosis
  • Support for Agile development and over 1,000 Eclipse plug-ins

Resources


(*) Some of the features marked as "not availible" are availible trough other plugins which only have to be extra downloaded (e.g. the use of Subversion is possible with Subversive or Subclipse).

472 questions
2
votes
1 answer

overlaps the location of another project in zend studio?

I do not know, How to add the same project in the workspace with same name. I have setup a project in zend studio. I have setup a workspace xyz. There I added two projects of php. projectA and projectB then because of some issue, I removed project…
flik
  • 3,433
  • 2
  • 20
  • 30
2
votes
1 answer

Mongo autocomplete in Zend Studio

Does anyone know how to get auto complete for MongoDB to work in Zend Studio 8. What would actually be an ideal solution is how to add autocomplete for any binary library not in the form of php files. I.E. I know how to add a folder of php classes…
David
  • 21
  • 3
2
votes
0 answers

Svn with Zend Studio 8

In PhpEd I would press Ctrl + W to bring up my project file explorer pane, press Home key to go to the root, then Ctrl + ContextMenu key to open the Windows Explorer shell menu. From there I could easily press U or C to update or commit using Svn…
Markus Hedlund
  • 23,374
  • 22
  • 80
  • 109
2
votes
2 answers

How to upgrade internal php version of Zend Studio / Eclipse

I was following this tutorial when typing up this code: public function search($term){ $filter = function($tag) use ($term){ if(stristr($tag,$term)) return true; return false; }; return…
Moak
  • 12,596
  • 27
  • 111
  • 166
2
votes
3 answers

How fix building workspace error in Zend Studio?

How to fix building workspace problem in Zend Studio? I'm trying to rename project and rename folder of project, however nothing: Errors occurred during the build. Errors running builder 'JavaScript Validator' on project…
Vitaly Batonov
  • 1,112
  • 3
  • 12
  • 21
2
votes
1 answer

PhpStorm & SVN: How to fetch remote copy and override the local copy

In Zend Studio there is a command "Replace (e.g. file/dir) with latest from repository", which fetch SVN remote copy of file/dir and overrides the local copy. How can I do the same in PhpStorm?
Moyshe Zuchmir
  • 1,522
  • 12
  • 18
2
votes
3 answers

zend plugin for eclipse

i am planning to start develop a website that uses webservices , i am thinking using zend framework. as i am pretty much new for zend , i don't know much about its tools and configuration i have eclipse installed in my computer , now is there…
Hunt
  • 8,215
  • 28
  • 116
  • 256
2
votes
2 answers

How to generate camelized getters and setters in Zend Studio 7 (for Eclipse)?

Example: protected $_labelName = null; Should generate public function getLabelName() { $this->_labelName; } public function setLabelName($labelName) { $this->_labelName = $labelName; return $this; } But it is generates public…
sneas
  • 924
  • 6
  • 23
2
votes
3 answers

Zend Studio and remote host - best practice

Got the following: Zend Studio Zend Framework Project Remote host with FTP and SSH (root access) Want to: Save directly to remote host. Currently i'm working on a localhost *AMP server, manually updating the remote through FTP. Have tried…
Phliplip
  • 3,582
  • 2
  • 25
  • 42
2
votes
1 answer

Where can I get dummy.php

I moved to a new workspace in zend studio. Then debugging won't work because The file 'http://localhost/dummy.php',which is required by the zend debugger,could not be found.please verify that the zend debugger is properly installed on the…
user4234
  • 1,523
  • 1
  • 20
  • 37
2
votes
1 answer

How to reverse a global require in Composer?

A while ago, I added the Laravel framework via a global dependency to my environment through global require laravel/laravel in Composer. I'm having an issue though that when I try to edit and add further dependencies to Laravel's composer.json file,…
cchapman
  • 3,269
  • 10
  • 50
  • 68
2
votes
2 answers

Zend Studio doesn't recognize php

Why the Zend Studio doesn't recognize some functions?
Michelangelo
  • 1,398
  • 2
  • 14
  • 37
2
votes
1 answer

How to display all projects in the Project View in PHPStorm?

In eclipse / Zend Studio the project manager displays per default all projects of the workspace (or of one of its Working Sets, if selected): Now I'm looking for the according configuration in PHPStorm, that shows only one project per window: How…
automatix
  • 14,018
  • 26
  • 105
  • 230
2
votes
0 answers

Zend Studio code formatter problem with comments

i have Zend Studio 7.x, mostly use it for Zend Framework PHP and OOP JavaScript. When i run formatter on *.php file, often space is added after block of inline comments Before formatter run:
Horák Jan
  • 51
  • 8
2
votes
2 answers

How can I open my project in Zend? I accidentally removed it from the left pane

I accidentally removed the application from the left pane and now I can't get it back no matter what I do. I tried opening the .solution file from within Zend Studio, but it only loads the file, not the entire solution. How can I have it load the…
delete