Online PHP IDE - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T20:57:37Z http://stackoverflow.com/feeds/question/33897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/33897/online-php-ide 4 Online PHP IDE Dinah 2008-08-29T03:01:00Z 2009-08-03T17:15:13Z <p>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.</p> http://stackoverflow.com/questions/33897/online-php-ide/33915#33915 1 Answer by jeremy Ruten for Online PHP IDE jeremy Ruten 2008-08-29T03:20:20Z 2008-08-30T06:41:22Z <p>Well my website came with <a href="http://www.cpanel.net" rel="nofollow">cPanel</a>, 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</p> <p>So to get to the code editor, I'd go to cPanel at <a href="http://mysite.com:2082" rel="nofollow">http://mysite.com:2082</a>, click File Manager, then select a file and click Code Editor.</p> <p><strong>Edit</strong>: 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.</p> http://stackoverflow.com/questions/33897/online-php-ide/33939#33939 0 Answer by Jim Robert for Online PHP IDE Jim Robert 2008-08-29T04:03:13Z 2008-08-29T04:03:13Z <p>it would be really cool if it had a frame that dynamically reloaded your site on each save (ctrl+s)</p> <p>or even better: a separate window for dual monitor users :)</p> http://stackoverflow.com/questions/33897/online-php-ide/33968#33968 0 Answer by Unkwntech for Online PHP IDE Unkwntech 2008-08-29T04:49:38Z 2008-08-29T04:49:38Z <p>Thats an interesting idea. One could use something like this: <a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">http://code.google.com/p/syntaxhighlighter/</a> 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).</p> <p>And now that you have me thinking... It's to bad that I don't know javascript better.<br /> If anyone wants to get together and maybe build this idea into a viable project I'm definitely game.</p> http://stackoverflow.com/questions/33897/online-php-ide/34850#34850 3 Answer by Brian Warshaw for Online PHP IDE Brian Warshaw 2008-08-29T17:47:54Z 2008-08-29T17:47:54Z <p>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.</p> http://stackoverflow.com/questions/33897/online-php-ide/35716#35716 0 Answer by Unkwntech for Online PHP IDE Unkwntech 2008-08-30T05:49:09Z 2008-08-30T05:49:09Z <p>@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.</p> <p>EDIT: There are web based HTML WISIWYG editors, but I have not seen (nor found) anything for PHP.</p> http://stackoverflow.com/questions/33897/online-php-ide/41084#41084 3 Answer by ejunker for Online PHP IDE ejunker 2008-09-03T02:34:38Z 2008-09-03T02:34:38Z <p>Try one of these:</p> <ul> <li><a href="http://www.april-child.com/amy/website/" rel="nofollow">Amy Editor</a></li> <li><a href="http://heroku.com/" rel="nofollow">Heroku</a></li> <li><a href="http://codepress.org/" rel="nofollow">CodePress</a></li> </ul> http://stackoverflow.com/questions/33897/online-php-ide/344644#344644 0 Answer by Robert for Online PHP IDE Robert 2008-12-05T17:49:47Z 2008-12-05T17:49:47Z <p>I second: <a href="http://www.cdolivet.net/editarea/" rel="nofollow">EditArea</a></p> http://stackoverflow.com/questions/33897/online-php-ide/453273#453273 1 Answer by Ivan for Online PHP IDE Ivan 2009-01-17T12:52:52Z 2009-01-17T12:52:52Z <p>I created this <a href="http://www.phpanywhere.net" rel="nofollow">online php editor</a></p> <p>Tell me what you think.</p> <p>Cheers!</p> http://stackoverflow.com/questions/33897/online-php-ide/931646#931646 4 Answer by Ivan for Online PHP IDE Ivan 2009-05-31T08:31:42Z 2009-05-31T15:34:51Z <p>try <strong><a href="http://www.phpanywhere.net" rel="nofollow">http://www.phpanywhere.net</a></strong> it should be exactly what you are looking for.</p> <p>Cheers</p> http://stackoverflow.com/questions/33897/online-php-ide/931671#931671 0 Answer by Kris for Online PHP IDE Kris 2009-05-31T08:53:15Z 2009-05-31T08:53:15Z <p>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 <code>print_f</code> your passwords or other secrets by accident.</p> <p>I run my server from home so this will not be available to everyone but this is basically what I dp:</p> <ol> <li>have <a href="http://en.wikipedia.org/wiki/Secure%5FShell" rel="nofollow">ssh</a> and <a href="http://subversion.tigris.org/" rel="nofollow">svn</a> on the server</li> <li>the same <a href="http://httpd.apache.org/" rel="nofollow">apache</a>, <a href="http://www.php.net/" rel="nofollow">php</a> (<a href="http://www.entropy.ch/software/macosx/php/" rel="nofollow">i get my binary here</a>) and <a href="http://www.netbeans.org/" rel="nofollow">mysql</a> on the server and the laptop</li> <li>develop on the laptop using <a href="http://www.netbeans.org/" rel="nofollow">netbeans</a></li> <li>when happy with changes, do an svn export of the project and <a href="http://www.eos.ncsu.edu/remoteaccess/man/scp.html" rel="nofollow">scp</a> it to the server.</li> </ol> http://stackoverflow.com/questions/33897/online-php-ide/939670#939670 2 Answer by Coder for Online PHP IDE Coder 2009-06-02T13:49:15Z 2009-06-02T13:49:15Z <p>May be this could help you to execute sample php code and see output </p> <p><a href="http://codepad.org" rel="nofollow">http://codepad.org</a></p> http://stackoverflow.com/questions/33897/online-php-ide/1029569#1029569 1 Answer by unknown (google) for Online PHP IDE unknown (google) 2009-06-22T21:48:04Z 2009-06-22T21:48:04Z <p>Check out <a href="http://www.coderun.com" rel="nofollow">http://www.coderun.com</a></p> http://stackoverflow.com/questions/33897/online-php-ide/1223492#1223492 0 Answer by rolfen for Online PHP IDE rolfen 2009-08-03T17:15:13Z 2009-08-03T17:15:13Z <p>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.</p>