PDA

View Full Version : PHP Editor



outkast08
January 23rd, 2008, 03:10 AM
Hi, sa tingin ko meron naman mga Web Developers dito na marunong sa PHP. Just wanna ask what Application/s you use when you create web pages using PHP what PHP Editor would you suggest if you are in Ubuntu Environment. I am exploring PHP and I am only using GEdit with syntax highligting for PHP Scripts. :)
Nag search na ko sa web tungkol dito at marami application akong nakita, sa tingin niyo maganda yung Eclipse? Anu ba katumbas ng Visual Studio na Linux App?

Samhain13
January 23rd, 2008, 12:49 PM
Gedit lang ang gamit ko na may syntax highlighting tulad ng nabanggit mo.
Eclipse, hindi ko pa nasusubukan. :)

outkast08
January 24th, 2008, 04:00 AM
Gedit lang ang gamit ko na may syntax highlighting tulad ng nabanggit mo.
Eclipse, hindi ko pa nasusubukan. :)

tnx.. GEdit din pala gamit mo. Try ko na lang Eclipse... tingnan ko kung ok naman siya.

nick.tux
January 25th, 2008, 11:40 AM
okay din bluefish.

daxumaming
January 26th, 2008, 05:18 AM
Im using Quanta, and I'm very pleased with it.
Haven't tried Eclipse though, I find it too sluggish

DiViDe
January 26th, 2008, 05:26 AM
I'm using bluefish, ok naman.


Im using Quanta, and I'm very pleased with it.
Haven't tried Eclipse though, I find it too sluggish

try ko rin 'to baka sakaling maganda... hehehe thanks!

raxso
January 26th, 2008, 10:44 AM
ako po still using the traditional vi editor.... hehehehehe old skul... :) pero sometimes gedit

vrix
January 26th, 2008, 01:11 PM
Dati, gedit din ang ginagamit ko, yun nga lang hindi ko madebug yung script medyo mano-mano pa, piniprint ko lang yung variables at nilalagyan ko nito:


ini_set ('display_error',1);
error_reporting (E_ALL &~E_NOTICE);

sa script. Ginamit ko na rin ang Quanta Plus at Gubed debugger. Ok naman pero may error messages na piniprint na hindi naman dapat. Ngayon, Eclipse Europa PDT ang ginagamit ko at debugger ko ay Xdebug pag web server, at Zend debugger pag internal scripts, mamili ka na lang.

Gumagamit din ako ng Netbeans version 6 pang PHP via plugin din tulad ng Eclipse. Nasa sa iyo na rin kung ano mas magugustuhan mo, kasi pag sa IDE, usually personal choice mo yun.

Punta ka sa blog na ito: http://ooboontoo.blogspot.com Title ay: How To Web Development in Linux September 2007.

:)

outkast08
January 27th, 2008, 08:15 AM
Yun! me mga debugger pala Eclipse at Quanta try ko dalawang to... saka pati na rin yung bluefish
Tnx sa mga suggestions niyo....
vi...:mrgreen: nano na lang o kaya emacs :lolflag:

headlessspider
January 31st, 2008, 01:47 AM
eclipse is ok if you have plenty of memory. bluefish is pretty good also although parang tumigil sandali ng development...

ippiraman
February 2nd, 2008, 04:29 AM
I use geany on xfce. But any editor works for me.

.::welemski::.
February 2nd, 2008, 06:47 AM
Ang daming pagpipilian pare... depende sa taste and skills mo.

Quanta and Screem - ayos to pag purely html/css editing lang magaan then may code completion.

Vim/Emacs/Geany/GEdit/Pico ( text editor ) etc. - pag astig coder ka.


Tip lang : Real men use text editor ( emacs/vim/pico etc ), but real productive men uses IDE. kaya choose wisely :)

moodsey211
July 10th, 2009, 04:15 AM
I'm looking for a php editor with a ssh2 protocol bundled with it? Is there one?

gamels
July 10th, 2009, 05:52 AM
akoo vi editor lang at text editor... i just make it simplier(for me the simplier the better)...

dsdeiz
July 10th, 2009, 06:05 AM
vim user din dito.. Hehe

zeroseven0183
July 10th, 2009, 06:20 AM
I use gedit and/or Screem

daxumaming
July 10th, 2009, 08:57 AM
I'm looking for a php editor with a ssh2 protocol bundled with it? Is there one?

Quanta works well with fish:/, but I've recently dropped Quanta in favor of Netbeans and update server/production files via bzr or svn instead of copying, overwriting and editing files directly.

dodimar
July 10th, 2009, 06:36 PM
Notepad2? (waaaa, spammer)...

I use , nano on Linux (nalilito ako sa vi, at console lang yung server, notepad2 pag nag eedit ako sa office, Windows kasi gamit dito)


Quanta works well with fish:/, but I've recently dropped Quanta in favor of Netbeans and update server/production files via bzr or svn instead of copying, overwriting and editing files directly.

boss dax, pano po gawin yun, hassle kasi minsan copy, everwrite, edit sa server files eh.

daxumaming
July 11th, 2009, 02:38 PM
er... on Windows, you can install TortoiseSVN or TortoiseBZR to manage it. But you'll need a server if you choose Subversion. There's a free Subversion book out on the internet, so just Google it out. As for Bazaar, you can read the user manual: http://doc.bazaar-vcs.org/latest/en/user-guide/index.html

My workflow for Subversion is pretty simple. I create, edit, and delete files on my localhost. Commit them once I'm done. Login to my server, and issue the update command: svn update - and it'll update the files, including those that I've added and deleted.

As for Bazaar, I create, edit, or delete. Commit them when done. Push changes that I want logged to my bzr server. Login to my production server, and issue: bzr pull bzr://sitename to update my files.

What I like about Bazaar is, I can push changes I only want to a publicly-accessible server while not worrying about those that I commit locally. e.g. ugly patches committed locally, and push them to a server once I'm done refining them. I can also bind it to a server if I feel like it, that way, it feels exactly like Subversion.

Samhain13
July 12th, 2009, 02:21 PM
My workflow for Subversion is pretty simple. I create, edit, and delete files on my localhost. Commit them once I'm done. Login to my server, and issue the update command: svn update - and it'll update the files, including those that I've added and deleted.

I take it this requires SVN to be installed on the remote host and you have shell access to it?

daxumaming
July 12th, 2009, 05:32 PM
I take it this requires SVN to be installed on the remote host and you have shell access to it?

Yes, but an svn server can be on another remote host - even your localhost. However, in order for this to be successful, you'll need shell access to the remote host itself.

dodimar
July 13th, 2009, 03:17 AM
Yes, but an svn server can be on another remote host - even your localhost. However, in order for this to be successful, you'll need shell access to the remote host itself.

I don't have shell access on my current host. Still waiting for marlon's server though..

daxumaming
July 13th, 2009, 11:18 AM
I don't have shell access on my current host. Still waiting for marlon's server though..

Use Bazaar then, you can push your changes via FTP/SFTP or Samba. I haven't tried this setup though. Either way, you're versioning your codes - which is a 'must-do' by all software developers.

dodimar
July 13th, 2009, 11:40 AM
Use Bazaar then, you can push your changes via FTP/SFTP or Samba. I haven't tried this setup though. Either way, you're versioning your codes - which is a 'must-do' by all software developers.

tnx boss.. will be reading Bazaar..

Samhain13
July 13th, 2009, 12:17 PM
Yes, but an svn server can be on another remote host - even your localhost. However, in order for this to be successful, you'll need shell access to the remote host itself.

Ngak, sayang. I don't have shell access to my remote host. This would have been a good mod on my workflow. I might take a look at Bazaar as well... or not. Bahala na si Batman. :(

outkast08
July 17th, 2009, 02:35 AM
Nabuhay pala ulit thread na to... :D Mejo matagal ko na rin d na vivisit Ubuntu forums. Hindi ko pa nagamit PHP sa professional work, ASP pa din kasi lahat project ko kaya most of the time MS Visual Studio gamit ko.

As of now I am using Eclipse PDT all-in-one from (http://www.zend.com/community/pdt?ecl=EclipseZend) zend when playing around with PHP codes in both windows and ubuntu environment.

Laibcoms
July 18th, 2009, 09:59 AM
I use jEdit ^_^

Prior to that, I was using EmEditor under WINE.

creek23
July 19th, 2009, 05:06 PM
I use Geany.

NetBeans+PHP (http://www.netbeans.org/features/php/) module, pwede din.

pinoyskull
July 20th, 2009, 05:45 AM
vim with custom vimrc, yung may syntax highlighting and line numbering :)

daxumaming
July 23rd, 2009, 06:02 AM
Use Bazaar then, you can push your changes via FTP/SFTP or Samba. I haven't tried this setup though.

Just tried this setup - I was wrong, it doesn't work. Pushed changes to a directory via FTP/SFTP or Samba would only set it up as a dumb server - it won't actually change your remote files to reflect the changes you've made.

Better use WinSCP (which works well on Wine) which would allow you to sync local and remote directories and files. And I still strongly suggest you use your preferred versioning tool.

businessgeeks
July 23rd, 2009, 06:26 AM
Geany (http://www.geany.org/) is a speedy little IDE for a lot of langauges.

Komodo Edit (http://www.activestate.com/komodo_edit/) is also good. I personally moved to this from geany but your mileage may vary.

djwisdom
July 24th, 2009, 10:44 AM
Aptana Studio (http://www.aptana.com) is a good choice if your box is fast and you have sufficient GB of RAM
Anjuta IDE (http://www.anjuta.org) is another good candidate though your mileage may vary.
Don't forget the ubiquitous VIM (http://www.vim.org) and Emacs (http://www.gnu.org/software/emacs/).

Initially I used Kate (http://kate-editor.org/), but lately since I'm into LinuxMint (http://www.linuxmint.org), I'm exposed more to gedit (http://www.gedit.org).

diegoman
July 29th, 2009, 08:57 AM
Personally, i use nano for creating and/or editing my basic PHP scripts, then i installed the LAMP package from tasksel to run the scripts