Re: [PHP] IDE

2012-05-07 Thread Simon Schick
On Mon, May 7, 2012 at 3:10 AM, Ethan Rosenberg eth...@earthlink.net wrote:


 ===
 Simon -

 Thanks.


 I don't think you're talking about auto-form-fill and stuff like
 that, are you?


 No, I am not.

 Please send me your xdebug-config file.

 Thanks

 Ethan



Hi, Ethan

I forgot to mention that the whole configuration of my test-webserver
is on github ;) There are my configuration-files for apache, mysql,
nginx, php, solr and so on.
But I have to say that my environment is a bit special as I am
developing on a windows-machine and this configuration is running on a
virtual linux machine. Don't hesitate to ask things about the
configuration :)
https://github.com/SimonSimCity/webserver-configuration
For each program I have an init.sh script which will install the
program exactly the way I use it.
Feel free to fork it and add your stuff.

If you're just looking for the xdebug-configuration:
https://github.com/SimonSimCity/webserver-configuration/blob/master/php/conf/conf.d/xdebug.ini
You might have to change it to use it on a windows-environment ... at
least you'd have to move it into your php.ini file instead of an
separate configuration-file as it is on Linux.

As I am the only one developing on this machine, I've configured
xdebug in that way, that anyone can open a xdebug-debug-session. This
is done by enabling xdebug.remote_connect_back. Please do not use this
on your live-server, but set an ip-limit using xdebug.remote_host!

Please read this part of the xdebug-configuration to get a better
understanding on how to set up a working environment (specially the
part Starting The Debugger):
http://xdebug.org/docs/remote

The only problem I can report so far is, that I can't debug
command-line scripts ... If someone else reading that post has an
answer, I'd be glad to hear it.

Bye
Simon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] IDE

2012-05-06 Thread Ethan Rosenberg

Dear List -

Is there any IDE which will let me step thru my code AND give the 
opportunity to enter data; eg, when a form should be displayed allow 
me to enter data into the form and then proceed?  I realize the forms 
are either HTML and/or Javascript, but there must be a 
work-around.  I is exceedingly tedious to use echo print var_dump print_r.


Thanks.

Ethan



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2012-05-06 Thread Simon Schick
On Mon, May 7, 2012 at 12:33 AM, Ethan Rosenberg eth...@earthlink.net wrote:

 Dear List -

 Is there any IDE which will let me step thru my code AND give the
 opportunity to enter data; eg, when a form should be displayed allow me to
 enter data into the form and then proceed?  I realize the forms are either
 HTML and/or Javascript, but there must be a work-around.  I is exceedingly
 tedious to use echo print var_dump print_r.

 Thanks.

 Ethan



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


Hi, Ethan

The only thing I can come up with, that would really help you, since
you're just working with var_dump and print_r, is a php-debugger.

The common debugger for php are Zend Debugger and xdebug.

Nearly every IDE can be connected to them and if you set it up
correctly you can browse through your side (using your favourite
browser) and activate the debugger just by setting a cookie. For
several browsers there are plugins that set the cookie by clicking an
icon.
I'm talking about nearly every IDE because I saw a screenshot of
someone debugging a php-script using xdebug and vi :)

Just the first two links I found on google ...
* http://xdebug.org/docs/install
* 
http://www.thierryb.net/pdtwiki/index.php?title=Using_PDT_:_Installation_:_Installing_the_Zend_Debugger

Is that what you need?

I'm personally using PhpStorm and a VM with Debian, PHP 5.3 and xdebug
to debug my scripts and am perfectly fine with that. I can send you my
whole xdebug-config if you want :)

The stuff with javascript sounds like something automated to me ...
But I don't think you're talking about auto-form-fill and stuff like
that, are you?

Bye
Simon

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2012-05-06 Thread Ethan Rosenberg

At 06:45 PM 5/6/2012, Simon Schick wrote:

On Mon, May 7, 2012 at 12:33 AM, Ethan Rosenberg eth...@earthlink.net wrote:

 Dear List -

 Is there any IDE which will let me step thru my code AND give the
 opportunity to enter data; eg, when a form should be displayed allow me to
 enter data into the form and then proceed? Â I realize the forms are either
 HTML and/or Javascript, but there must be a work-around. Â I is exceedingly
 tedious to use echo print var_dump print_r.

 Thanks.

 Ethan



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


Hi, Ethan

The only thing I can come up with, that would really help you, since
you're just working with var_dump and print_r, is a php-debugger.

The common debugger for php are Zend Debugger and xdebug.

Nearly every IDE can be connected to them and if you set it up
correctly you can browse through your side (using your favourite
browser) and activate the debugger just by setting a cookie. For
several browsers there are plugins that set the cookie by clicking an
icon.
I'm talking about nearly every IDE because I saw a screenshot of
someone debugging a php-script using xdebug and vi :)

Just the first two links I found on google ...
* http://xdebug.org/docs/install
* 
http://www.thierryb.net/pdtwiki/index.php?title=Using_PDT_:_Installation_:_Installing_the_Zend_Debugger


Is that what you need?

I'm personally using PhpStorm and a VM with Debian, PHP 5.3 and xdebug
to debug my scripts and am perfectly fine with that. I can send you my
whole xdebug-config if you want :)

The stuff with javascript sounds like something automated to me ...
But I don't think you're talking about auto-form-fill and stuff like
that, are you?

Bye
Simon

===
Simon -

Thanks.


I don't think you're talking about auto-form-fill and stuff like
that, are you?


No, I am not.

Please send me your xdebug-config file.

Thanks

Ethan



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] IDE - SVN - dev server - live server

2010-01-14 Thread John Corry
I am working on designing an documenting a process for our team to use to
manage code updates/changes.

What we've been doing has been ghastly: a bunch of developers using
dreamweaver's 'check in/out' functions, all using the same FTP login, to FTP
files to the production server.

It turns out the site we're working on together is a bit too complex for
this, so it's on me to come up with a better way.

I'm a big fan of SVN and think we'll be light years ahead of where we are
presently by using SVN to manage code revisions.

So, I've set up an SVN repository on our dedicated server and imported all
of the live-site code. Then I set up a dev virtual host (dev.domain.com) and
exported all of the code in my repository to that vhost's DocRoot. So...that
gave me a copy. Next, I copied the MySQL db to a separate db that we'll use
for the dev server...so dev code doesn't query the live db. Then of course,
I had to edit the config files that have DSN information in them to make
sure my dev site actually uses my dev db.

Here's where the problems start to creep in...

If I export the whole repository from SVN to the dev DocRoot directory, I'm
going to overwrite the config files that have DSN info in them. Similarly,
there are some javascript files that declare variables like var base_url = '
http://mysite.com'...those variables need to be set once for the environment
(my local IDE? the dev server? the production server?) and then not messed
with afterward.

After an SVN commit, it's really easy to svn export svn://localhost/mysite
/path/to/my/dev_server

Simple, all of the code in the repository goes to the dev server.

The issue I'm having is that there are a number of files that I do NOT want
to be copied from the repository to the dev server, except on
rare occasions.

So, I can choose to add the files to my svn:ignore in my working copy so
they aren't committed/updated. But I can't ensure that all of the developers
take this step and it's not a reliable way to keep those select files in the
repository out of my dev server.

Or, I can write a shell script that does the SVN export, then overwrites the
selected config files with master versions that are stored somewhere else
and not edited by any of the team. One problem with that though, is that our
main javascript file tends to be edited/changed and it's one that can create
problems if that base_url var isn't appropriate to the server it's on.

Or, in all of my PHP files, I can write the config values into switch
statements:
switch($_SERVER['HTTP_HOST']) {
  case 'mysite.local':
 // local IDE config directives
  case 'dev.mysite.com':
 // dev server config directives
  // etc...
}

...but that leaves the production server DSN sitting around in development
code, which I'd like to avoid, and I don't have an analogous solution for my
javascript files.

JS question: is there a js way to do the same thing? Evaluate the js
equivalent of PHP's $_SERVER['HTTP_HOST']? If there is, I think this
solution will work.

This has got to be a fairly typical workflow and problem.

What are some of the strategies you folks use for designing your flow of
code from local IDE to SVN to dev server to production server?

-- 
John Corry
PHP developer - 3by400, Inc
http://www.3by400.com


Re: [PHP] IDE - SVN - dev server - live server

2010-01-14 Thread vikash . iitb
I do not see the reason why you would need an absolute URL like var base_url
= '
http://mysite.com' in your javascript code.

If only this is giving you problems, use: *window.location.hostname* to get
the hostname in javascript.

---
Vikash Kumar
http://vika.sh


On Thu, Jan 14, 2010 at 9:40 PM, John Corry jcorry.li...@gmail.com wrote:

 I am working on designing an documenting a process for our team to use to
 manage code updates/changes.

 What we've been doing has been ghastly: a bunch of developers using
 dreamweaver's 'check in/out' functions, all using the same FTP login, to
 FTP
 files to the production server.

 It turns out the site we're working on together is a bit too complex for
 this, so it's on me to come up with a better way.

 I'm a big fan of SVN and think we'll be light years ahead of where we are
 presently by using SVN to manage code revisions.

 So, I've set up an SVN repository on our dedicated server and imported all
 of the live-site code. Then I set up a dev virtual host (dev.domain.com)
 and
 exported all of the code in my repository to that vhost's DocRoot.
 So...that
 gave me a copy. Next, I copied the MySQL db to a separate db that we'll use
 for the dev server...so dev code doesn't query the live db. Then of course,
 I had to edit the config files that have DSN information in them to make
 sure my dev site actually uses my dev db.

 Here's where the problems start to creep in...

 If I export the whole repository from SVN to the dev DocRoot directory, I'm
 going to overwrite the config files that have DSN info in them. Similarly,
 there are some javascript files that declare variables like var base_url =
 '
 http://mysite.com'...those variables need to be set once for the
 environment
 (my local IDE? the dev server? the production server?) and then not messed
 with afterward.

 After an SVN commit, it's really easy to svn export svn://localhost/mysite
 /path/to/my/dev_server

 Simple, all of the code in the repository goes to the dev server.

 The issue I'm having is that there are a number of files that I do NOT want
 to be copied from the repository to the dev server, except on
 rare occasions.

 So, I can choose to add the files to my svn:ignore in my working copy so
 they aren't committed/updated. But I can't ensure that all of the
 developers
 take this step and it's not a reliable way to keep those select files in
 the
 repository out of my dev server.

 Or, I can write a shell script that does the SVN export, then overwrites
 the
 selected config files with master versions that are stored somewhere else
 and not edited by any of the team. One problem with that though, is that
 our
 main javascript file tends to be edited/changed and it's one that can
 create
 problems if that base_url var isn't appropriate to the server it's on.

 Or, in all of my PHP files, I can write the config values into switch
 statements:
 switch($_SERVER['HTTP_HOST']) {
  case 'mysite.local':
 // local IDE config directives
  case 'dev.mysite.com':
 // dev server config directives
  // etc...
 }

 ...but that leaves the production server DSN sitting around in development
 code, which I'd like to avoid, and I don't have an analogous solution for
 my
 javascript files.

 JS question: is there a js way to do the same thing? Evaluate the js
 equivalent of PHP's $_SERVER['HTTP_HOST']? If there is, I think this
 solution will work.

 This has got to be a fairly typical workflow and problem.

 What are some of the strategies you folks use for designing your flow of
 code from local IDE to SVN to dev server to production server?

 --
 John Corry
 PHP developer - 3by400, Inc
 http://www.3by400.com



[PHP] IDE with ftp and subversion?

2009-10-24 Thread Lars Nielsen
Hi there,

Can anyone recommend an IDE with both subversion and ftp integration?
I have played a little with eclipse but find the integrations a little
dificult to manage.
Idealy I want a local development server with LAMP+svn and then an easy
opportunity to publish a site to a production server.

Can anyone give me a hint?

Regards
Lars Nielsen


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE with ftp and subversion?

2009-10-24 Thread John Black

Lars Nielsen wrote:

Can anyone recommend an IDE with both subversion and ftp integration?
I have played a little with eclipse but find the integrations a little
dificult to manage.
Idealy I want a local development server with LAMP+svn and then an easy
opportunity to publish a site to a production server.



Have you tried Netbeans?
http://www.netbeans.org/downloads/index.html

It comes with svn support, can upload your project to your webserver 
over ftp, step by step debugger and a lot more.


Give it a try
--
John
A casual stroll through the lunatic asylum shows that faith does not 
prove anything.

[Friedrich Nietzsche]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE with ftp and subversion?

2009-10-24 Thread Lars Nielsen
Hi,
No I have not tryed that yet. Giving it a shot now! :-) 

Thanks

/Lars
lør, 24 10 2009 kl. 12:15 +0200, skrev John Black:
 Lars Nielsen wrote:
  Can anyone recommend an IDE with both subversion and ftp integration?
  I have played a little with eclipse but find the integrations a little
  dificult to manage.
  Idealy I want a local development server with LAMP+svn and then an easy
  opportunity to publish a site to a production server.
 
 
 Have you tried Netbeans?
   http://www.netbeans.org/downloads/index.html
 
 It comes with svn support, can upload your project to your webserver 
 over ftp, step by step debugger and a lot more.
 
 Give it a try
 -- 
 John
 A casual stroll through the lunatic asylum shows that faith does not 
 prove anything.
 [Friedrich Nietzsche]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE with ftp and subversion?

2009-10-24 Thread Lars Nielsen
lør, 24 10 2009 kl. 12:15 +0200, skrev John Black:
 Lars Nielsen wrote:
  Can anyone recommend an IDE with both subversion and ftp integration?
  I have played a little with eclipse but find the integrations a little
  dificult to manage.
  Idealy I want a local development server with LAMP+svn and then an easy
  opportunity to publish a site to a production server.
 
 
 Have you tried Netbeans?
   http://www.netbeans.org/downloads/index.html
 
 It comes with svn support, can upload your project to your webserver 
 over ftp, step by step debugger and a lot more.
 
 Give it a try
 -- 
 John
 A casual stroll through the lunatic asylum shows that faith does not 
 prove anything.
 [Friedrich Nietzsche]
 
Thanks again! :-)
It works like a dream! 

/Lars


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-28 Thread Shelley
Though vim is not a so-called IDE, actually it's quite handy.

On Wed, Aug 27, 2008 at 1:06 PM, Sascha Braun [EMAIL PROTECTED]wrote:

 Hi people,

 I have a webproject which is round about 3 GB in size. I was usually
 using eclipse to work with the software but over time eclipse became
 very instable regarding that project.

 As soon as I open classes with 2000 or more lines of code in it, an out
 of memory error occours.

 So I need a new IDE for linux.

 Please tell me which IDE might be a true alternative for projects at
 that size.

 Thank you friends,

 kind regards,

 Sascha

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
With best regards,
Shelley Shyan
http://phparch.cn


Re: [PHP] PHP IDE needed

2008-08-28 Thread Dotan Cohen
2008/8/28 Shelley [EMAIL PROTECTED]:
 Though vim is not a so-called IDE, actually it's quite handy.


And as PHP is not [generally] compiled, no IDE is needed. VIM is
great, and for a GUI text editor I use Kate. Note that there will soon
be a VIM mode in Kate! I cannot wait!

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP IDE needed

2008-08-28 Thread Stut

On 28 Aug 2008, at 11:57, Dotan Cohen wrote:

2008/8/28 Shelley [EMAIL PROTECTED]:

Though vim is not a so-called IDE, actually it's quite handy.



And as PHP is not [generally] compiled, no IDE is needed. VIM is
great, and for a GUI text editor I use Kate. Note that there will soon
be a VIM mode in Kate! I cannot wait!


What does compilation have to do with it? C/C++ are rarely interpreted  
but that certainly doesn't dictate a need for an IDE.


This question comes up so often it's painful, but I don't think I've  
ever actually answered it. I use TextMate most of the time, Coda for  
remote projects and occasionally Zend Studio when I need to step  
through code. I've also gone through phases of using vi, vim, pico,  
nano, emacs, epsilon, kate, notepad(!), notepad2, aptana, eclipse, and  
many more I can't remember. It's text, use what works for you.


I recently made the mistake of putting over 100k fairly small data  
files into the tree for my current project and it completely killed  
TextMate. Best option for lots of files or very large files is to  
disable any automatic scanning your editor does. You may lose some of  
the nice-to-have features like code completion but to me that's a  
small price to pay for being able to do anything at all.


-Stut

--
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-28 Thread Brice

 Please tell me which IDE might be a true alternative for projects at
 that size.


Don't know for sure, but you can try Netbeans for PHP  :

http://php.netbeans.org/

kind regards,
Brice Favre

Thank you friends,

 kind regards,

 Sascha

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP IDE needed

2008-08-28 Thread Dotan Cohen
2008/8/28 Stut [EMAIL PROTECTED]:
 And as PHP is not [generally] compiled, no IDE is needed. VIM is
 great, and for a GUI text editor I use Kate. Note that there will soon
 be a VIM mode in Kate! I cannot wait!

 What does compilation have to do with it? C/C++ are rarely interpreted but
 that certainly doesn't dictate a need for an IDE.

Non-compiled languages need only a text editor. Text editors have
features such as code completion, library reference, code
highlighting, code folding, multiple document interface, etc.

Compiled languages need a compiler. Cooperation between the compiler
and the text editor is done in an IDE. That's what the I in
_Integrated_ Development Environment means. If you don't need to
integrate with anything (specifically, a compiler) then you don't need
an integrated development environment.

 This question comes up so often it's painful, but I don't think I've ever
 actually answered it. I use TextMate most of the time, Coda for remote
 projects and occasionally Zend Studio when I need to step through code. I've
 also gone through phases of using vi, vim, pico, nano, emacs, epsilon, kate,
 notepad(!), notepad2, aptana, eclipse, and many more I can't remember. It's
 text, use what works for you.


I've also rarely answered this question, and I don't know why I spoke up today.

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP IDE needed

2008-08-28 Thread Dan Joseph
On Thu, Aug 28, 2008 at 8:59 AM, Dotan Cohen [EMAIL PROTECTED] wrote:

 2008/8/28 Stut [EMAIL PROTECTED]:
  And as PHP is not [generally] compiled, no IDE is needed. VIM is
  great, and for a GUI text editor I use Kate. Note that there will soon
  be a VIM mode in Kate! I cannot wait!
 
  What does compilation have to do with it? C/C++ are rarely interpreted
 but
  that certainly doesn't dictate a need for an IDE.

 Non-compiled languages need only a text editor. Text editors have
 features such as code completion, library reference, code
 highlighting, code folding, multiple document interface, etc.

 Compiled languages need a compiler. Cooperation between the compiler
 and the text editor is done in an IDE. That's what the I in
 _Integrated_ Development Environment means. If you don't need to
 integrate with anything (specifically, a compiler) then you don't need
 an integrated development environment.

  This question comes up so often it's painful, but I don't think I've ever
  actually answered it. I use TextMate most of the time, Coda for remote
  projects and occasionally Zend Studio when I need to step through code.
 I've
  also gone through phases of using vi, vim, pico, nano, emacs, epsilon,
 kate,
  notepad(!), notepad2, aptana, eclipse, and many more I can't remember.
 It's
  text, use what works for you.
 

 I've also rarely answered this question, and I don't know why I spoke up
 today.

 --
 Dotan Cohen

 http://what-is-what.com
 http://gibberish.co.il
 א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

 ä-ö-ü-ß-Ä-Ö-Ü


Well, while that is true about compiling, you're forgetting about other
things inside of an IDE, such as debugging.  Yes, you can just pull up a web
browser or run the script at command line, but the debugger also has the
stepping features and break points that can make debugging a whole lot
easier and quicker.

-- 
-Dan Joseph

www.canishosting.com - Plans start @ $1.99/month.

Build a man a fire, and he will be warm for the rest of the day.
Light a man on fire, and will be warm for the rest of his life.


Re: [PHP] PHP IDE needed

2008-08-28 Thread Stut

On 28 Aug 2008, at 13:59, Dotan Cohen wrote:

2008/8/28 Stut [EMAIL PROTECTED]:

And as PHP is not [generally] compiled, no IDE is needed. VIM is
great, and for a GUI text editor I use Kate. Note that there will  
soon

be a VIM mode in Kate! I cannot wait!


What does compilation have to do with it? C/C++ are rarely  
interpreted but

that certainly doesn't dictate a need for an IDE.


Non-compiled languages need only a text editor. Text editors have
features such as code completion, library reference, code
highlighting, code folding, multiple document interface, etc.

Compiled languages need a compiler. Cooperation between the compiler
and the text editor is done in an IDE. That's what the I in
_Integrated_ Development Environment means. If you don't need to
integrate with anything (specifically, a compiler) then you don't need
an integrated development environment.


The point I was trying to make which I apparently didn't do very well  
was that the need for an IDE has nothing to do with whether the  
language you're using is compiled or interpreted, but instead with  
what you want from your development tools. You can develop with C++  
without an IDE in exactly the same way as you can with PHP. All you're  
doing is replacing the PHP interpreter with a C++ compiler. That extra  
tool is still needed, but integration with an editor is entirely  
optional.


And thanks for the tasty eggs!

-Stut

--
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-28 Thread Dotan Cohen
2008/8/28 Dan Joseph [EMAIL PROTECTED]:
 Well, while that is true about compiling, you're forgetting about other
 things inside of an IDE, such as debugging.  Yes, you can just pull up a web
 browser or run the script at command line, but the debugger also has the
 stepping features and break points that can make debugging a whole lot
 easier and quicker.


Dan, you are right. A debugger most certainly makes it an IDE. As I
don't use a debugger I never really paid attention to their existence.
I stand corrected.

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP IDE needed

2008-08-28 Thread Dotan Cohen
2008/8/28 Stut [EMAIL PROTECTED]:
 And thanks for the tasty eggs!


Eggs? I've obviously missed something.

So long, and thanks for all the fish!

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP IDE needed

2008-08-28 Thread Micah Gersten
That's an opinion that you state as fact.  I use an IDE for PHP for
function referencing is very PHP.  The open declaration feature is very
helpful in eclipse.   Also, subeclipse is great too.

Thank you,
Micah Gersten
onShore Networks
Internal Developer
http://www.onshore.com



Dotan Cohen wrote:
 Non-compiled languages need only a text editor. Text editors have
 features such as code completion, library reference, code
 highlighting, code folding, multiple document interface, etc.

 Compiled languages need a compiler. Cooperation between the compiler
 and the text editor is done in an IDE. That's what the I in
 _Integrated_ Development Environment means. If you don't need to
 integrate with anything (specifically, a compiler) then you don't need
 an integrated development environment.

   
 This question comes up so often it's painful, but I don't think I've ever
 actually answered it. I use TextMate most of the time, Coda for remote
 projects and occasionally Zend Studio when I need to step through code. I've
 also gone through phases of using vi, vim, pico, nano, emacs, epsilon, kate,
 notepad(!), notepad2, aptana, eclipse, and many more I can't remember. It's
 text, use what works for you.

 

 I've also rarely answered this question, and I don't know why I spoke up 
 today.

   

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-28 Thread Dotan Cohen
2008/8/28 Micah Gersten [EMAIL PROTECTED]:
 That's an opinion that you state as fact.

You must be new here :)

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP IDE needed

2008-08-28 Thread Micah Gersten
I've been on the list for over a month and I post quite a bit.  I do the
same thing apparently.  See 'Re: [PHP] Re: Variable name as a string'
thread.  :-)

Thank you,
Micah Gersten
onShore Networks
Internal Developer
http://www.onshore.com



Dotan Cohen wrote:
 2008/8/28 Micah Gersten [EMAIL PROTECTED]:
   
 That's an opinion that you state as fact.
 

 You must be new here :)

   


Re: [PHP] PHP IDE needed

2008-08-28 Thread Dotan Cohen
2008/8/28 Micah Gersten [EMAIL PROTECTED]:
 You must be new here :)

 I've been on the list for over a month and I post quite a bit.

It is an internet meme for those who express surprise at some old
internet habits. Probably most familiar to readers of /.. It was meant
as an in-joke, with absolutely no offense intended. Quite the
opposite, it is most often said to veterans.

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת

ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP IDE needed

2008-08-28 Thread Lupus Michaelis

Shelley a écrit :

Though vim is not a so-called IDE, actually it's quite handy.


  Actually, it is. An IDE is a glue between a set of tools. Vim 
provides every services you need, and it is scriptable.


--
Mickaël Wolff aka Lupus Michaelis
http://lupusmic.org

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-28 Thread Brendon Van Heyzen
I really like zend studio for eclipse, debugger is slow at times on  
large projects. I hope, zend said they won't, is provide xdebug  
support for zend studio. I also really like working with mylyn.

--Brendon


On Aug 27, 2008, at 1:06 AM, Sascha Braun wrote:


Hi people,

I have a webproject which is round about 3 GB in size. I was usually
using eclipse to work with the software but over time eclipse became
very instable regarding that project.

As soon as I open classes with 2000 or more lines of code in it, an  
out

of memory error occours.

So I need a new IDE for linux.

Please tell me which IDE might be a true alternative for projects at
that size.

Thank you friends,

kind regards,

Sascha

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-27 Thread VamVan
use Aptana its awesome and free as well.

thanks



On Tue, Aug 26, 2008 at 8:29 PM, Micah Gersten [EMAIL PROTECTED] wrote:

 How much RAM do you have?  Eclipse is a great IDE.  Have you upgraded to
 3.4?

 Thank you,
 Micah Gersten
 onShore Networks
 Internal Developer
 http://www.onshore.com



 Sascha Braun wrote:
  Hi people,
 
  I have a webproject which is round about 3 GB in size. I was usually
  using eclipse to work with the software but over time eclipse became
  very instable regarding that project.
 
  As soon as I open classes with 2000 or more lines of code in it, an out
  of memory error occours.
 
  So I need a new IDE for linux.
 
  Please tell me which IDE might be a true alternative for projects at
  that size.
 
  Thank you friends,
 
  kind regards,
 
  Sascha
 

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: PHP IDE needed

2008-08-27 Thread Carlos Medina

Sascha Braun schrieb:

Hi people,

I have a webproject which is round about 3 GB in size. I was usually
using eclipse to work with the software but over time eclipse became
very instable regarding that project.

As soon as I open classes with 2000 or more lines of code in it, an out
of memory error occours.

So I need a new IDE for linux.

Please tell me which IDE might be a true alternative for projects at
that size.

Thank you friends,

kind regards,

Sascha

Hi Sascha,
Try PHPed

Regards

Carlos

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP IDE needed

2008-08-27 Thread Sancar Saran
Whats wrong with

echo ?php echo Hello World; ?  index.php


is there anything to satisfy your needs...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-27 Thread Shawn McKenzie

VamVan wrote:

use Aptana its awesome and free as well.

thanks




And it's Eclipse as well :-)

-Shawn

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [OT|Troll] Re: [PHP] Re: PHP IDE needed

2008-08-27 Thread Lupus Michaelis

Sancar Saran a écrit :

Whats wrong with

echo ?php echo Hello World; ?  index.php


  Two syntacticals errors ? :p



is there anything to satisfy your needs...


  I prefer cat for that purpose, more flexible.

--
Mickaël Wolff aka Lupus Michaelis
http://lupusmic.org

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP IDE needed

2008-08-26 Thread Sascha Braun

Hi people,

I have a webproject which is round about 3 GB in size. I was usually
using eclipse to work with the software but over time eclipse became
very instable regarding that project.

As soon as I open classes with 2000 or more lines of code in it, an out
of memory error occours.

So I need a new IDE for linux.

Please tell me which IDE might be a true alternative for projects at
that size.

Thank you friends,

kind regards,

Sascha

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP IDE needed

2008-08-26 Thread Micah Gersten
How much RAM do you have?  Eclipse is a great IDE.  Have you upgraded to
3.4?

Thank you,
Micah Gersten
onShore Networks
Internal Developer
http://www.onshore.com



Sascha Braun wrote:
 Hi people,

 I have a webproject which is round about 3 GB in size. I was usually
 using eclipse to work with the software but over time eclipse became
 very instable regarding that project.

 As soon as I open classes with 2000 or more lines of code in it, an out
 of memory error occours.

 So I need a new IDE for linux.

 Please tell me which IDE might be a true alternative for projects at
 that size.

 Thank you friends,

 kind regards,

 Sascha


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Your Favourate PHP IDE?

2008-01-28 Thread skylark
Hi all,

We all know that PHP IDE is one of the most popular themes...

Maybe you are already a PHP professional, then could you
please spend a little time to cast your vote to tell the newbies what
you are using?

Maybe you are just starting using PHP, then it's highly recommended
that you look
at the vote results first instead of asking the questions directly to
the mailing list.

Maybe you are...

Come and vote! Share your ideas here: http://www.phparch.cn

Tell me which is your selection and get an opportunity to win Olympic gifts. :-)

--
Regards,
Shelley

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread tedd

At 11:30 PM + 11/15/07, Jammer wrote:


duh!

look, i'm really sorry everyone ... we all make mistakes!


Only the newbies -- the rest of us are prefect.  :-)

I walked into a bank once and found everyone laying on the floor. I 
had not done anything wrong, but it was just a matter of bad timing.


Cheers,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] IDE

2007-11-16 Thread Arno Kuhl
-Original Message-
From: William Betts [mailto:[EMAIL PROTECTED] 
Sent: 16 November 2007 05:13
To: [EMAIL PROTECTED]
Cc: David Giragosian; php-general@lists.php.net
Subject: Re: [PHP] IDE

Have you ever used Zend Studio? If so how does it compare to PhpED?

---

I've tried Zend Studio a few times, but I certainly can't say I'm familiar
with it enough to give any real comparison. I looked at the Zend tools
pretty closely 4 years ago, and quite superficially a couple of times since
then. I found ZS slow and cumbersome, and not very intuitive (probably due
to unfamiliarity more than anything else). I'm sure each has it's strengths
and weaknesses. I decided on PhpED because (a) it was fast and intuitive and
I felt comfortable with it straight away, coming from c dev background using
IBM dev tools, (b) it had everything I expected in an IDE and more, (c) the
response from NuSphere and the forums was quick, (d) it was much cheaper
than ZS. Since making the choice I find PhpED very stable, and the updates
are frequent with real useful new features and functionality. The latest
version has a feature I requested a few months ago  so the developers are
generally good at listening to feedback and requests. And the debugger is
excellent. PhpED is the single most important dev tool I have and well worth
the investment, and I'm not sure the extra cost for ZS would have given me
any extra value. But I'm sure there are many ZS users who would disagree.
Best advice is do what I did - download both trial versions and give them a
thorough test yourself. What you feel comfortable with is likely different
to what I feel comfortable with.

Arno

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread Jammer

Børge Holen wrote:

On Thursday 15 November 2007 21:35:04 Jammer wrote:

Hi All,

This is my first post here ... I'm very much a newbie to php but work
during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up
on my PHP.

Are there any IDE's for PHP worth checking out.  Particularly free ones!

TIA,

--
jammer
www.jammer.biz


I LOVE this IDE quiz' 
the same answers everytime.


duh!

look, i'm really sorry everyone ... we all make mistakes!

if this is a question that comes up as often as it appears from the 
responses this thread has generated maybe the FAQ needs to *really* 
address that?


http://uk3.php.net/FAQ.php

--
jammer
www.jammer.biz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread Jammer

Arno Kuhl wrote:

I think jammer's idea is a good one. I've been lurking on this list for
years and seen many resurrections of the IDE thread. It's an important
thread, and the PHP IDE world is ever changing and new products come onto
the scene every now and then. I use my favourite commercial IDE but quite
frequently check out the other IDE's mentioned in those threads, mostly to
confirm the choice I made 4 years ago is still the right one. A
well-maintained list of free and commercial PHP IDE's on the php.net site
would be a great idea, especially if it also had links to reviews, and also
included the mix-n-match IDE's I see some people on the list use. And/or
maybe a forum on php.net dedicated to PHP IDE's, with user polls. Then
whenever the IDE thread pops up the response would be to look at the web
site (RTFWS). The only downside might be the resources to run it.


thanks.

I think the point being that most people will have done a simple google 
search in order to have found php.net ... if the IDE topic was obvious 
on that page most people would find it, and have this question answered, 
before finding this list and subscribing.


we as developers must know that if repeated 'users' are appearing here 
with the same questions something is up?  no?  ;)


its like good interface design if you get loads of questions about 
something regarding software you wrote there is a chance that a lot of 
those could be delt with by subtle changes to the way you present things 
to users.



BTW jammer, if you start using php for big projects I'd recommend NuSphere
PhpED, but it's overkill if you just want to dabble. There's a trial version
if you want to check it out, and a good tip is they drop the price every now
and then for promotions (wish I knew that 4 years ago).


well at the moment it is just dabbling to be honest but i'm currently 
redesigning my home site and am investigating the options before laying 
any code down.  one thing i'm considering if a tighter integration with 
my wordpress blog to replace a news type page.  that sort of thing, no 
full on web apps.


i'd propably turn to something like C# in visual web developer if i were 
to go that route simply from familiarity.


thanks for the headsup on the IDE.  off to check it out now.

--
jammer
www.jammer.biz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread Jammer

tedd wrote:

At 11:30 PM + 11/15/07, Jammer wrote:


duh!

look, i'm really sorry everyone ... we all make mistakes!


Only the newbies -- the rest of us are prefect.  :-)


haha! ;)

I walked into a bank once and found everyone laying on the floor. I had 
not done anything wrong, but it was just a matter of bad timing.


oooh dear ... that doesn't bode well!

--
jammer
www.jammer.biz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread Daniel Brown
On Nov 16, 2007 6:37 AM, Arno Kuhl [EMAIL PROTECTED] wrote:


 -Original Message-
 From: David Giragosian [mailto:[EMAIL PROTECTED]
 Sent: 16 November 2007 05:21
 To: php-general@lists.php.net
 Subject: Re: [PHP] IDE

 On 11/15/07, Jammer [EMAIL PROTECTED] wrote:
 
  Børge Holen wrote:
   On Thursday 15 November 2007 21:35:04 Jammer wrote:
   Hi All,
  
   This is my first post here ... I'm very much a newbie to php but
   work during the day using SQL Server, VS2005 and Foxpro.  Looking
   to gen up on my PHP.
  
   Are there any IDE's for PHP worth checking out.  Particularly free
  ones!
  
   TIA,
  
   --
   jammer
   www.jammer.biz
  
   I LOVE this IDE quiz'
   the same answers everytime.
 
  duh!
 
  look, i'm really sorry everyone ... we all make mistakes!
 
  if this is a question that comes up as often as it appears from the
  responses this thread has generated maybe the FAQ needs to *really*
  address that?
 
  http://uk3.php.net/FAQ.php
 
  --
  jammer
 
 It's OK. I think there's been a long thread on the subject each of the last
 two weeks. The folks who are really passionate about their IDE's jump in
 first, then those less motivated or less interested add theirs, then it
 seems to die for a day or so before it rises from the ashes to sputter and
 hiccup a time or two. And then it starts all over, again.

 If you stick around long enough on this list, you'll be fussin' at the
 question, too.

 David
 --

 I think jammer's idea is a good one. I've been lurking on this list for
 years and seen many resurrections of the IDE thread. It's an important
 thread, and the PHP IDE world is ever changing and new products come onto
 the scene every now and then. I use my favourite commercial IDE but quite
 frequently check out the other IDE's mentioned in those threads, mostly to
 confirm the choice I made 4 years ago is still the right one. A
 well-maintained list of free and commercial PHP IDE's on the php.net site
 would be a great idea, especially if it also had links to reviews, and also
 included the mix-n-match IDE's I see some people on the list use. And/or
 maybe a forum on php.net dedicated to PHP IDE's, with user polls. Then
 whenever the IDE thread pops up the response would be to look at the web
 site (RTFWS). The only downside might be the resources to run it.

 BTW jammer, if you start using php for big projects I'd recommend NuSphere
 PhpED, but it's overkill if you just want to dabble. There's a trial version
 if you want to check it out, and a good tip is they drop the price every now
 and then for promotions (wish I knew that 4 years ago).

 Arno


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



I can understand your concerns about the issue not being addressed
in the FAQs when it is such a prevalent discussion.  However, it
wouldn't make a suitable FAQ entry because the opinions of which IDE
is best are just that: opinions.  And to list just a few of the IDEs
available on the official site would insinuate that both the PHP
community and the project itself endorse them.

A great resource for something like that would be to check out a
PHP-oriented site.  Once again, http://www.phpbuilder.com/ comes to
mind.  I don't know statistics on that-versus-other sites, but I'd
hazard a guess that PHP Builder probably has one of - if not the -
busiest, most active forum communities.

-- 
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] IDE

2007-11-16 Thread Arno Kuhl

-Original Message-
From: David Giragosian [mailto:[EMAIL PROTECTED] 
Sent: 16 November 2007 05:21
To: php-general@lists.php.net
Subject: Re: [PHP] IDE

On 11/15/07, Jammer [EMAIL PROTECTED] wrote:

 Børge Holen wrote:
  On Thursday 15 November 2007 21:35:04 Jammer wrote:
  Hi All,
 
  This is my first post here ... I'm very much a newbie to php but 
  work during the day using SQL Server, VS2005 and Foxpro.  Looking 
  to gen up on my PHP.
 
  Are there any IDE's for PHP worth checking out.  Particularly free
 ones!
 
  TIA,
 
  --
  jammer
  www.jammer.biz
 
  I LOVE this IDE quiz'
  the same answers everytime.

 duh!

 look, i'm really sorry everyone ... we all make mistakes!

 if this is a question that comes up as often as it appears from the 
 responses this thread has generated maybe the FAQ needs to *really* 
 address that?

 http://uk3.php.net/FAQ.php

 --
 jammer

It's OK. I think there's been a long thread on the subject each of the last
two weeks. The folks who are really passionate about their IDE's jump in
first, then those less motivated or less interested add theirs, then it
seems to die for a day or so before it rises from the ashes to sputter and
hiccup a time or two. And then it starts all over, again.

If you stick around long enough on this list, you'll be fussin' at the
question, too.

David
--

I think jammer's idea is a good one. I've been lurking on this list for
years and seen many resurrections of the IDE thread. It's an important
thread, and the PHP IDE world is ever changing and new products come onto
the scene every now and then. I use my favourite commercial IDE but quite
frequently check out the other IDE's mentioned in those threads, mostly to
confirm the choice I made 4 years ago is still the right one. A
well-maintained list of free and commercial PHP IDE's on the php.net site
would be a great idea, especially if it also had links to reviews, and also
included the mix-n-match IDE's I see some people on the list use. And/or
maybe a forum on php.net dedicated to PHP IDE's, with user polls. Then
whenever the IDE thread pops up the response would be to look at the web
site (RTFWS). The only downside might be the resources to run it.

BTW jammer, if you start using php for big projects I'd recommend NuSphere
PhpED, but it's overkill if you just want to dabble. There's a trial version
if you want to check it out, and a good tip is they drop the price every now
and then for promotions (wish I knew that 4 years ago).

Arno

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread William Betts
Have you ever used Zend Studio? If so how does it compare to PhpED?

On Nov 16, 2007 5:37 AM, Arno Kuhl [EMAIL PROTECTED] wrote:


 -Original Message-
 From: David Giragosian [mailto:[EMAIL PROTECTED]
 Sent: 16 November 2007 05:21
 To: php-general@lists.php.net
 Subject: Re: [PHP] IDE

 On 11/15/07, Jammer [EMAIL PROTECTED] wrote:
 
  Børge Holen wrote:
   On Thursday 15 November 2007 21:35:04 Jammer wrote:
   Hi All,
  
   This is my first post here ... I'm very much a newbie to php but
   work during the day using SQL Server, VS2005 and Foxpro.  Looking
   to gen up on my PHP.
  
   Are there any IDE's for PHP worth checking out.  Particularly free
  ones!
  
   TIA,
  
   --
   jammer
   www.jammer.biz
  
   I LOVE this IDE quiz'
   the same answers everytime.
 
  duh!
 
  look, i'm really sorry everyone ... we all make mistakes!
 
  if this is a question that comes up as often as it appears from the
  responses this thread has generated maybe the FAQ needs to *really*
  address that?
 
  http://uk3.php.net/FAQ.php
 
  --
  jammer
 
 It's OK. I think there's been a long thread on the subject each of the last
 two weeks. The folks who are really passionate about their IDE's jump in
 first, then those less motivated or less interested add theirs, then it
 seems to die for a day or so before it rises from the ashes to sputter and
 hiccup a time or two. And then it starts all over, again.

 If you stick around long enough on this list, you'll be fussin' at the
 question, too.

 David
 --

 I think jammer's idea is a good one. I've been lurking on this list for
 years and seen many resurrections of the IDE thread. It's an important
 thread, and the PHP IDE world is ever changing and new products come onto
 the scene every now and then. I use my favourite commercial IDE but quite
 frequently check out the other IDE's mentioned in those threads, mostly to
 confirm the choice I made 4 years ago is still the right one. A
 well-maintained list of free and commercial PHP IDE's on the php.net site
 would be a great idea, especially if it also had links to reviews, and also
 included the mix-n-match IDE's I see some people on the list use. And/or
 maybe a forum on php.net dedicated to PHP IDE's, with user polls. Then
 whenever the IDE thread pops up the response would be to look at the web
 site (RTFWS). The only downside might be the resources to run it.

 BTW jammer, if you start using php for big projects I'd recommend NuSphere
 PhpED, but it's overkill if you just want to dabble. There's a trial version
 if you want to check it out, and a good tip is they drop the price every now
 and then for promotions (wish I knew that 4 years ago).

 Arno


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-16 Thread Larry Garfield
I haven't used PhpED, but I use Zend Studio Pro at work.  It is hands-down the 
best PHP IDE I've used.  (As I said, I cannot compare it to PhpED 
specifically.)  Little things like project management and code completion and 
such just work better than any other tool I've found, and it's debugger and 
profiler are also first-rate.  Performance is good, too.

At home, I've been avoiding buying it because it's $300 flipping dollars, and 
I'm wary of their time-based licensing.  It's also, of course, very non-Free, 
and I try to stick to open source programs at home (and at work when I can).  
I've bounced around between a lot of different PHP editing tools.  At the 
moment I'm using Eclipse-PDT, which is finally not so slow as to be unsable 
as previous versions of Eclipse were.  It's nowhere near as nice as Zend 
Studio, but at least it's [F|f]ree and once you figure out the weirdness that 
is Eclipse it gets the job done.  Still need to get it talking to XDebug, 
though.

On Friday 16 November 2007, William Betts wrote:
 Have you ever used Zend Studio? If so how does it compare to PhpED?

 On Nov 16, 2007 5:37 AM, Arno Kuhl [EMAIL PROTECTED] wrote:
  -Original Message-
  From: David Giragosian [mailto:[EMAIL PROTECTED]
  Sent: 16 November 2007 05:21
  To: php-general@lists.php.net
  Subject: Re: [PHP] IDE
 
  On 11/15/07, Jammer [EMAIL PROTECTED] wrote:
   Børge Holen wrote:
On Thursday 15 November 2007 21:35:04 Jammer wrote:
Hi All,
   
This is my first post here ... I'm very much a newbie to php but
work during the day using SQL Server, VS2005 and Foxpro.  Looking
to gen up on my PHP.
   
Are there any IDE's for PHP worth checking out.  Particularly free
  
   ones!
  
TIA,
   
--
jammer
www.jammer.biz
   
I LOVE this IDE quiz'
the same answers everytime.
  
   duh!
  
   look, i'm really sorry everyone ... we all make mistakes!
  
   if this is a question that comes up as often as it appears from the
   responses this thread has generated maybe the FAQ needs to *really*
   address that?
  
   http://uk3.php.net/FAQ.php
  
   --
   jammer
 
  It's OK. I think there's been a long thread on the subject each of the
  last two weeks. The folks who are really passionate about their IDE's
  jump in first, then those less motivated or less interested add theirs,
  then it seems to die for a day or so before it rises from the ashes to
  sputter and hiccup a time or two. And then it starts all over, again.
 
  If you stick around long enough on this list, you'll be fussin' at the
  question, too.
 
  David
  --
 
  I think jammer's idea is a good one. I've been lurking on this list for
  years and seen many resurrections of the IDE thread. It's an important
  thread, and the PHP IDE world is ever changing and new products come onto
  the scene every now and then. I use my favourite commercial IDE but quite
  frequently check out the other IDE's mentioned in those threads, mostly
  to confirm the choice I made 4 years ago is still the right one. A
  well-maintained list of free and commercial PHP IDE's on the php.net site
  would be a great idea, especially if it also had links to reviews, and
  also included the mix-n-match IDE's I see some people on the list use.
  And/or maybe a forum on php.net dedicated to PHP IDE's, with user polls.
  Then whenever the IDE thread pops up the response would be to look at the
  web site (RTFWS). The only downside might be the resources to run it.
 
  BTW jammer, if you start using php for big projects I'd recommend
  NuSphere PhpED, but it's overkill if you just want to dabble. There's a
  trial version if you want to check it out, and a good tip is they drop
  the price every now and then for promotions (wish I knew that 4 years
  ago).
 
  Arno
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php


-- 
Larry Garfield  AIM: LOLG42
[EMAIL PROTECTED]   ICQ: 6817012

If nature has made any one thing less susceptible than all others of 
exclusive property, it is the action of the thinking power called an idea, 
which an individual may exclusively possess as long as he keeps it to 
himself; but the moment it is divulged, it forces itself into the possession 
of every one, and the receiver cannot dispossess himself of it.  -- Thomas 
Jefferson

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-15 Thread Daniel Brown
On Nov 15, 2007 3:35 PM, Jammer [EMAIL PROTECTED] wrote:
 Hi All,

 This is my first post here ... I'm very much a newbie to php but work
 during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up
 on my PHP.

 Are there any IDE's for PHP worth checking out.  Particularly free ones!

 TIA,

 --
 jammer
 www.jammer.biz

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



Yes, and you can find them on Google and in the list archives.

This is one of the most frequently-asked questions it's a
shame the listserv can't filter those to point the user to an FAQ.

-- 
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-15 Thread Stut

Jammer wrote:

Hi All,

This is my first post here ... I'm very much a newbie to php but work 
during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up 
on my PHP.


Are there any IDE's for PHP worth checking out.  Particularly free ones!

TIA,


Will you please check the freakin' archives. This topic has been covered 
numerous times over the past week or so.


-Stut

--
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-15 Thread William Betts
I like Zend Studio. www.zend.com.

William Betts

On Nov 15, 2007 2:35 PM, Jammer [EMAIL PROTECTED] wrote:
 Hi All,

 This is my first post here ... I'm very much a newbie to php but work
 during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up
 on my PHP.

 Are there any IDE's for PHP worth checking out.  Particularly free ones!

 TIA,

 --
 jammer
 www.jammer.biz

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] IDE

2007-11-15 Thread Jammer

Hi All,

This is my first post here ... I'm very much a newbie to php but work 
during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up 
on my PHP.


Are there any IDE's for PHP worth checking out.  Particularly free ones!

TIA,

--
jammer
www.jammer.biz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-15 Thread Børge Holen

On Thursday 15 November 2007 21:35:04 Jammer wrote:
 Hi All,

 This is my first post here ... I'm very much a newbie to php but work
 during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up
 on my PHP.

 Are there any IDE's for PHP worth checking out.  Particularly free ones!

 TIA,

 --
 jammer
 www.jammer.biz

I LOVE this IDE quiz' 
the same answers everytime.

-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IDE

2007-11-15 Thread David Giragosian
On 11/15/07, Jammer [EMAIL PROTECTED] wrote:

 Børge Holen wrote:
  On Thursday 15 November 2007 21:35:04 Jammer wrote:
  Hi All,
 
  This is my first post here ... I'm very much a newbie to php but work
  during the day using SQL Server, VS2005 and Foxpro.  Looking to gen up
  on my PHP.
 
  Are there any IDE's for PHP worth checking out.  Particularly free
 ones!
 
  TIA,
 
  --
  jammer
  www.jammer.biz
 
  I LOVE this IDE quiz'
  the same answers everytime.

 duh!

 look, i'm really sorry everyone ... we all make mistakes!

 if this is a question that comes up as often as it appears from the
 responses this thread has generated maybe the FAQ needs to *really*
 address that?

 http://uk3.php.net/FAQ.php

 --
 jammer

It's OK. I think there's been a long thread on the subject each of the last
two weeks. The folks who are really passionate about their IDE's jump in
first, then those less motivated or less interested add theirs, then it
seems to die for a day or so before it rises from the ashes to sputter and
hiccup a time or two. And then it starts all over, again.

If you stick around long enough on this list, you'll be fussin' at the
question, too.

David


Re: [PHP] PHP ide?

2007-11-13 Thread Peter Ford
Lester Caine wrote:
 Peter Ford wrote:
 I've tried to use Eclipse PDT, and it's just generally horrible - the
 All-in-one
 has no Subversion support and no SSH support for deploying to the server
 properly. The debugging support worked well on the windows version, but I
 couldn't get it to work from Linux (with the same web server...)
 And the look and feel is so crowded and over-complicated.
 Yuck.
 Well PDT is the 'commercial' offering from Zend since they hijacked the
 PHP slot :(
 PHPEclipse is much tidier and has a longer pedigree.
 Subversion and SSH are OTHER packages and part of Eclipse not the PHP
 editor. And the look and feel is fully configurable, but it does take a
 while to work out how.
 
 Quanta+ can do this (mostly) right, although I have had some trouble with
 debugging.
 But you can't handle the legacy C++ code with that ;)
 

OK, I'm looking at the PHPEclipse site, and I've been here before: the current
Using PHPEclipse document lists the system requirements as PHP 5.1.2 or *below*,
and Apache 2.0 or *below*
Is that just badly out-of-date (last update is April 2007), or is PHPEclipse
really not able to support PHP 5.2.4 and Apache 2.2.4 (my current system 
levels)?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-13 Thread Chris



OK, I'm looking at the PHPEclipse site, and I've been here before: the current
Using PHPEclipse document lists the system requirements as PHP 5.1.2 or *below*,
and Apache 2.0 or *below*
Is that just badly out-of-date (last update is April 2007), or is PHPEclipse
really not able to support PHP 5.2.4 and Apache 2.2.4 (my current system 
levels)?


Ask the phpeclipse guys, they write the requirements and will be able to 
tell you what's going on with that.


--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-12 Thread Peter Ford
I've tried to use Eclipse PDT, and it's just generally horrible - the All-in-one
has no Subversion support and no SSH support for deploying to the server
properly. The debugging support worked well on the windows version, but I
couldn't get it to work from Linux (with the same web server...)
And the look and feel is so crowded and over-complicated.
Yuck.

Quanta+ can do this (mostly) right, although I have had some trouble with
debugging.



[EMAIL PROTECTED] wrote:
 Andrew Peterson wrote:
 I'll try installed it again with none of the other nonsense.
 
 PDT has the so called ALL-IN-ONE thing, however I don't really trust it.
 
 I would suggest the following -
 
 a) Be sure you have the latest Java.
 
 b) Get the normal, traditional Eclipse.
 
 c) Update it (Help  Software updates  Find and install  Search for
 updates of the currently installed features). Repeat if needed.
 
 d) Go to Help  Software updates  Find and install  Search for new
 features to install and add the PDT site
 (http://download.eclipse.org/tools/pdt/updates/). Check the PDT site and
 the Europa Discovery Site and click Finish (I haven't done it for a
 while, so could be something has changed there). When you get the
 result, the Update manager might complain that PDT depends on something.
 In this case unfold the Europa Discovery Site result (by clicking the +,
 if you do not unfold it the next step might not work) and click the
 Select Required button. This should select the minimum you need. Let me
 know if you run into a trouble and I'll try to send you reproducible steps.
 
 And again, Eclipse is Java, so you need a decent machine.
 
 Iv

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide?

2007-11-12 Thread Shelley Shyan
It has, but you should install them manually...

Try help- Software updates - Find and install...


Regards,
Shelley

-Original Message-
From: Peter Ford [mailto:[EMAIL PROTECTED]
Sent: Monday, November 12, 2007 5:24 PM
To: php-general@lists.php.net
Subject: Re: [PHP] PHP ide?

I've tried to use Eclipse PDT, and it's just generally horrible - the 
All-in-one has no Subversion support and no SSH support for deploying to the 
server properly. The debugging support worked well on the windows version, but 
I couldn't get it to work from Linux (with the same web server...) And the look 
and feel is so crowded and over-complicated.
Yuck.

Quanta+ can do this (mostly) right, although I have had some trouble
Quanta+ with
debugging.



[EMAIL PROTECTED] wrote:
 Andrew Peterson wrote:
 I'll try installed it again with none of the other nonsense.

 PDT has the so called ALL-IN-ONE thing, however I don't really trust it.

 I would suggest the following -

 a) Be sure you have the latest Java.

 b) Get the normal, traditional Eclipse.

 c) Update it (Help  Software updates  Find and install  Search for
 updates of the currently installed features). Repeat if needed.

 d) Go to Help  Software updates  Find and install  Search for new
 features to install and add the PDT site
 (http://download.eclipse.org/tools/pdt/updates/). Check the PDT site
 and the Europa Discovery Site and click Finish (I haven't done it for
 a while, so could be something has changed there). When you get the
 result, the Update manager might complain that PDT depends on something.
 In this case unfold the Europa Discovery Site result (by clicking the
 +, if you do not unfold it the next step might not work) and click the
 Select Required button. This should select the minimum you need. Let
 me know if you run into a trouble and I'll try to send you reproducible steps.

 And again, Eclipse is Java, so you need a decent machine.

 Iv

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP ide?

2007-11-12 Thread Lester Caine

Peter Ford wrote:

I've tried to use Eclipse PDT, and it's just generally horrible - the All-in-one
has no Subversion support and no SSH support for deploying to the server
properly. The debugging support worked well on the windows version, but I
couldn't get it to work from Linux (with the same web server...)
And the look and feel is so crowded and over-complicated.
Yuck.
Well PDT is the 'commercial' offering from Zend since they hijacked the PHP 
slot :(

PHPEclipse is much tidier and has a longer pedigree.
Subversion and SSH are OTHER packages and part of Eclipse not the PHP editor. 
And the look and feel is fully configurable, but it does take a while to work 
out how.



Quanta+ can do this (mostly) right, although I have had some trouble with
debugging.

But you can't handle the legacy C++ code with that ;)

--
Lester Caine - G8HFL
-
Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
L.S.Caine Electronic Services - http://home.lsces.co.uk
MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
Firebird - http://www.firebirdsql.org/index.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-11 Thread Mario Guenterberg
On Fri, Nov 09, 2007 at 01:44:19PM +, Lester Caine wrote:
 Tiago Silva wrote:
 Lester Caine escreveu:
 Robert Cummings wrote:
 Ubuntu = Debian + New Life

 Mandriva has Eclipse and PHPEclipse 'out of the box' along with Apache 
 and PHP
 I can build a fully functional development machine from a pile of bits in 
 under an hour ;)
 And currently that includes downloading the latest updates :)

 I use an OS called Windows Vista :-P
 hahahha crap(I use openSuse... ;-) )
 Guys, talking about features of distributions is a looping question...it's 
 a vicious endless thing...
 let's talk about PHP ide's ok?
 I use eclipse, with PHPEclipse it's fullfeatured for PHP, look, FOR PHP!
 The good programmer don't need a full featured IDE, like Delphi for PHP 
 and anyothers that wrap you behind the scenes...

 Not had to bother with vista yet - in fact a lot of my hardware intensive 
 stuff simply will not run on it :(
 BUT the best thing about Eclipse is that it runs the same on windows as 
 Linux, so I don't have to have different environments on each. I just run a 
 local CSV server and sync things between the two environments. And now I 
 can move stuff that was originally developed on Windows over to Linux
 - or replace it with PHP powered stuff :)

Hi all...

in the past i'd worked for a web development company. We had some
Windows, some MacOSX and some Linux workstations and a central
Dedian development server. The best solution to work with an IDE 
was the use of Eclipse with the needed plugins. On every machine the
same environment for development and the individual stuff for
design/grafix and more. No problems with a central subversion/CVS
repo and a NFS/Samba share for the apache document root on the devel
server.

regards
Mario

-- 
 -
| havelsoft.com - Ihr Service Partner für Open Source |
| Tel:  033876-21 966 |
| Notruf: 0173-277 33 60  |
| http://www.havelsoft.com|
| |
| Inhaber: Mario Günterberg   |
| Mützlitzer Strasse 19   |
| 14715 Märkisch Luch |
 -


signature.asc
Description: Digital signature


Re: [PHP] PHP ide? OT

2007-11-09 Thread Børge Holen
On Friday 09 November 2007 02:05:32 you wrote:
 On Fri, 2007-11-09 at 01:03 +0100, Børge Holen wrote:
oh no, I wasn't hinting your way, I more or less commented on
 
  tersus
 
beeing eclipse. It's like the ubunty hype, witch fails to state on
 
  the
 
homepage: we're practically NOTHING without debian.
  
   Ubuntu = Debian + New Life
 
  you know, thats what I call BS.
  if something fails to do anything by itself.. it should've stayed @
  home.
  Just look at patches and fixes. They only deliver when the debian
  maintainers 've a fix ready, and between 2 days to a week for the
  maintainers
  to get it into their own pool.
  The reason is simple... Hype! they sell a product witch claims to be
  more or
  less a lifestyle of simplicity like osx, however maintenance is a
  bitch who
  noone wants to ride, and the few who works on buntu rather sell the
  new stuff
  than fixing bogus, tiresome and lenghty faults on imported programs.
  Just for
  the sake of some rich dude that feels he need a momentum.
  I'm really getting it out now, cleaning the pipes you can say.

 Lol, Debian has a release cycle of 2 to 3 years. Ubuntu has a release
 cycle of 6 months. Personally I like the fast and furious releases when
 it's for my desktop. As for server needs... Debian is a better call for
 it's stabilty. Either way you comment It's like the ubunty hype, witch
 fails to state on the homepage: we're practically NOTHING without
 debian is a bit silly since Debian doesn't state we're practically
 nothing without the Linux kernel and GNU software. 

We are talking distributions here, not os. Debian supports all these 
underdogs, but ubuntu is the hyped saviour. I also fail to the whatever the 
release cycle got to do with... anything? You install once, shortly 
thereafter you just upgrade now and then.
You want release cycles, go for the nighly builds. Count them, don't complain 
because the debian team fail to see the importance of release cycles. I can 
take a woody cd install and given the speed of this 100mbit line and 1.67 ghz 
ppc, I would say 30~40 minutes later I would be running sid.
Now that would be fast and furious for you eh?
I bet I actually got all the new packages... like ff apache any sql whatever 
on my testing approximatly 1 week before you got in on ubuntu. They are 
sickly dependable on all the debian devs to fix their shit and keep theyre 
hype.

 But I'll give you a 
 taste of what both do say:

  Debian:
 Debian is a free operating system (OS) for your computer.
  An operating system is the set of basic programs and
  utilities that make your computer run. Debian uses the
  Linux kernel (the core of an operating system), but most
  of the basic OS tools come from the GNU project; hence
  the name GNU/Linux.

  Ubuntu:
  Ubuntu is a community developed, linux-based operating
   system that is perfect for laptops, desktops and
   servers. It contains all the applications you need - a
   web browser, presentation, document and spreadsheet
   software, instant messaging and much more.

Everybody loves raymond.


 Now analysis of the blurbs reveals that Debian attributes the Linux
 Kernel and GNU whereas Ubuntu attributes the community at large. Ask
 yourself which statement is more inclusive :) Community can easily be
 taken to include the kernel community, the GNU community, the Debian
 community and any other groups contributing. I'm sure this is the spirit
 in which the word community is used. Whereas the Debian blurb is more
 restrictive in it's interpretation. But don't get me wrong, I'm in no
 way pointing fingers at Debian, they probably have more attributions
 elsehwere as does Ubuntu. I just think it's silly to argue that Ubuntu
 owes everything to Debian when Ubuntu, Debian, GNU, the Linux Kernel,
 etc are all standing upon the shoulders of giants. And those giants are
 the community of individuals and organizations that give their time and
 resources to make it happen. There's nothing stopping Debian from
 integrating things in Ubuntu, that's the spirit of open source and
 sharing.

Why would debian intergrate things in ubuntu, they run ubuntus show right now.
Thats why all the ubuntu ppl are harrassing the debian mailinglist... oh wait, 
much like this.

Time to get back to work... cheers btw =D


 Cheers,
 Rob.



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-09 Thread Lester Caine

Robert Cummings wrote:

Ubuntu = Debian + New Life


Mandriva has Eclipse and PHPEclipse 'out of the box' along with Apache and PHP
I can build a fully functional development machine from a pile of bits in 
under an hour ;)

And currently that includes downloading the latest updates :)

--
Lester Caine - G8HFL
-
Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
L.S.Caine Electronic Services - http://home.lsces.co.uk
MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
Firebird - http://www.firebirdsql.org/index.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP ide?

2007-11-09 Thread Colin Guthrie
Lester Caine wrote:
 Robert Cummings wrote:
 Ubuntu = Debian + New Life
 
 Mandriva has Eclipse and PHPEclipse 'out of the box' along with Apache
 and PHP
 I can build a fully functional development machine from a pile of bits
 in under an hour ;)
 And currently that includes downloading the latest updates :)
 

+1 for Mandriva :)

As a long time Mandriva user and not-such-a-long time contributor, I've
looked on the rise of Ubuntu with great interest. I think where they've
excelled is in community - it's definitely got a lot of momentum but
where this falls down is the lack of centralised management. There are
simply too many independent package repositories out there doing there
own packages and not necessarily getting them all correct with their
naming and obsoletion etc. This makes it difficult for people upgrading
in the future from ad-hoc third party packages to official packages. One
of the things I like about Linux (distros) is the central
packaging/deployment system as it keeps things neat, tidy and, most
importantly, structured... Just my €0.02.

Col

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-09 Thread Lester Caine

Tiago Silva wrote:

Lester Caine escreveu:

Robert Cummings wrote:

Ubuntu = Debian + New Life


Mandriva has Eclipse and PHPEclipse 'out of the box' along with Apache 
and PHP
I can build a fully functional development machine from a pile of bits 
in under an hour ;)

And currently that includes downloading the latest updates :)


I use an OS called Windows Vista :-P

hahahha crap(I use openSuse... ;-) )

Guys, talking about features of distributions is a looping 
question...it's a vicious endless thing...


let's talk about PHP ide's ok?

I use eclipse, with PHPEclipse it's fullfeatured for PHP, look, FOR PHP!

The good programmer don't need a full featured IDE, like Delphi for PHP 
and anyothers that wrap you behind the scenes...


Not had to bother with vista yet - in fact a lot of my hardware intensive 
stuff simply will not run on it :(
BUT the best thing about Eclipse is that it runs the same on windows as Linux, 
so I don't have to have different environments on each. I just run a local CSV 
server and sync things between the two environments. And now I can move stuff 
that was originally developed on Windows over to Linux

- or replace it with PHP powered stuff :)

--
Lester Caine - G8HFL
-
Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
L.S.Caine Electronic Services - http://home.lsces.co.uk
MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
Firebird - http://www.firebirdsql.org/index.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Re: PHP ide?

2007-11-09 Thread Instruct ICC

  Ubuntu = Debian + New Life
  
  Mandriva has Eclipse and PHPEclipse 'out of the box' along with Apache
  and PHP
  I can build a fully functional development machine from a pile of bits
  in under an hour ;)
  And currently that includes downloading the latest updates :)
  
 
 +1 for Mandriva :)
 
 As a long time Mandriva user and not-such-a-long time contributor, I've
 looked on the rise of Ubuntu with great interest. I think where they've
 excelled is in community - it's definitely got a lot of momentum but
 where this falls down is the lack of centralised management. There are
 simply too many independent package repositories out there doing there
 own packages and not necessarily getting them all correct with their
 naming and obsoletion etc. This makes it difficult for people upgrading
 in the future from ad-hoc third party packages to official packages. One
 of the things I like about Linux (distros) is the central
 packaging/deployment system as it keeps things neat, tidy and, most
 importantly, structured... Just my €0.02.

I think PCLinuxOS is based on Mandriva (I could be wrong), and it passed Ubuntu 
on distrowatch.com

_
Peek-a-boo FREE Tricks  Treats for You!
http://www.reallivemoms.com?ocid=TXT_TAGHMloc=us

RE: [PHP] PHP ide? Back On Topic

2007-11-09 Thread Instruct ICC

 But I highly doubt you'll find a first-class PHP code IDE (Zend Studio) that
 is also a first-class HTML layout tool (Dreamweaver).

My 2006 rant said I'll accept multiple tools.  I'll have to find that post and 
see if my needs have changed.  Ahh here:

I am looking for a tool (or tools) that can do the following:

Use a Model Driven Architecture (Ex. Gentleware's just model concept and 
Applied Models' the model is the program concept)

UML (Ex. Sun Java Studio Enterprise)

Generate Database from UML (Ex. Umbrello)

Generate Classes from UML (Ex. Umbrello/Sun Java Studio Enterprise -- backend 
classes)

UI Design (Ex. Netbeans Matisse -- frontend classes)

Integrate AJAX toolkits (Ex. Aptana/Dojo/jMaki)

Separate application code from presentation, Model-View-Controller (Ex. 
Smarty/symfony)

Deploy/Convert to HTML/Javascript (Ex. Google Web Toolkit/Visual Web Developer 
2005 Express Edition -- design in Design view and have automatic code 
generated in code behind Source view)

Code Refactoring (Ex. Sun Java Studio Enterprise/Netbeans)

The above tools do some part of the workflow I want, but they do not play well 
together as far as I know (usually because they are based on a specific 
language or dialect of that language).  And some do not have a web application 
as the deployment target.


 Then you don't want to be working in HTML.
True.  With the ongoing browser wars, let vendors like Yahoo and YUI handle 
that layer.
And let's start getting some decent requirements 
http://www.serena.com/products/prototype-composer/home.html and 
http://www.visual-paradigm.com/
Okay okay, maybe I'm advancing myself out of a job.
_
Help yourself to FREE treats served up daily at the Messenger Café. Stop by 
today.
http://www.cafemessenger.com/info/info_sweetstuff2.html?ocid=TXT_TAGLM_OctWLtagline
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP ide?

2007-11-09 Thread Børge Holen
On Friday 09 November 2007 18:45:27 Instruct ICC wrote:
   Ubuntu = Debian + New Life
  
   Mandriva has Eclipse and PHPEclipse 'out of the box' along with Apache
   and PHP
   I can build a fully functional development machine from a pile of bits
   in under an hour ;)
   And currently that includes downloading the latest updates :)
 
  +1 for Mandriva :)
 
  As a long time Mandriva user and not-such-a-long time contributor, I've
  looked on the rise of Ubuntu with great interest. I think where they've
  excelled is in community - it's definitely got a lot of momentum but
  where this falls down is the lack of centralised management. There are
  simply too many independent package repositories out there doing there
  own packages and not necessarily getting them all correct with their
  naming and obsoletion etc. This makes it difficult for people upgrading
  in the future from ad-hoc third party packages to official packages. One
  of the things I like about Linux (distros) is the central
  packaging/deployment system as it keeps things neat, tidy and, most
  importantly, structured... Just my €0.02.

 I think PCLinuxOS is based on Mandriva (I could be wrong), and it passed
 Ubuntu on distrowatch.com

and the whole series is based from redhat. 


 _
 Peek-a-boo FREE Tricks  Treats for You!
 http://www.reallivemoms.com?ocid=TXT_TAGHMloc=us



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP ide?

2007-11-08 Thread Hulf
Just wondering if anyone uses an IDE and if so what ones?

Ta,

H. 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Richard Heyes

Eclipse with PDT plugin


Scite. Not quite an IDE per-se, but still very very good and extremely 
versatile.



IDE of champions ;)


That somewhat subjective... :)

--
Richard Heyes
+44 (0)800 0213 172
http://www.websupportsolutions.co.uk

Knowledge Base and HelpDesk software
that can cut the cost of online support

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Lester Caine

Darryl Ware wrote:

Eclipse with PDT plugin


I still prefer PHPEclise and Eclipse handles a lot of my documentation 
management and other development tools so just one 'IDE' to play with


--
Lester Caine - G8HFL
-
Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
L.S.Caine Electronic Services - http://home.lsces.co.uk
MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
Firebird - http://www.firebirdsql.org/index.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Zoltán Németh
2007. 11. 8, csütörtök keltezéssel 10.58-kor Lester Caine ezt írta:
 Darryl Ware wrote:
  Eclipse with PDT plugin
 
 I still prefer PHPEclise and Eclipse handles a lot of my documentation 
 management and other development tools so just one 'IDE' to play with

for me EasyEclipse for PHP

greets
Zoltán Németh

 
 -- 
 Lester Caine - G8HFL
 -
 Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
 L.S.Caine Electronic Services - http://home.lsces.co.uk
 MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
 Firebird - http://www.firebirdsql.org/index.php
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP ide?

2007-11-08 Thread Peter Ford
Hulf wrote:
 Just wondering if anyone uses an IDE and if so what ones?
 
 Ta,
 
 H. 

Quanta+, with KDESVN for version management...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide?

2007-11-08 Thread Shelley Shyan
Zend Studio or
PHPEd


Regards,
Shelley

-Original Message-
From: Hulf [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 08, 2007 6:02 PM
To: php-general@lists.php.net
Subject: [PHP] PHP ide?

Just wondering if anyone uses an IDE and if so what ones?

Ta,

H.

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP ide?

2007-11-08 Thread Darryl Ware

Eclipse with PDT plugin

IDE of champions ;)

Hulf wrote:

Just wondering if anyone uses an IDE and if so what ones?

Ta,

H. 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread [EMAIL PROTECTED]

Andrew Peterson wrote:
Does anyone else find the Eclipse programs run EXTREMELY slow?  Maybe 
there's some sort of configuration I'm missing.


-Andrew


Eclipse is Java based. You need a decent machine and decent amount of RAM.

More tips -

a) Install only what you need

Eclipse is a universe of things written by different people and you can 
easily find yourself running tons of stuff that arrived as dependencies. 
It used to take me a while to figure out how to install what I need 
without installing what I don't need. In the latest version of Eclipse 
this became easier, especially using the Europa Discovery site.


b) Try alternative ways of doing things

For instance committing a file using the Subclipse perspective takes 
forever (on a large project) - it seems the Subclipse perspective 
updates the whole project after the commit. Committing the same file 
from within the PDT perspective takes seconds.


c) I/O access is critical

PDT does a lot of thing on save, for example. Slow I/O (hard drive) or 
concurrent access may slow your Eclipse a lot.


Apart from that Eclipse is excellent and is improving.

Iv

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread [EMAIL PROTECTED]

Hulf wrote:
 Just wondering if anyone uses an IDE and if so what ones?

 Ta,

 H.

Eclipse w/ PDT is great.

Excellent integration with Subversion (Subclipse). Shows the changed 
files in the file browser, extremely easy diff, history, etc.


Iv

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread [EMAIL PROTECTED]

George Pitcher wrote:
I used Eclipse a few years ago when I was pretending to be a java developer. 


I use Eclipse for 1 1/2 year now and just lately it became nice for what 
I need (decent PDT, decent Subclipse).


Can't imagine what it looked like few years ago.


Since then I've mainly been using Dreamweaver, which works well with Smarty, 
and the 30-odd sites I manage.

How easy would it be for me to move my existing PHP sites into Eclipse, or do 
they need to be started off as projects?


I stopped using Dreamweaver at version 4 which had so many bugs they 
never fixed, even in 4.01.


Don't know how it has progressed since then.

Basically Eclipse does nothing to the code. It adds two folders .project 
and .settings to the project and needs somewhere to store non-project 
settings.


So there is nothing much to be moved.

For me the most powerful features are (no idea how Dreamweaver does that) -

a) Powerful integration between PDT and Subversion (or CVS, if you 
prefer). You see the version information in the file browser, in the 
search results, everywhere.


b) Powerful Subversion integration (Subclipse). Diffs across the 
history, branches, tags, etc., are done with 2-3 clicks.


c) Powerful local history. Eclipse can be configured to remember 
massively local changes, so if you mess up something, you can go back 
basically second by second and minute by minute and see what you did when.


d) Powerful search. PDT understands php so if you are looking for a 
function or a method - it takes zero time to find it even in a huge 
project. Eclipse remembers all searches you have done and dynamically 
updates the search result when you change files, so you can switch 
between different search result with one click.


e) Outline. You have both current file and project outline showing you 
all classes, methods, properties, constants - for one click access.


f) ... There is so much more, I have to write a book to tell you everything.

The best of all is that it's free in a big way - it's backed by IBM, 
etc. and there are tons of powerful projects that develop Eclipse modules.


All this does not mean you will be happier with Eclipse. The habit is a 
big thing and if you know Dreamweaver, you may be happier to stay there. 
Plus, Eclipse need some effort to be discovered, it is unconventional 
thing and at first one does know where to start.


But since I use it, the good surprises haven't stopped, and the pleasure 
to know that there are more on the way is a nice thing to have.


Iv

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Lester Caine

George Pitcher wrote:

Apart from that Eclipse is excellent and is improving.


I used Eclipse a few years ago when I was pretending to be a java developer. 


Since then I've mainly been using Dreamweaver, which works well with Smarty, 
and the 30-odd sites I manage.

How easy would it be for me to move my existing PHP sites into Eclipse, or do 
they need to be started off as projects?


Moving them in is a doddle. I'm adding external PHP packages to workspace all 
the time and the fault reporting in PHPEclipse often highlights problems that 
were not easy to track otherwise.


But never having used Dreamwaever I don't know if you loose anything?

--
Lester Caine - G8HFL
-
Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
L.S.Caine Electronic Services - http://home.lsces.co.uk
MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
Firebird - http://www.firebirdsql.org/index.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread [EMAIL PROTECTED]

Andrew Peterson wrote:

I'll try installed it again with none of the other nonsense.


PDT has the so called ALL-IN-ONE thing, however I don't really trust it.

I would suggest the following -

a) Be sure you have the latest Java.

b) Get the normal, traditional Eclipse.

c) Update it (Help  Software updates  Find and install  Search for 
updates of the currently installed features). Repeat if needed.


d) Go to Help  Software updates  Find and install  Search for new 
features to install and add the PDT site 
(http://download.eclipse.org/tools/pdt/updates/). Check the PDT site and 
the Europa Discovery Site and click Finish (I haven't done it for a 
while, so could be something has changed there). When you get the 
result, the Update manager might complain that PDT depends on something. 
In this case unfold the Europa Discovery Site result (by clicking the +, 
if you do not unfold it the next step might not work) and click the 
Select Required button. This should select the minimum you need. Let me 
know if you run into a trouble and I'll try to send you reproducible steps.


And again, Eclipse is Java, so you need a decent machine.

Iv

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide?

2007-11-08 Thread George Pitcher
 Apart from that Eclipse is excellent and is improving.

I used Eclipse a few years ago when I was pretending to be a java developer. 

Since then I've mainly been using Dreamweaver, which works well with Smarty, 
and the 30-odd sites I manage.

How easy would it be for me to move my existing PHP sites into Eclipse, or do 
they need to be started off as projects?

Cheers

George

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide? OT

2007-11-08 Thread Børge Holen
On Friday 09 November 2007 01:03:13 Børge Holen wrote:
 On Friday 09 November 2007 00:47:56 you wrote:
  On Fri, 2007-11-09 at 00:28 +0100, Børge Holen wrote:
   On Friday 09 November 2007 00:03:32 Instruct ICC wrote:
 Just wondering if anyone uses an IDE and if so what ones?

 Ta,

 H.
   
Quanta +, of course.
Other is to much work and not worth the effort...
I really cannot see what so many of you guys see in eclipse,
it's a mistake all together
  
   I use JOE of course. I really can't see what so many of you
   guys see in an IDE :B
 
  I'm waiting for Tersus4PHP (which is basically Eclipse
  http://www.tersus.com -- Go there with FF)

 umm yeah right, some create and some steal and brag bout em
 discoveries they've made to save the f* day. ;D
   
Not mine.  But if you do Java, that's your bogey.
  
   oh no, I wasn't hinting your way, I more or less commented on tersus
   beeing eclipse. It's like the ubunty hype, witch fails to state on the
   homepage: we're practically NOTHING without debian.
 
  Ubuntu = Debian + New Life

 you know, thats what I call BS.
 if something fails to do anything by itself.. it should've stayed @ home.
 Just look at patches and fixes. They only deliver when the debian
 maintainers 've a fix ready, and between 2 days to a week for the
 maintainers to get it into their own pool.
 The reason is simple... Hype! they sell a product witch claims to be more
 or less a lifestyle of simplicity like osx, however maintenance is a bitch
 who noone wants to ride, and the few who works on buntu rather sell the new
 stuff than fixing bogus, tiresome and lenghty faults on imported programs.
 Just for the sake of some rich dude that feels he need a momentum.

momento that is

 I'm really getting it out now, cleaning the pipes you can say.

  Cheers,
  Rob.

 --
 ---
 Børge Holen
 http://www.arivene.net



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide? OT

2007-11-08 Thread Børge Holen
On Friday 09 November 2007 00:47:56 you wrote:
 On Fri, 2007-11-09 at 00:28 +0100, Børge Holen wrote:
  On Friday 09 November 2007 00:03:32 Instruct ICC wrote:
Just wondering if anyone uses an IDE and if so what ones?
   
Ta,
   
H.
  
   Quanta +, of course.
   Other is to much work and not worth the effort...
   I really cannot see what so many of you guys see in eclipse,
   it's a mistake all together
 
  I use JOE of course. I really can't see what so many of you guys
  see in an IDE :B

 I'm waiting for Tersus4PHP (which is basically Eclipse
 http://www.tersus.com -- Go there with FF)
   
umm yeah right, some create and some steal and brag bout em
discoveries they've made to save the f* day. ;D
  
   Not mine.  But if you do Java, that's your bogey.
 
  oh no, I wasn't hinting your way, I more or less commented on tersus
  beeing eclipse. It's like the ubunty hype, witch fails to state on the
  homepage: we're practically NOTHING without debian.

 Ubuntu = Debian + New Life

you know, thats what I call BS.
if something fails to do anything by itself.. it should've stayed @ home.
Just look at patches and fixes. They only deliver when the debian 
maintainers 've a fix ready, and between 2 days to a week for the maintainers 
to get it into their own pool.
The reason is simple... Hype! they sell a product witch claims to be more or 
less a lifestyle of simplicity like osx, however maintenance is a bitch who 
noone wants to ride, and the few who works on buntu rather sell the new stuff 
than fixing bogus, tiresome and lenghty faults on imported programs. Just for 
the sake of some rich dude that feels he need a momentum.
I'm really getting it out now, cleaning the pipes you can say.


 Cheers,
 Rob.



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Robert Cummings
On Fri, 2007-11-09 at 00:28 +0100, Børge Holen wrote:
 On Friday 09 November 2007 00:03:32 Instruct ICC wrote:
   Just wondering if anyone uses an IDE and if so what ones?
  
   Ta,
  
   H.
 
  Quanta +, of course.
  Other is to much work and not worth the effort...
  I really cannot see what so many of you guys see in eclipse, it's a
  mistake all together

 I use JOE of course. I really can't see what so many of you guys see
 in an IDE :B
   
I'm waiting for Tersus4PHP (which is basically Eclipse
http://www.tersus.com -- Go there with FF)
  
   umm yeah right, some create and some steal and brag bout em discoveries
   they've made to save the f* day. ;D
 
  Not mine.  But if you do Java, that's your bogey.
 
 oh no, I wasn't hinting your way, I more or less commented on tersus beeing 
 eclipse. It's like the ubunty hype, witch fails to state on the 
 homepage: we're practically NOTHING without debian.

Ubuntu = Debian + New Life

Cheers,
Rob.
-- 
...
SwarmBuy.com - http://www.swarmbuy.com

Leveraging the buying power of the masses!
...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Børge Holen
On Friday 09 November 2007 00:03:32 Instruct ICC wrote:
  Just wondering if anyone uses an IDE and if so what ones?
 
  Ta,
 
  H.

 Quanta +, of course.
 Other is to much work and not worth the effort...
 I really cannot see what so many of you guys see in eclipse, it's a
 mistake all together
   
I use JOE of course. I really can't see what so many of you guys see
in an IDE :B
  
   I'm waiting for Tersus4PHP (which is basically Eclipse
   http://www.tersus.com -- Go there with FF)
 
  umm yeah right, some create and some steal and brag bout em discoveries
  they've made to save the f* day. ;D

 Not mine.  But if you do Java, that's your bogey.

oh no, I wasn't hinting your way, I more or less commented on tersus beeing 
eclipse. It's like the ubunty hype, witch fails to state on the 
homepage: we're practically NOTHING without debian.


 _
 Boo! Scare away worms, viruses and so much more! Try Windows Live OneCare!
 http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmail
news



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide?

2007-11-08 Thread Instruct ICC

 Just wondering if anyone uses an IDE and if so what ones?

 Ta,

 H.
   
Quanta +, of course.
Other is to much work and not worth the effort...
I really cannot see what so many of you guys see in eclipse, it's a
mistake all together
  
   I use JOE of course. I really can't see what so many of you guys see in
   an IDE :B
 
  I'm waiting for Tersus4PHP (which is basically Eclipse
  http://www.tersus.com -- Go there with FF)
 
 umm yeah right, some create and some steal and brag bout em discoveries 
 they've made to save the f* day. ;D

Not mine.  But if you do Java, that's your bogey.

_
Boo! Scare away worms, viruses and so much more! Try Windows Live OneCare!
http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmailnews

RE: [PHP] PHP ide?

2007-11-08 Thread Instruct ICC

 On Thu, 2007-11-08 at 21:47 +0100, Børge Holen wrote:
  On Thursday 08 November 2007 11:02:07 Hulf wrote:
   Just wondering if anyone uses an IDE and if so what ones?
  
   Ta,
  
   H.
  
  
  Quanta +, of course.
  Other is to much work and not worth the effort...
  I really cannot see what so many of you guys see in eclipse, it's a mistake 
  all together
 
 I use JOE of course. I really can't see what so many of you guys see in
 an IDE :B

I'm waiting for Tersus4PHP (which is basically Eclipse http://www.tersus.com -- 
Go there with FF)

_
Boo! Scare away worms, viruses and so much more! Try Windows Live OneCare!
http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmailnews

Re: [PHP] PHP ide?

2007-11-08 Thread Børge Holen
On Thursday 08 November 2007 11:02:07 Hulf wrote:
 Just wondering if anyone uses an IDE and if so what ones?

 Ta,

 H.


Quanta +, of course.
Other is to much work and not worth the effort...
I really cannot see what so many of you guys see in eclipse, it's a mistake 
all together

-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide? OT

2007-11-08 Thread Robert Cummings
On Fri, 2007-11-09 at 01:03 +0100, Børge Holen wrote:
   oh no, I wasn't hinting your way, I more or less commented on
 tersus
   beeing eclipse. It's like the ubunty hype, witch fails to state on
 the
   homepage: we're practically NOTHING without debian.
 
  Ubuntu = Debian + New Life
 
 you know, thats what I call BS.
 if something fails to do anything by itself.. it should've stayed @
 home.
 Just look at patches and fixes. They only deliver when the debian 
 maintainers 've a fix ready, and between 2 days to a week for the
 maintainers 
 to get it into their own pool.
 The reason is simple... Hype! they sell a product witch claims to be
 more or 
 less a lifestyle of simplicity like osx, however maintenance is a
 bitch who 
 noone wants to ride, and the few who works on buntu rather sell the
 new stuff 
 than fixing bogus, tiresome and lenghty faults on imported programs.
 Just for 
 the sake of some rich dude that feels he need a momentum.
 I'm really getting it out now, cleaning the pipes you can say.

Lol, Debian has a release cycle of 2 to 3 years. Ubuntu has a release
cycle of 6 months. Personally I like the fast and furious releases when
it's for my desktop. As for server needs... Debian is a better call for
it's stabilty. Either way you comment It's like the ubunty hype, witch
fails to state on the homepage: we're practically NOTHING without
debian is a bit silly since Debian doesn't state we're practically
nothing without the Linux kernel and GNU software. But I'll give you a
taste of what both do say:

 Debian:
Debian is a free operating system (OS) for your computer.
 An operating system is the set of basic programs and
 utilities that make your computer run. Debian uses the
 Linux kernel (the core of an operating system), but most
 of the basic OS tools come from the GNU project; hence
 the name GNU/Linux.

 Ubuntu:
 Ubuntu is a community developed, linux-based operating
  system that is perfect for laptops, desktops and
  servers. It contains all the applications you need - a
  web browser, presentation, document and spreadsheet
  software, instant messaging and much more.

Now analysis of the blurbs reveals that Debian attributes the Linux
Kernel and GNU whereas Ubuntu attributes the community at large. Ask
yourself which statement is more inclusive :) Community can easily be
taken to include the kernel community, the GNU community, the Debian
community and any other groups contributing. I'm sure this is the spirit
in which the word community is used. Whereas the Debian blurb is more
restrictive in it's interpretation. But don't get me wrong, I'm in no
way pointing fingers at Debian, they probably have more attributions
elsehwere as does Ubuntu. I just think it's silly to argue that Ubuntu
owes everything to Debian when Ubuntu, Debian, GNU, the Linux Kernel,
etc are all standing upon the shoulders of giants. And those giants are
the community of individuals and organizations that give their time and
resources to make it happen. There's nothing stopping Debian from
integrating things in Ubuntu, that's the spirit of open source and
sharing.

Cheers,
Rob.
-- 
...
SwarmBuy.com - http://www.swarmbuy.com

Leveraging the buying power of the masses!
...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Robert Cummings
On Thu, 2007-11-08 at 21:47 +0100, Børge Holen wrote:
 On Thursday 08 November 2007 11:02:07 Hulf wrote:
  Just wondering if anyone uses an IDE and if so what ones?
 
  Ta,
 
  H.
 
 
 Quanta +, of course.
 Other is to much work and not worth the effort...
 I really cannot see what so many of you guys see in eclipse, it's a mistake 
 all together

I use JOE of course. I really can't see what so many of you guys see in
an IDE :B

Cheers,
Rob.
-- 
...
SwarmBuy.com - http://www.swarmbuy.com

Leveraging the buying power of the masses!
...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide?

2007-11-08 Thread Børge Holen
On Thursday 08 November 2007 23:33:07 Instruct ICC wrote:
  On Thu, 2007-11-08 at 21:47 +0100, Børge Holen wrote:
   On Thursday 08 November 2007 11:02:07 Hulf wrote:
Just wondering if anyone uses an IDE and if so what ones?
   
Ta,
   
H.
  
   Quanta +, of course.
   Other is to much work and not worth the effort...
   I really cannot see what so many of you guys see in eclipse, it's a
   mistake all together
 
  I use JOE of course. I really can't see what so many of you guys see in
  an IDE :B

 I'm waiting for Tersus4PHP (which is basically Eclipse
 http://www.tersus.com -- Go there with FF)

umm yeah right, some create and some steal and brag bout em discoveries 
they've made to save the f* day. ;D



 _
 Boo! Scare away worms, viruses and so much more! Try Windows Live OneCare!
 http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmail
news



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide?

2007-11-08 Thread Instruct ICC

Sorry for the crap below.  I think it's MS Hotmail not playing nice with Safari.

Eclipse and Netbeans (now it may look like I'm pushing Java) have offerings to 
allow us developers to build upon -- not just apps, but tools.  I think that's 
a good thing.

Don't reinvent the wheel is another good practice to build upon the work of 
others.

Where would this forum be without the web?
Where would the web be without the internet?
Where would the internet be without Al Gore?  ;-P

Where would Debian be without Linus?
Where would Linus be without GNU?

Blah blah blah...electricity

You see where I'm going.


 From: [EMAIL PROTECTED] To: 
php-general@lists.php.net Date: Fri, 9 Nov 2007 00:28:59 +0100 Subject: Re: 
[PHP] PHP ide? On Friday 09 November 2007 00:03:32 Instruct ICC wrote: 
Just wondering if anyone uses an IDE and if so what ones? 
Ta, H. Quanta +, of course. Other is to much 
work and not worth the effort... I really cannot see what so many of you 
guys see in eclipse, it's a mistake all together I use JOE of 
course. I really can't see what so many of you guys see in an IDE 
:B I'm waiting for Tersus4PHP (which is basically Eclipse 
http://www.tersus.com -- Go there with FF) umm yeah right, some create 
and some steal and brag bout em discoveries they've made to save the f* day. 
;D Not mine. But if you do Java, that's your bogey. oh no, I wasn't 
hinting your way, I more or less commented on tersus beeing eclipse. It's like 
the ubunty hype, witch fails to state on the homepage: we're practically 
NOTHING without debian. 
_ Boo! Scare 
away worms, viruses and so much more! Try Windows Live OneCare! 
http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmailnews
 -- --- Børge Holen http://www.arivene.net -- PHP General Mailing List 
(http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

_
Climb to the top of the charts!  Play Star Shuffle:  the word scramble 
challenge with star power.
http://club.live.com/star_shuffle.aspx?icid=starshuffle_wlmailtextlink_oct
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide?

2007-11-08 Thread Robert Cummings
On Thu, 2007-11-08 at 19:06 -0800, Instruct ICC wrote:
 Sorry for the crap below.  I think it's MS Hotmail not playing nice with 
 Safari.
 
 Eclipse and Netbeans (now it may look like I'm pushing Java) have offerings 
 to allow us developers to build upon -- not just apps, but tools.  I think 
 that's a good thing.
 
 Don't reinvent the wheel is another good practice to build upon the work of 
 others.
 
 Where would this forum be without the web?
 Where would the web be without the internet?
 Where would the internet be without Al Gore?  ;-P
 
 Where would Debian be without Linus?
 Where would Linus be without GNU?
 
 Blah blah blah...electricity
 
 You see where I'm going.

You forgot Adam and Eve ;)

Cheers,
Rob.
-- 
...
SwarmBuy.com - http://www.swarmbuy.com

Leveraging the buying power of the masses!
...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP ide? Back On Topic

2007-11-08 Thread Instruct ICC

Do you pay for Ubuntu?  Maybe a support package?

Earlier this week I was pissed at Adobe Dreamweaver CS3 and their developers.  
And I began thinking that the major difference between open source software 
(free as in no $ outa my pocket) and retail closed source software is that 
maybe, just maybe, I have someone to complain to about their bugs in the retail 
case, and should just be thankful I have an ordered set of bits given to me for 
free in the open source case that sometimes gets the job done (not to mention 
sometimes getting support, community, knowledge, etc.).

I tend to fall back to DW -- currently CS3, but I'm always looking around.  It 
crashed on a paste attempt after a simple plain text copy.
The DW 8 developers didn't know how to use threads (and threads were hyped in 
that version).  They would run a thread to block my current requested action to 
do something locally by doing something remote (which I state again, I did not 
request.  If you insist on doing the remote action which I didn't request, it's 
perfect for a thread, so please put it in the background.)
I think I prefered DW MX 2004 over DW MX.  8 had a nice fold your source 
wherever you want feature though.
I was interested in CS3 for the Spry, but it's weak.  Back to basic hand coding 
with YUI, Scriptaculous, Xajax, etc. using DW basically as an editor and FTP 
client.

Oh and Crimson Editor when I was on MS Windows for Perl files which DW couldn't 
deal with.
I use Xcode on the Mac for Perl files now.  I should also start using Xcode for 
PHP projects.

My (perceived) problem is that I need a tool that helps me do my job well, but 
not so well that it looks like I can be replaced.  I'm telling you that Tersus 
scares me [and I will not tell my employer about it LOL].  gi.tibco.com will be 
my next real evaluation for an IDE at work.  At home I'll spend my time on 
Tersus.  Except I'm into a project at home now that is easier if I use what I 
know.

I just looked at Eclipse PDT (due to this topic and its posts).  It looks like 
a text editor with possible project grouping of files.  What do I gain by using 
it?

Aptana is okay for Ajaxy javascript and html (and I think PHP).  It's Eclipse 
again though LOL.  I just don't like when I feel constrained and can't 
absolutely place a widget (like you can in MS Visual Basic).  Netbeans Matisse 
(it has a new name now) can do it, but it deploys to Java.  Delphi for PHP 
(retail product) looks good, but its MS Windows only.  And although I can use a 
VM, I'd rather stay away from MS products.  Sun Java Studio Creator can, but 
it's Java again.

What do you want in an integrated development environment?

I would expect Zend Studio to be _the_ PHP IDE, but it doesn't meet what I want 
in an IDE.

I want to just model like Gentleware's Poseidon.  Maybe some UML; maybe just 
Tersus.
I want to refactor like Sun Java Studio Enterprise.
I want to layout my GUI like VB, Matisse, and Apple's Interface Builder.
I want to remote debug like Zend Studio.
I have an extensive list I made in 2006 that would make this post even longer.  
So I know I'm missing some features.
And I want it all for free as in beer and no $ out of my pocket (to use 
personally).
Well, if neccessary, I'll also have the company pay for it and expect to be 
able to use it at home like the DW licenses.
And I'll still be looking around for the next best thing.



 From: [EMAIL PROTECTED] To: 
php-general@lists.php.net Date: Fri, 9 Nov 2007 01:03:13 +0100 Subject: Re: 
[PHP] PHP ide? OT On Friday 09 November 2007 00:47:56 you wrote: On Fri, 
2007-11-09 at 00:28 +0100, Børge Holen wrote: On Friday 09 November 2007 
00:03:32 Instruct ICC wrote: Just wondering if anyone uses an IDE and 
if so what ones? Ta, H. 
Quanta +, of course. Other is to much work and not worth the 
effort... I really cannot see what so many of you guys see in 
eclipse, it's a mistake all together I use JOE of course. 
I really can't see what so many of you guys see in an IDE :B 
I'm waiting for Tersus4PHP (which is basically Eclipse 
http://www.tersus.com -- Go there with FF) umm yeah right, some 
create and some steal and brag bout em discoveries they've made to save 
the f* day. ;D Not mine. But if you do Java, that's your bogey. 
oh no, I wasn't hinting your way, I more or less commented on tersus beeing 
eclipse. It's like the ubunty hype, witch fails to state on the homepage: 
we're practically NOTHING without debian. Ubuntu = Debian + New Life 
you know, thats what I call BS. if something fails to do anything by itself.. 
it should've stayed @ home. Just look at patches and fixes. They only deliver 
when the debian maintainers 've a fix ready, and between 2 days to a week for 
the maintainers to get it into their own pool. The reason is simple... Hype! 
they sell a product witch claims to be more or less a lifestyle of simplicity 
like osx, however maintenance is a bitch who noone wants to ride

RE: [PHP] PHP ide?

2007-11-08 Thread Instruct ICC

 Blah blah blah...electricity
 You see where I'm going.
 You forgot Adam and Eve

For those who believe You see where I'm going.
For the others, you get vacuum fluctuations LOL.
_
Boo! Scare away worms, viruses and so much more! Try Windows Live OneCare!
http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmailnews
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP ide? Back On Topic

2007-11-08 Thread Larry Garfield
On Thursday 08 November 2007, Instruct ICC wrote:
 Do you pay for Ubuntu?  Maybe a support package?

 Earlier this week I was pissed at Adobe Dreamweaver CS3 and their
 developers.  And I began thinking that the major difference between open
 source software (free as in no $ outa my pocket) and retail closed source
 software is that maybe, just maybe, I have someone to complain to about
 their bugs in the retail case, and should just be thankful I have an
 ordered set of bits given to me for free in the open source case that
 sometimes gets the job done (not to mention sometimes getting support,
 community, knowledge, etc.).

In my case, it's entirely different.  Too many proprietary software companies 
are locking down their software too far for me to be comfortable with.  DRM, 
product activation, region coding, forced-subscriptions... The more you 
tighten your grip, Tarkin, the more software users will slip through your 
fingers.  There's still a very small number of non-free programs I use, but 
they're being replaced as quickly as I can with something open source and at 
least passable.  I simply don't trust code that tries to fight me.

*snip lots of talk about Dreamweaver et al*

 I just looked at Eclipse PDT (due to this topic and its posts).  It looks
 like a text editor with possible project grouping of files.  What do I gain
 by using it?

 Aptana is okay for Ajaxy javascript and html (and I think PHP).  It's
 Eclipse again though LOL.  I just don't like when I feel constrained and
 can't absolutely place a widget (like you can in MS Visual Basic). 

If you want to absolutely control layout, don't bother designing for the 
web. :-)

 Netbeans Matisse (it has a new name now) can do it, but it deploys to Java.
  Delphi for PHP (retail product) looks good, but its MS Windows only.  And
 although I can use a VM, I'd rather stay away from MS products.  Sun Java
 Studio Creator can, but it's Java again.

 What do you want in an integrated development environment?

 I would expect Zend Studio to be _the_ PHP IDE, but it doesn't meet what I
 want in an IDE.

That's because Zend Studio (which is one of the few proprietary programs that 
I feel tempted to use personally, as I use it at work and love it) is a 
programmer's IDE.  It's for people writing code.  From the sound of it, 
you're looking for a designer's IDE, for doing things graphically.  

There's nothing wrong with that, mind you.  Not in the least.  But it's a 
different sort of task, and requires a different sort of tool.  

 I want to just model like Gentleware's Poseidon.  Maybe some UML; maybe
 just Tersus. I want to refactor like Sun Java Studio Enterprise.
 I want to layout my GUI like VB, Matisse, and Apple's Interface Builder.

Then you don't want to be working in HTML.

 I want to remote debug like Zend Studio.

That is easily my #1 favorite feature. :-)  The only worthwhile 
context-sensitive code-assistance I've yet to find would be a close second.  
But I highly doubt you'll find a first-class PHP code IDE (Zend Studio) that 
is also a first-class HTML layout tool (Dreamweaver).

-- 
Larry Garfield  AIM: LOLG42
[EMAIL PROTECTED]   ICQ: 6817012

If nature has made any one thing less susceptible than all others of 
exclusive property, it is the action of the thinking power called an idea, 
which an individual may exclusively possess as long as he keeps it to 
himself; but the moment it is divulged, it forces itself into the possession 
of every one, and the receiver cannot dispossess himself of it.  -- Thomas 
Jefferson

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Ide help needed

2007-04-03 Thread clive



Does anyone knows any IDE for PHP like VisualStudio.net?


look at delphi for php, its not delphi the language but a IDE written by 
borland to develop web apps using forms/drag 'n drop and php. Windows 
only im afraid and the only php IDE of its kind that Ive come across.


I use linux so I wont be using but you might like it.

http://codegear.com/Products/Delphi/DelphiforPHP/tabid/237/Default.aspx

--
Regards,

Clive.

Real Time Travel Connections


{No electrons were harmed in the creation, transmission or reading of 
this email. However, many were excited and some may well have enjoyed 
the experience.}


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Ide help needed

2007-04-03 Thread Johan Martin

On 4/3/07, clive [EMAIL PROTECTED] wrote:



 Does anyone knows any IDE for PHP like VisualStudio.net?



Second the use of eclipse. Look at easyeclipse.org - they have all the
necessary plug-ins and add-ons in easy an easy to install package. Packages
available for Linux, Mac and Windows. Includes tools for Smarty, database
editing and html editing.


RE: [PHP] Ide help needed

2007-04-02 Thread Arno Kuhl
Nuspere's PHPEd. Highly recommended. I looked at all the alternatives,
including Zend and Eclipse, and IMO PHPEd is superior. And faster
performance is a real bonus.

Arno


-Original Message-
From: Davi [mailto:[EMAIL PROTECTED]
Sent: 02 April 2007 02:50
To: php-general@lists.php.net
Subject: Re: [PHP] Ide help needed


Em Sexta 30 Março 2007 14:39, [EMAIL PROTECTED] escreveu:
 I am a beginer with php and i need to know which IDE is best suited
 under windows and linux both

 i have seen dreamweaver working and have heard about GoLive too but don't
 know whichone to go for

 can you please help me decide
 and also
 tell me some other IDE's if possible

Does anyone knows any IDE for PHP like VisualStudio.net?

TIA

--
Davi Vidal
[EMAIL PROTECTED]
[EMAIL PROTECTED]
--

Agora com fortune:
Beneath this stone lies Murphy,
They buried him today,
He lived the life of Riley,
While Riley was away.

--

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Ide help needed

2007-04-01 Thread Davi
Em Sexta 30 Março 2007 14:39, [EMAIL PROTECTED] escreveu:
 I am a beginer with php and i need to know which IDE is best suited
 under windows and linux both

 i have seen dreamweaver working and have heard about GoLive too but don't
 know whichone to go for

 can you please help me decide
 and also
 tell me some other IDE's if possible

Does anyone knows any IDE for PHP like VisualStudio.net?

TIA

-- 
Davi Vidal
[EMAIL PROTECTED]
[EMAIL PROTECTED]
--

Agora com fortune:
Beneath this stone lies Murphy,
They buried him today,
He lived the life of Riley,
While Riley was away.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Ide help needed

2007-03-30 Thread exjohnian

I am a beginer with php and i need to know which IDE is best suited
under windows and linux both

i have seen dreamweaver working and have heard about GoLive too but don't
know whichone to go for

can you please help me decide
and also
tell me some other IDE's if possible


Re: [PHP] Ide help needed

2007-03-30 Thread Davi
Em Sexta 30 Março 2007 14:39, [EMAIL PROTECTED] escreveu:
 I am a beginer with php and i need to know which IDE is best suited
 under windows and linux both

 i have seen dreamweaver working and have heard about GoLive too but don't
 know whichone to go for

 can you please help me decide
 and also
 tell me some other IDE's if possible

Zend Studio.

http://www.zend.com

[]s

-- 
Davi Vidal
[EMAIL PROTECTED]
[EMAIL PROTECTED]
--

Agora com fortune:
I did this 'cause Linux gives me a woody.  It doesn't generate revenue.
-- Dave '-ddt-` Taylor, announcing DOOM for Linux

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Ide help needed

2007-03-30 Thread Mario Guenterberg
On Fri, Mar 30, 2007 at 11:09:02PM +0530, [EMAIL PROTECTED] wrote:
 I am a beginer with php and i need to know which IDE is best suited
 under windows and linux both
 
 i have seen dreamweaver working and have heard about GoLive too but don't
 know whichone to go for
 
 can you please help me decide
 and also
 tell me some other IDE's if possible

Hi...

I use Eclipse with a PHP plugin on both Windows and Linux.
There are 2 good plugins available: PHP-IDE from eclipse.org and
PHPEclipse. I prefer PHP-IDE. You can use any usefull other plugins
(Tidy, Clay, Quantum) for work with any solution you need.
All of this is open source...

Greetings
Mario

-- 
 -
| havelsoft.com - Ihr Service Partner für Open Source |
| Tel:  033876-21 966 |
| Notruf: 0173-277 33 60  |
| http://www.havelsoft.com|
| |
| Inhaber: Mario Günterberg   |
| Mützlitzer Strasse 19   |
| 14715 Märkisch Luch |
 -


signature.asc
Description: Digital signature


Re: [PHP] Ide help needed

2007-03-30 Thread Tijnema !

On 3/30/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

I am a beginer with php and i need to know which IDE is best suited
under windows and linux both

i have seen dreamweaver working and have heard about GoLive too but don't
know whichone to go for

can you please help me decide
and also
tell me some other IDE's if possible



Kdevelop is also nice if you have KDE installed :)

It has support for tidy :)

Tijnema

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHPED PHP IDE (wasRe: [PHP] php editor)

2005-01-18 Thread Lester Caine
Benjamin Edwards wrote:
Whats the story with this.  It seems too good to be true. A fully featured IDE/Debugger released under some sort of free software licence. The site you link to seems indicate that is is free software, it has a sourceforge.net logo at the botton.  However nuspere are selling it for £299.  what is the story?
PhpED is not free
http://dd.cron.ru/dbg/downloads.php 
That is the debugger only, and is used by PhpED amongst others - there 
is no IDE with the debugger.

--
Lester Caine
-
L.S.Caine Electronic Services
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Re: PHPED PHP IDE (wasRe: [PHP] php editor)

2005-01-18 Thread Ben Edwards
On Tue, 18 Jan 2005 15:20:56 +, Lester Caine [EMAIL PROTECTED] wrote:
 Benjamin Edwards wrote:
 
  Whats the story with this.  It seems too good to be true. A fully featured 
  IDE/Debugger released under some sort of free software licence. The site 
  you link to seems indicate that is is free software, it has a 
  sourceforge.net logo at the botton.  However nuspere are selling it for 
  £299.  what is the story?
 
 PhpED is not free
 
  http://dd.cron.ru/dbg/downloads.php
 
 That is the debugger only, and is used by PhpED amongst others - there
 is no IDE with the debugger.

I thought Zend Studio was a IDE with a debugger?

Ben
 
 --
 Lester Caine
 -
 L.S.Caine Electronic Services
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
Ben Edwards - Poole, UK, England
WARNING:This email contained partisan views - dont ever accuse me of
using the veneer of objectivity
If you have a problem emailing me use
http://www.gurtlush.org.uk/profiles.php?uid=4
(email address this email is sent from may be defunct)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHPED PHP IDE (wasRe: [PHP] php editor)

2005-01-18 Thread Lester Caine
Ben Edwards wrote:
Whats the story with this.  It seems too good to be true. A fully featured IDE/Debugger released under some sort of free software licence. The site you link to seems indicate that is is free software, it has a sourceforge..net logo at the botton.  However nuspere are selling it for £299.  what is the story?
PhpED is not free
http://dd.cron.ru/dbg/downloads.php
That is the debugger only, and is used by PhpED amongst others - there
is no IDE with the debugger.
I thought Zend Studio was a IDE with a debugger?
???
http://www.zend.com/store/products/zend-studio.php
That's not PhpED either and it's not free.
The debugger is an element a number of people use. We use it in 
PHPEclipse as well. Versions of the DEBUGGER are free, but there are 
also 'improved' versions that are not, integrated into other IDE's

--
Lester Caine
-
L.S.Caine Electronic Services
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


  1   2   >