zend-studio

How fix building workspace error in Zend Studio?

醉酒当歌 提交于 2019-12-06 11:18:45
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 'PROJECT'. java.lang.NullPointerException The bug has been fixed, you can either wait for the new release or apply the patch : https://bugs.eclipse.org/bugs/show_bug.cgi?id=318004 you must go to Project->Properties->Builders then disable ‘Javascript Validator’. I had similar problem and mine is that the saving workspace process try to write in one of the file and it can't even

Zend Studio for eclipse - Switch character encoding for all files in a project

半腔热情 提交于 2019-12-05 04:34:53
I'm using Zend Studio for Eclipise on Mac, and it seems to keep setting all files to have and encoding of 'Mac Roman'. This becomes problematic when I save the files, as they all need to be UTF-8. I know how to change the encoding to UTF-8 on a file by file basis, but I was wondering if I could set this project wide? Eclipse-Wide: Window->Preferences->Appearence->Workspace Project-Wide: Rightclick on Project->Properties Filewide: Rightclick on File->Properties On my Eclipse for PHP Helios SR 2 for Mac: Eclipse-Wide: Eclipse->Preferences->General->Workspace The others are the same as @SkaveRat

Possible disadvantages of Zend [closed]

旧时模样 提交于 2019-12-05 01:39:49
I've started using Zend Framework and Studio for my projects and would like to hear from those who already use it what to expect. I'm not interested so much in the good things because these can be marketing messages. I want to know about the things that are not so good or are annoying so I can decide for myself if they matter enough to me. Thanks for all your input. Its a pretty good learning curve, with pretty limited (awful) documentation for most developers. Be prepared for that, as it will take most developers a good few weeks + to get a handle on it and how to do things "properly". But I

How to increase productivity with Vim and Eclipse for PHP5.3 projects (possibly using Eclim integration with Zend Studio)

谁说我不能喝 提交于 2019-12-03 14:06:25
问题 I always strive to increase my productivity when developing applications and in the span of the last few years, I can say that I have made good steps towards increasing that productivity, but I still find I need more tools or methods. I need to edit faster and learn touch typing (currently in the process) and therefore I find a need to move to Vim. It has been now over one year I have trashed Windows and moved to Linux (Ubuntu to be more precise) and I am using the IDE Zend Studio combined

The URI you submitted has disallowed characters

与世无争的帅哥 提交于 2019-12-03 07:30:04
问题 I have a code igniter project, and I wanted to try debugging it using Zend Studio. WHen I start debugging, I immediately run ino "The URI you submitted has disallowed characters." Does anyone have any idea? 回答1: (Assuming you are using the latest version of CodeIgniter (CI) which is 1.7.0) CI is pretty strict about what characters it allows in URLs. You can modify the regex that is used to filter URLs. In system/config/config.php on line 126 is $config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-

How to increase productivity with Vim and Eclipse for PHP5.3 projects (possibly using Eclim integration with Zend Studio)

谁说胖子不能爱 提交于 2019-12-03 03:55:30
I always strive to increase my productivity when developing applications and in the span of the last few years, I can say that I have made good steps towards increasing that productivity, but I still find I need more tools or methods. I need to edit faster and learn touch typing (currently in the process) and therefore I find a need to move to Vim. It has been now over one year I have trashed Windows and moved to Linux (Ubuntu to be more precise) and I am using the IDE Zend Studio combined with Aptana Studio for developing OO PHP5.3 websites. Although the IDE does everything I would need from

Not able to redirect to next page

房东的猫 提交于 2019-12-02 20:47:30
问题 I am using Win XP os and XAMPP. I was using eclipse as the editor. In Eclipes I was not able to redirect next page so now I have installed Zend Development Environment. Now also I am getting the same problem. My Code is HomePage.php <html> <body> <form name="Form1" id="FormId" action="Welcome.php" method="post"> name : <input type="text" name="txtName"> Phone Number : <input type="text" name="txtPnum"> <input type="submit" name="SubmitIt" value="Submit It"> </form> </body> </html> And Welcome

Not able to redirect to next page

痞子三分冷 提交于 2019-12-02 09:10:13
I am using Win XP os and XAMPP. I was using eclipse as the editor. In Eclipes I was not able to redirect next page so now I have installed Zend Development Environment. Now also I am getting the same problem. My Code is HomePage.php <html> <body> <form name="Form1" id="FormId" action="Welcome.php" method="post"> name : <input type="text" name="txtName"> Phone Number : <input type="text" name="txtPnum"> <input type="submit" name="SubmitIt" value="Submit It"> </form> </body> </html> And Welcome.php is <?php ob_start(); session_start(); if(!($_SESSION['UName'])) { $_SESSION['UName']=$_POST[

How do I add the PHP libraries to my basic remote project in eclipse?

风格不统一 提交于 2019-12-01 07:36:24
I have a basic project that was created from a remote system using the eclipse tools to setup that connection. I right clicked on the folder on my remote system and chose create a new project. Now, I want to add PHP to the build path, but it is just a basic project. How do I quickly add those libraries with Eclipse PDT or Zend Studio installed? Not sure if this what you are looking for, but try Right click the project folder in the Explorer and click Open Project . Right click the project folder again. Find and click Configure from the Context Menu In the submenu find and click Add PHP Support

Code completion for PHP extensions in Zend Studio?

我怕爱的太早我们不能终老 提交于 2019-12-01 07:20:56
问题 After having installed the HTTP extension from PECL, I expected Zend Studio 6 to recognize the provided HTTP* classes and for code completion to be made available. This is not the case, however. How do I get Zend Studio to recognize classes provided by PHP extensions? Specifcally, I want to be able to use code competition on these classes. 回答1: I used the phpgenerator.php script from Michael Spector. It generates a php documentation folder with the loaded extensions on your pc. Afterwards the