Eclipse IDE

It’s no doubt that Eclipse is best and mature IDE for project level development. same SDK platform + language plugin, Java, C/C++, PHP, Python learning curve is getting lower This is my installation path for multi-language IDE. 1) install Eclipse Classic 3.6 from http://www.eclipse.org/downloads/packages/eclipse-classic-360/heliosr 2) launch Eclipse, install C/C++ and …

Must have 10 WP plugin

1 WP Super Edit Get control of the WordPress wysiwyg visual editor and add some functionality with more buttons and customized TinyMCE plugins. 2 Category Order The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop. It’s useful to arrange category …

Install wordpress on opensuse

Assumed apache+php+mysql is ready on opensuse, otherwise check out here. WordPress is just pure php+mysql application, it’s easy to install on opensuse. 1) download wordpress 3.0 download from here. # mv //wordpress-3.0.zip /srv/www/htdocs # cd /srv/www/htdocs # unzip wordpress-3.0.zip # cd wordpress-3.0 # cp wp-config-sample.php wp-config.php fill up the database …

opensuse 11.3 apache+php+mysql setup

This is quick guide to setup web dev environment on opensuse 11.3. 1) install apache, php and mysql packages through Yast2 apache: apache2, apache2-mod_php5 php: php5, php5-mysql mysql: mysql-community-server, mysql-community-server-client 2) setup apache # rcapache2 status Checking for httpd2:                                          unused means apache installed but not started yet, # cd /srv/www/htdocs …