vote up 4 vote down star
1

Is there an IDE for PHP where you can edit the code for your pages online? Real syntax highlighting is minimal. More would be great. I'd like to be able to do development on my site at times other than when I'm not at at home.

flag

13 Answers

vote up 4 vote down check

try http://www.phpanywhere.net it should be exactly what you are looking for.

Cheers

link|flag
vote up 3 vote down

See if your host supports VIM in the shell. You can SSH into your account from anywhere you can use an ssh client (you can download/run putty without admin rights). The syntax highlighting in VIM is fantastic.

link|flag
and it's so much harder to get your secure shell hacked than some unknown php script that this is probably the best solution for that. – Kris May 31 at 8:37
also, there'S the possibility of hosting a java applet with am embedded ssh client, so that you can easily log on without requiring anything special. In addition, ssh is also the way to go when it comes to transferring files between your server and the machine you're working on – none Jun 2 at 13:53
Alternatively you can use emacs with tramp. That way you can edit files though ssh. – simao Jun 22 at 22:02
vote up 3 vote down

Try one of these:

link|flag
bad link to CodePress; Heroku is a Ruby platform. How is it relevant to the question? – MaxVT May 31 at 15:54
the link to Amy Editor should maybe point at amyeditor.com/api/embed/test_php.html Although you can open your FTP project (and open/save files etc) via Amy, you could use the embedded example for your own purposes. Well, the editor is dead anyway, having better things to do than working on it :). It was just a showcase for other project anyway. – aprilchild Jun 16 at 11:17
vote up 2 vote down

May be this could help you to execute sample php code and see output

http://codepad.org

link|flag
1  
Not really what I was looking for but +1 for such an interesting tool – Dinah Jun 2 at 14:19
vote up 1 vote down

Well my website came with cPanel, which has a nice file manager and code editor. It has syntax highlighting and line numbering. It runs too slow on my computer to really use but I've got a pretty slow computer. :P

So to get to the code editor, I'd go to cPanel at http://mysite.com:2082, click File Manager, then select a file and click Code Editor.

Edit: I tried using it, and it can highlight PHP and HTML (at the same time), and it also has a "code completion" feature... I'm not sure if that's what it's called, but when you write an opening bracket or quote, it writes the closing one after the cursor. The only problems are that the highlighting isn't perfect (it treats escaped quotes as actual quotes) and more importantly, it's not free.

link|flag
vote up 1 vote down

I created this online php editor

Tell me what you think.

Cheers!

link|flag
I LOVE the concept but its current state (today = 01-18-09) the fact that you have to force the syntax highlighting by pushing an unlabeled button makes this unusable to me. Perhaps I'll revisit this later when it's had time to mature. +1 for creating such a project though. – Dinah Jan 18 at 17:51
This looks promising but it needs some work, I'd love to help out I've been meaning to start my own, but I havn't had the time to start a new project. Let me know unkwntech@unkwndesign.com – Unkwntech Jan 24 at 9:56
vote up 1 vote down

Check out http://www.coderun.com

link|flag
vote up 0 vote down

it would be really cool if it had a frame that dynamically reloaded your site on each save (ctrl+s)

or even better: a separate window for dual monitor users :)

link|flag
That would be incredible. Especially when compared to the syntax highlighter that Unkwntech mentioned. Does something like this exist? – Dinah Jun 2 at 14:23
I don't think so, check out bespin though, they're making solid progress, and building in support for third party plug-ins. So we should have it soon :) – Jim Robert Jun 2 at 14:35
vote up 0 vote down

Thats an interesting idea. One could use something like this: http://code.google.com/p/syntaxhighlighter/ to the syntax highlighting then it's just a matter of code completion for things like functions. That much is relatively simple, it gets harder when you get into things like per file (or even included file) variables (for the code completion).

And now that you have me thinking... It's to bad that I don't know javascript better.
If anyone wants to get together and maybe build this idea into a viable project I'm definitely game.

link|flag
vote up 0 vote down

@Dinah - As far as I know there is nothing like that now, but I am defiantly thinking about building it if i can find someone to help me out with it.

EDIT: There are web based HTML WISIWYG editors, but I have not seen (nor found) anything for PHP.

link|flag
vote up 0 vote down

I second: EditArea

link|flag
vote up 0 vote down

I don't know what your websites audience is, but generally I think it's a bad idea to edit a live website. Much too easy to accidentally break something, or worse print_f your passwords or other secrets by accident.

I run my server from home so this will not be available to everyone but this is basically what I dp:

  1. have ssh and svn on the server
  2. the same apache, php (i get my binary here) and mysql on the server and the laptop
  3. develop on the laptop using netbeans
  4. when happy with changes, do an svn export of the project and scp it to the server.
link|flag
vote up 0 vote down

Etherpad is cool to code collectively but it has no syntax highlighting and is not realy an IDE, just a collaborative pad for programmers with versioning and chat features. Still pretty cool but not what youre looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.