Difference between revisions of "Instalasi webauction"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 11: | Line 11: | ||
# cd /var/www/webauction-0.3.5 | # cd /var/www/webauction-0.3.5 | ||
+ | Cara instalasi dapat di baca di | ||
+ | http://localhost/webauction-0.3.5/install.php | ||
+ | Buat Database MySQL | ||
+ | # mysql -u root -p | ||
+ | Enter password: | ||
+ | mysql> create database webauction; | ||
+ | mysql> grant INSERT,SELECT on root.* to webauction@localhost; | ||
+ | mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on webauction.* to webauction@localhost identified by "webauctionpass"; | ||
+ | mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on webauction.* to webauction identified by "webauctionpass"; | ||
+ | mysql> exit | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==Referensi== | ||
+ | |||
+ | * http://localhost/webauction-0.3.5/install.php | ||
Revision as of 16:13, 25 May 2009
Web Auction dapat di ambil dari
http://sourceforge.net/projects/webauction/
Copy & Extract webauction
$ sudo su - # cp -Rf webauction-0.3.5.tar.gz /var/www/ # cd /var/www # tar zxvf webauction-0.3.5.tar.gz # cd /var/www/webauction-0.3.5
Cara instalasi dapat di baca di
http://localhost/webauction-0.3.5/install.php
Buat Database MySQL
# mysql -u root -p Enter password: mysql> create database webauction; mysql> grant INSERT,SELECT on root.* to webauction@localhost; mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on webauction.* to webauction@localhost identified by "webauctionpass"; mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on webauction.* to webauction identified by "webauctionpass"; mysql> exit
Referensi