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
0
votes
1 answer

Zend Studio 10: "Composer" contextual menu missing?

I have installed Zend Studio 10, installed the Composer plug-in, created a ZF2 project and configured it with Composer. However, when I right click on the project in PHP Explorer, there is no contextual menu item for Composer. All of the tutorials…
0
votes
1 answer

Zend A 404 error occurred Page not found

I am new to zend frame work. I am in the process of learning this, in fact at the very beginning of this. My problem is that I download the zend studio and try to run the zend application by following a tutorial on net but the when I run the code it…
Najam-us-Saqib
  • 526
  • 3
  • 10
  • 23
0
votes
1 answer

Undefined Variable Errors

I receive a lot of undefined variable errors in zend studio 10. I have a php file like this : file var.php
Tera
  • 113
  • 3
  • 12
0
votes
1 answer

I can't write the opening square bracket "[" on zend studio

I can't write the opening square bracket "[" only on zend studio (I can everywhere else...) I only install the "zen coding" plugin. Maybe there are some shortcut bind on these key (ALTgr + 5) ? up.
Guillaume Lhz
  • 904
  • 5
  • 16
0
votes
1 answer

Where to change font color for the SQL File editor view in Zend Studio 9?

I want to change the colors of the sql file editor view that is active when one opens sql-files. I cannot find the settings anywhere in the preferences. Where do I have to look?
k0pernikus
  • 60,309
  • 67
  • 216
  • 347
0
votes
1 answer

whats wrong in my zend url helper

here is my code below of my module.config page 'router' => array( 'routes' => array( 'album' => array( 'type' => 'segment', 'options' => array( 'route' => '/photos[/:action][/:id]', …
Friend
  • 1,326
  • 11
  • 38
  • 62
0
votes
1 answer

how can i display multiple graphs on a single page in zend framework?

I'm generating linear graphs in ZEND framework using ez components, I would like to display some of em on a single page as a dashboard, how should I do that? i'm thinking about creating an action for every graph in the controller but I couldn't find…
osm2
  • 37
  • 1
  • 9
0
votes
1 answer

Zend Debugger using Solaris

I'm trying to setup debugging for PHP applications using the following environment: -Clients: Windows XP, Zend Studio 7, Firefox+Zend Studio Toolbar -Server: Solaris 5.10 32Bits, Apache 2.2.8, PHP 5.2.5 I'd like to use the Zend Debugger because of…
altermativ
  • 690
  • 1
  • 6
  • 20
0
votes
0 answers

Quick-search files in Zend Studio 10's PHP Explorer

I have recently switched from Eclipse PDT to Zend Studio 10, which is also Eclipse-based. One of the features Eclipse PDT had was that if you had the PHP explorer active (the left side area with the list of PHP files and folders) and started to type…
CodeTwice
  • 2,926
  • 3
  • 18
  • 18
0
votes
1 answer

Zend Studio Setup

I have been using Notepad++ all this while for php and I wanted to switch to Zend Studio. When I am creating a new Project in Zend Studio and then adding a new Hello World php file with a simple echo statement. On executing the program I get this…
Pradit
  • 709
  • 5
  • 12
  • 27
0
votes
1 answer

Zend Studio Android Native Application

I have installed Zend Studio, downloaded and updated ADT. All seems to work ok to the point where I want to Create Android Application. The folder for the android app is created, but there are only 2 files inside: .project project.properties I am…
Mike
  • 23
  • 1
  • 4
0
votes
2 answers

how to add a non-existent method name to suggest list under Zend Studio?

I wrote a class like this : class config { private $conf; public function __call( $confName, $args ){ if ( 0 == count($args) && isset($this->conf[$confName]) ){ return $this->conf[$confName]; } else { …
MichaelLuthor
  • 416
  • 1
  • 7
  • 14
0
votes
3 answers

Number not exactly printed in the excel record file

I want to display unit numbers in front of Property name. I fetched my data in $arrobjPropertyName array object and in foreach loop I print it as foreach( $arrobjPropertyName as $objProperty ) { $objWriteExcelWorksheet->write( $intRowCount,…
Pradeep
  • 157
  • 1
  • 2
  • 9
0
votes
1 answer

Zend Studio 9 ignores "Space only" indentation on line break

I use Zend Studio 9 with the Symfony 2 plugin and set the codestyle also to Symfony. The code style is set to use 4 spaces as indentation which sometimes isn't used. For example, let's say, i write the following code: $test = array(); When i now…
Johni
  • 2,933
  • 4
  • 28
  • 47
0
votes
1 answer

How to run individual unit tests with Zend Studio?

I noticed on Can't get Zend Studio and PHPunit to work together that a comment says If you want ZS to run the PHPunit bootstrap, you have to specifically select the file PHPunit.xml and tell it to run as PHPunit test. If you just select an…
Chirael
  • 3,025
  • 4
  • 28
  • 28