Johan
Johan

Reputation: 19072

Alternative to Dreamweaver?

I'm tired of Dreamweaver overwriting wrong files on the server,

so I'm looking for an alternative.

I want color-coding and possibility to open/save and edit files direct from the server, so I don't need to save files on my desktop first.

I'm using Windows.

Upvotes: 4

Views: 3087

Answers (12)

Beniston
Beniston

Reputation: 542

When I searched an alternative for the Dreamweaver for PHP, I found some IDEs and one among them is Netbeans. Soon it became my favorite for my object oriented coding.

Here is the download page.

This has support for Zend and Symphony frameworks.

They also support File uploading.

Upvotes: 1

Sergey Pozhilov
Sergey Pozhilov

Reputation: 51

Notepad++ extended with some plugins is a really handy replacement. Though I can't call it IDE, it does virtually everything a developer need. In my case (a lot of repetitive code) Texter (a small app working in background) makes notepadd++ even more handy. So, my suggestion is: Notepad++ and Texter.

Upvotes: 3

jussij
jussij

Reputation: 10560

I want color-coding and possibility to open/save and edit files direct from the server, so I don't need to save files on my desktop first.

The Zeus editor can highlight and fold HTML files, it integrates with HTML Tidy and can seamless edit files from the server via ftp/sftp.

It also has support for a host of other languages (i.e C/C++, C#, Java, Javascript, PHP, etc etc)

Upvotes: 0

devarni
devarni

Reputation: 1782

Dreamweaver... Not my cup of tea, because it lacks good support for modern web programming with Javascript or PHP.

For primary design, I use WeBuilder from Blumentals. Its also a good and not expensive PHP and Javascript IDE with debugging support and also has good CSS support with a built-in CSS editor. I'm not a big fan of text editors like Notepad++ as an IDE replacement, because you often need a lot of additional plug-ins to have similar features like a IDE. But for some files or quick editing nothing can beat such editors (I like Notepad++ the most on Windows).

So for Windows I would prefer WeBuilder for all things (design & programming).

You use only Windows? For Linux there are other alternatives too ;)

Upvotes: 1

ZippyV
ZippyV

Reputation: 13018

Visual Web Developer Express, which is the lightweight version of Visual Studio.

http://www.microsoft.com/express/

Upvotes: 2

Nate
Nate

Reputation: 16898

Perhaps KompoZer? It has all the features you've asked for, and there's a Windows version (as well as Mac and Linux).

Upvotes: 1

annakata
annakata

Reputation: 75814

Every web developer should be hand-writing their mark-up - all forms of automated abstraction inhibit your understanding and awareness of the code and create maintenance problems for the future. I'm quite a zealot about this, you may be able to tell.

On that basis, I can heartily recommend Editplus: has code colouring, FTP and a huge amount of feature-sugar from line duplication to macros.

Upvotes: 3

user168998
user168998

Reputation: 78

I switched to notepad++ when I had the same kind of problems with DreamWeaver. I tried some other programs too, but they were too complicated for my needs.
If all you need is color-coding and ftp-support, notepad++ is a good choice.

Upvotes: 2

naltatis
naltatis

Reputation: 3123

E Text Editor, a Textmate clone for Windows, claims to have FTP Support. But i haven't used this feature before.

Upvotes: 0

Pascal MARTIN
Pascal MARTIN

Reputation: 401002

When developping in PHP, I generally use Eclipse PDT.

If you are more oriented towards HTML/CSS/Javascript, you might be interested by Aptana, which is based on Eclipse too... Which means it can use lots of plugins, including some to work directly on a server, I suppose (see TM/RSE, for instance).

Note than Aptana can also be installed into an existing Eclipse installation, as a plugin.

Oh, also, I almost forgot : Eclipse is free, and there are both a free and a commercial version of Aptana.

(One bad thing about Eclipse being it requires a quite powerful computer -- at least 2 cores and 2 GB of RAM, if you want to use any other application at the same time...)

Upvotes: 0

Waleed Amjad
Waleed Amjad

Reputation: 6808

Well personally I use Programmer's Notepad but it doesn't support the facility to upload files to the server. You could get Notepad++ and this FTP plugin. I haven't tried Notepad++ but I'm sure that it isn't WYSIWYG.

Upvotes: 1

naltatis
naltatis

Reputation: 3123

If you're using a Mac you should take a look at Coda

Upvotes: 1

Related Questions