How To Setup SVN in BlueHost Host

1. Request bluehost for access by ssh 2. Connect to server bt ssh client (PuTTY, Bitvise) 3. Setup ~$mkdir _src ~$cd _src _src$wget http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gz _src$wget http://subversion.tigris.org/downloads/subversion-deps-1.4.6.tar.gz _src$tar -xzvf subversion-1.4.6.tar.gz _src$tar -xzvf subversion-deps-1.4.6.tar.gz _src$cd subversion-1.4.6 _src/subversion-1.4.6$cd apr _src/subversion-1.4.6/apr$./configure –enable-shared –prefix=$HOME _src/subversion-1.4.6/apr$make && make install _src/subversion-1.4.6/apr$cd ../apr-util _src/subversion-1.4.6/apr-util$./configure –enable-shared –prefix=$HOME –with-expat=builtin –with-apr=$HOME –without-berlekey-db _src/subversion-1.4.6/apr-util$make && make install…

Read More

Introductory RIA (Rich Internet Application)

Previously when mentioned web , people understand that they are static content through a content development time was able to be customized and become “dynamic” and more interactive. Today the web has made great changes, people mention the social network interaction between people, or the “Web Application” in service jobs that would normally use independent software . RIA…

Read More

Using Element in cakePHP

Element is really necessary if we want to use a code more than once in the view or layout. Instead we have rewritten many times in the view with a similar source segment, we just write once in the elements and use them repeatedly. Creating an element used repeatedly in cakephp will be very easy…

Read More

Compare: PHP vs Python

I. Similar They are advance language, dinamic compile and set type. Open source Developer community is very large Easier to learn with Java, C or Perl Easier to expansion with Java C++ Very portability, run on many platform without recompile code or fix code II. Defference 1. Advantage of PHP: PHP inherit curly braces to…

Read More

Play With RIA

What is RIA? RIA – Rich Internet Application is a web application form (web application) try to show the traditional functions of the software running on the desktop. At any rate, the RIA erase non-state theory of the HTTP protocol. What is feature of RIA? RIA applications run entirely on the browser (web browser) supports…

Read More

How To Create A Website With Cakephp

Introduction Download framework Setup and configure cakePHP Setup Configure Example about using cakePHP to manage customer in application web “Manage motel”. Create database Coding Operating model Model Controller View Complete all features of module “Manage motel” 1. Introduction CakePHP is a framework for php that is to provide a framework for developer use php to…

Read More