TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 07-02-2008, 12:29 AM   #1 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default 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
delayedinsanity is offline  
Reply With Quote
Old 07-02-2008, 03:53 AM   #2 (permalink)
The Wanderer
 
Tree's Avatar
 
Join Date: Jun 2008
Location: Atlanta, USA
Posts: 8
Thanks: 1
Tree is on a distinguished road
Default

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.
__________________
NCIDev.com
Send a message via ICQ to Tree Send a message via AIM to Tree Send a message via MSN to Tree Send a message via Yahoo to Tree
Tree is offline  
Reply With Quote
Old 07-02-2008, 04:03 AM   #3 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

Remove them without deleting them from the system?
delayedinsanity is offline  
Reply With Quote
Old 07-02-2008, 08:08 AM   #4 (permalink)
The Visitor
 
Join Date: Jul 2008
Posts: 1
Thanks: 0
guygur is on a distinguished road
Default

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.
guygur is offline  
Reply With Quote
Old 07-02-2008, 09:12 AM   #5 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Yes I use it, brilliant in anything PHP, crappy in everything else xD..
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote
Old 07-02-2008, 07:15 PM   #6 (permalink)
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

Quote:
Originally Posted by delayedinsanity View Post
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 View Post
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.
xenon is offline  
Reply With Quote
Old 07-02-2008, 07:40 PM   #7 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

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
delayedinsanity is offline  
Reply With Quote
Old 07-03-2008, 06:55 PM   #8 (permalink)
The Frequenter
 
Join Date: Dec 2007
Location: In my basement
Posts: 386
Thanks: 47
Aaron is on a distinguished road
Default

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.
Send a message via MSN to Aaron
Aaron is offline  
Reply With Quote
Old 07-04-2008, 01:26 AM   #9 (permalink)
The Frequenter
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
Kalle is on a distinguished road
Default

Quote:
Originally Posted by delayedinsanity View Post
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 :)
__________________
Send a message via MSN to Kalle Send a message via Skype™ to Kalle
Kalle is offline  
Reply With Quote
Old 07-04-2008, 05:38 PM   #10 (permalink)
The Wanderer
 
Rizza's Avatar
 
Join Date: Dec 2007
Location: Orlando, FL
Posts: 23
Thanks: 0
Rizza is on a distinguished road
Default

Quote:
Originally Posted by Aaron View Post
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.
Rizza is offline  
Reply With Quote
Old 07-06-2008, 11:21 PM   #11 (permalink)
The Frequenter
 
Join Date: Dec 2007
Location: In my basement
Posts: 386
Thanks: 47
Aaron is on a distinguished road
Default

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.
Send a message via MSN to Aaron
Aaron is offline  
Reply With Quote
Old 07-07-2008, 09:31 AM   #12 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

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? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote
Old 07-07-2008, 01:50 PM   #13 (permalink)
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

PHP Designer for the win!
Tanax is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 02:47 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design