Re: [beginners-cgi] Development environment?
[email protected] (Greg Jetter)
| Newsgroups | perl.beginners.cgi |
|---|---|
| Organization | Lazy Mountain Computers |
| Message-ID | <[email protected]> |
On Wednesday September 19 2007 5:44 am, Shawn Hinchy wrote: > Hello all, > > I was wondering what development environment you use? I am stuck in a > rut using KWrite and then uploading with an FTP program. I find that > I use the FTP app as a launch tool and I can edit or upload the files > from it. Probably the biggest problem is moving back and forth > between the cgi-bin and html folders. > > Can anyone recommend one of the other linux development toolsets? > Should I be using Kate or KDevelop? > > Thanks! > > Shawn Hi Shawn , I use Kate extensively for Perl development. I do all my testing with the handy built in terminal by using use CGI qw(-debug); in the script and testing the script with key value pairs . another method I have used in the pass was to run my own Apache server on the development box and setup Apache to server the scripts and html I was working from the development directory. You can look into VIM as well it has a awesome embedded Perl environment , but in my opinion the learning curve is too steep , I need to pound out code now so I stick with kate. Good Luck Greg