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
1
vote
1 answer

How to deal with local packages freezing my IDE during workspace build

I have a question about local packages and gulp using them. The problem is, I have a packages.json in my working directory of my IDE with a lot of dependencies which also have dependencies. Now that wouldnt be much of a problem, but when I install…
Ventus
  • 150
  • 1
  • 12
1
vote
0 answers

how do i add an autocompletion in my IDE to use Zend helper

I'm using Zend studio. When I want to use a helper my editor doesn't see it. So I couldn't have in a list of methods for autocompletion (when I press crtl+space). I can use any another IDE like netbeans or eclipse. So please if someone have done…
frankiz
  • 9
  • 2
1
vote
1 answer

zend tool is not working

I've installed ZendStudio 7.2 it creates project normally with no error but when i try to add action(s) in it, it says project profile does not exist. and the error log is as follow: executing zf create action showLatest index-action-included …
Farrukh Ayyaz
  • 294
  • 1
  • 11
1
vote
1 answer

How to make Xdebug work on Centos and Zend Studio?

I have two virtual machines: a Debian VM with Nginx and PHP-FPM and a Centos VM with Apache. On the Debian VM Xdebug works. On the Centos one it doesn't. When I start a debug session in my IDE (eclipse based Zend Studio 12.5), the lauchiung progress…
automatix
  • 14,018
  • 26
  • 105
  • 230
1
vote
1 answer

Error java.lang.nullpointerexception while creating new project in Zend studio

I am getting a Error java.lang.nullpointerexception while creating new project using Zend studio. I am using Zend Studio 9.0.1 I have used following steps: File -> New -> Local Php Projects -> Add Project name, then click Next -> Click…
Sunny Patial
  • 379
  • 1
  • 3
  • 14
1
vote
0 answers

PHP CLI application debug in ZendStudio (STDIN)

0 I am trying to debug php CLI using Zend Studio. My problem: I can't get user input from keyboard. This is part of code (method in some class): public function getInput($promt = null, $defaultValue = null) { if(!isset($promt)){ $promt =…
Yuriy
  • 101
  • 1
  • 8
1
vote
1 answer

How to run PHP code in Zend Studio 12?

I have installed Zend Studio 12.0.2 trial version in my linux operating system.How can I run php code in Zend Studio. I have search for the possible answers in stack overflow. I got this link…
raji satkunam
  • 115
  • 1
  • 2
  • 14
1
vote
1 answer

Composer.json in dependency package should not be modified

I'm trying to add a dependency through my composer.json file in a remote Laravel Project I'm working on in Zend Studio, currently on my Development server. However, it seems to be locked from making changes (all of the inputs are grayed out), and…
cchapman
  • 3,269
  • 10
  • 50
  • 68
1
vote
1 answer

How / Why does the dummy Apigility REST application wotk without end points?

The video tutorial "Apigility Integration in Zend Studio" shows an example of Apigility application building in Zend Studio. It's an example for RPC. Now I created a project based on the "Simple Services" template (New -> Project... -> Apigility…
automatix
  • 14,018
  • 26
  • 105
  • 230
1
vote
1 answer

Can't enable OAuth2 authentication with Mongo in Apigility?

I have created a new Apigility project in Zend Studio 12. I want to enable authentication using OAuth2 and a Mongo database. The form for doing this is very straightforward, asking for a hostname, database name and route for OAuth2. I provided these…
1
vote
0 answers

How to use profiler in Zend Studio with command line (CLI)

I have PHP application using Zend Framework 1, MVC pattern. I can run an PHP applications in CLI mode: /usr/local/php5/bin/php /pathToIndex/index.php -a moduleName.controllerName.actionName I can debug an PHP application in CLI…
1
vote
2 answers

Suppress warnings in Zend Studio

In Eclipse writing Java, it's easy to suppress warnings on some scopes, by annotating a method or variable within the IDE. Is it possible to suppress warnings at scopes while writing PHP within Zend Studio 7.0?
Olaseni
  • 7,698
  • 16
  • 44
  • 68
1
vote
0 answers

zend studio 7 creating .sharedentries and .listing

i created project in zend studio and there are files called .sharedentries and .listing gets created on all folders and sub folders of the project, its annoying, cause i would have to delete all these files and then upload. does anyone know what can…
Basit
  • 31
  • 5
1
vote
1 answer

Autocompleting MVC View Variables in Eclipse PDT/Zend Studio

When using Zend Studio to write views for a MVC framework, is there any way of having those variables autocomplete, perhaps using PHPdoc? For example, I set a variable in a view called $cart which is an instance of my ShoppingCart class. When I type…
voidstate
  • 7,937
  • 4
  • 40
  • 52
1
vote
1 answer

I want to create dynamic routing for all the modules in zend framework 2.3?

I am newbie to Zend Framework 2.3 let's examine that i have multiple modules in my application in Zend framework 2.3 but i don't want create separate files for module configuration for routes i want to create dynamic routes so how can i perform it…