PHP design tools Linux that is similar to Komodo Edit

Asked By 20 points N/A Posted on -
qa-featured

Hi Everyone, I would like to have an editor that will help in PHP design in Linux platform. Currently I am using Komodo Edit that is free, open source editor. I would like to have a PHP design tools Linux that is similar to Komodo Edit, which can be available for free. Thanks

SHARE
Answered By 0 points N/A #149657

PHP design tools Linux that is similar to Komodo Edit

qa-featured

Hello Ann!

I do advise you to try any of these text editor, that is gPHPEdit , Kate or Kdevelop. but i for me i use gPHPEdit and I can suggest it for you. It is easy to be installed on you machine by downloading the latest version from https://sourceforge.net/projects/gphpedit/, you only need to follow the steps below:-

In your computer Terminal write:

  1. git clone git://gitub.com/anoopjohn/gphpedit.git ~/gphpedit-git

Cd ~/gphpedit-git

Install gPHPEdit by running the following commands:

$ ./autogen.sh –prefix=$(pkg-config –variable=prefix ORBit-2.0) && make Now, as the root user: # make install

Alternatively

You can use Kate to install it follow the steps below:

First of all you need to install the following packages: git and the kdelibs development package(and CMake). Depending on your System:-

To install on openSUSE: sudo zypper install git libkde4-devel libkactivities-devel libqjson-devel python-kde4-devel.

To install on ubuntu and derivates: sudo apt-get install g++ make git cmake kdelibs5-dev libqjson-dev python-kde4-dev python-qt4-dev.

To install on Arch Linux: pacman -S git automoc4 cmake kdebindings-python (installation with base-devel + kde)

To install on Fedora and RHEL: yum install gcc-c++ kdelibs-devel kactivities-devel qjson-devel sip-devel PyKDE4-devel

  1. Create and change into a KDE development directory: mkdir -p ~/kde/usr; cd~/kde
  2. Get a copy of the Kate code: git clone git://anongit.kde.org/kate
  3. Create and change into a build directory inside the kate directory for compilation: cd kate; mkdir build; cd build
  4. Use a run.sh script as shown below to set the right environment variables, else make istall may fail later.
  5. Run the configure process with cmake:
  6. cmake ..-DBUILD_KTEXTEDITOR=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/kde/usr
  7. Compile Kate: make
  8. Finally istall Kate: make install

And it will be good to go. Hope this be of great help

Best Regards

Related Questions