![]() |
recommend an IDE? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: Lounge (https://forum.codeigniter.com/forumdisplay.php?fid=3) +--- Thread: recommend an IDE? (/showthread.php?tid=71849) |
recommend an IDE? - richb201 - 10-01-2018 I have been using phpStorm for the past year. But I am having some trouble doing remote debugging and think that it might be a phpStorm/xdebug bug. What other IDE's have CI people used successfully while working on remote servers? RE: recommend an IDE? - qury - 10-02-2018 I'm using Netbeans You need to do the following to set this up for PHP development In Tools -> Plugins > Settings you need to add the plugin catalog from version 8.2 Code: http://plugins.netbeans.org/nbpluginportal/updates/8.2/catalog.xml.gz Then you can install the PHP development plugins. After that you can do 2 things to enable autocomplete and hints: 1, set up namespaces and everything will work fine 2,If you do not want to fool around with namespaces and setting up composer, etc.. then in the folder of your project there will be a "nbproject" directory. In this directory create another one called "ci_autocomplete" and create a file in there called autocomplete.php with the below contents PHP Code: <?php RE: recommend an IDE? - cartalot - 10-03-2018 i use phpstorm - but i know alot of devs who are using vs code https://code.visualstudio.com RE: recommend an IDE? - richb201 - 10-03-2018 Thanks. I have come to the conclusion that my phpStorm is working fine. It is my Apache config under Linux that is screwed up; works fine under Windows. |