 |
Account Login
|
 |
 |
Latest Articles
|
 |
 |
IRC Channel
|
 |
 |
Associates
|
 |
 |
Associates
|
 |
|
 |
 |
|
 |
07-02-2008, 12:29 AM
|
#1 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
Anybody familiar with Zend Studio?
I'm a huge fan of Dreamweaver, so I'm not sure if this is going to work out or not, but I decided to give Zend Studio a try, and I'm curious about two things in particular in the last five minutes of using it.
First thing actually has to do with the studio itself. I have phpMyAdmin and a test directory in my web root, and I was wondering if there was a way to cloak those directories from Zend. I want to be able to access them, but I don't want the classes et al showing up in my project outline.
Second thing is a regular expression question, but related to Zend's error/warning reporting. It's spitting out a TONNE of warnings that I have bad escape sequences which I think is a little rash. For example:
PHP Code:
$regex .= "(\?[a-z+&_.-][a-z0-9;:@\/&%=+\$_.-]*)?"; // GET Query
Part of my url validating regular expression, it's telling me that \? is a bad escape sequence and that I should be using \\?. Sure, if I wanted it to match as few backslashes as possible, that makes sense. So what's up, why is Zend freaking out about this?
Thanks for any help or insight on the Zend Studio.
-m
|
|
|
|
07-02-2008, 03:53 AM
|
#2 (permalink)
|
|
The Wanderer
Join Date: Jun 2008
Location: Atlanta, USA
Posts: 8
Thanks: 1
|
I use Zend Studio, great piece of software. You can add/remove specific folders in the Project View. Just remove the phpMyAdmin folder from the project and you'll be fine.
I'm not sure about your second question, I don't use its debugging system.
|
|
|
07-02-2008, 04:03 AM
|
#3 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
Remove them without deleting them from the system?
|
|
|
|
07-02-2008, 08:08 AM
|
#4 (permalink)
|
|
The Visitor
Join Date: Jul 2008
Posts: 1
Thanks: 0
|
The best way to configure your project is to have your files as the project files and add the phpMyAdmin as an include path (right-click on the project -> configure include path).
Guy.
|
|
|
|
07-02-2008, 07:15 PM
|
#5 (permalink)
|
|
The Frequenter
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
|
Quote:
Originally Posted by delayedinsanity
Remove them without deleting them from the system?
|
Yes. Right-click on the project, choose Delete. Then choose the option "delete the project, keep the files on the filesystem" and click ok. (the option is a little different, I don't remember it now).
Quote:
Originally Posted by Orc
Yes I use it, brilliant in anything PHP, crappy in everything else xD..
|
Well, it's made for PHP, so what did you expect? To cook you breakfast? It's like saying that Yahoo Messenger is crappy at editing text. Yes, it is, because it's not made for that!
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
|
|
|
|
07-02-2008, 09:12 AM
|
#6 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
Yes I use it, brilliant in anything PHP, crappy in everything else xD..
__________________
VillageIdiot can have my babbies ;d
|
|
|
|
07-02-2008, 07:40 PM
|
#7 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
Thank you everybody for their help, but for now I've just returned to using Dreamweaver. Zend Studio has a really clunky ugly interface, and I guess I've just grown accustomed to DW.
-m
|
|
|
|
07-03-2008, 06:55 PM
|
#8 (permalink)
|
|
The Frequenter
Join Date: Dec 2007
Location: In my basement
Posts: 386
Thanks: 47
|
You think Zend Studio is bad? ZSfE is even worse. The application is a nightmare.
I just had to say it.
__________________
Signatures are nothing but incriminating.
|
|
|
07-04-2008, 05:38 PM
|
#9 (permalink)
|
|
The Wanderer
Join Date: Dec 2007
Location: Orlando, FL
Posts: 23
Thanks: 0
|
Quote:
Originally Posted by Aaron
You think Zend Studio is bad? ZSfE is even worse. The application is a nightmare.
I just had to say it.
|
ZSE is great. In fact, Eclipse as a platform is amazing. I decided to go back to ZSE after getting acquainted with how Eclipse functions... so beautiful. Perspectives, completely customizable interface on the fly... ("Oh man.. I need to see another file at the same time and I don't want to put it on my other screen... *click* *drag* yay!").
Not to mention it has all of the Eclipse plugins available to it. While the setup is a little more advanced than most newer programmers tend to prefer, it delivers tenfold in performance and features. If you want to ease yourself into the Eclipse world (which I highly recommend getting into)... try out Eclipse PDT or Aptana. Aptana is great because its geared towards newcomers to the Eclipse world.
|
|
|
|
07-04-2008, 01:26 AM
|
#10 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
|
Quote:
Originally Posted by delayedinsanity
I'm a huge fan of Dreamweaver, so I'm not sure if this is going to work out or not, but I decided to give Zend Studio a try, and I'm curious about two things in particular in the last five minutes of using it.
First thing actually has to do with the studio itself. I have phpMyAdmin and a test directory in my web root, and I was wondering if there was a way to cloak those directories from Zend. I want to be able to access them, but I don't want the classes et al showing up in my project outline.
Second thing is a regular expression question, but related to Zend's error/warning reporting. It's spitting out a TONNE of warnings that I have bad escape sequences which I think is a little rash. For example:
PHP Code:
$regex .= "(\?[a-z+&_.-][a-z0-9;:@\/&%=+\$_.-]*)?"; // GET Query
Part of my url validating regular expression, it's telling me that \? is a bad escape sequence and that I should be using \\?. Sure, if I wanted it to match as few backslashes as possible, that makes sense. So what's up, why is Zend freaking out about this?
Thanks for any help or insight on the Zend Studio.
-m
|
The last question is quite simple and logical that it gives you those errors or warnings. Its simply because your using double quote signs which will tell PHP to intepret the string with possible escape characters, then use single sign quotes insted and the warning should be gone :)
__________________
|
|
|
07-06-2008, 11:21 PM
|
#11 (permalink)
|
|
The Frequenter
Join Date: Dec 2007
Location: In my basement
Posts: 386
Thanks: 47
|
ZSE is buggy beyond compare. I checked a few forums, and everyone seems to agree. It is a pain in the ass with file extensions, and even configuration doesn't fix that. It closes randomly, and reports bugs every other minute. Click and drag is wonderful, sure, but that is no excuse for poor functionality. I could go on and on, but there is no reason.
__________________
Signatures are nothing but incriminating.
|
|
|
07-07-2008, 09:31 AM
|
#12 (permalink)
|
|
The Addict
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
|
I have used Dreamweaver for years now, but a month or so ago it really got on my nerves. The remote (ftp) support is seriously terrible! Many times it just forgets passwords, it can't connect while smartftp can and much more.
When i started PHP i used notepad++ simply because the highlighting. 2 years later i wanted FTP support and a function database, thats when i started using dreamweaver.
Now since a month I've been using ZS because of the debugging and mainly the nice FTP support... Multiple FTP connections at a time! <3
__________________
Nunchaku! Who doesn't like martial arts? =)
|
|
|
07-07-2008, 01:50 PM
|
#13 (permalink)
|
|
The Prestige
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
|
PHP Designer for the win!
|
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|