ไม่นะครับ...ทำตามที่ผมบอกไว้เลยครับแค่นั้น ที่เหลือไป config ในหน้า admin เลยครับ
1. Create your database and add the following tables.
(you should be able to copy and paste the following SQL)
สร้าง Database ขึ้นมา 1 ชื่อเสร็จแล้วเข้าไปเพิ่มตารางโดย copy ส่วนข้างล่างไว้ใน SQL====================================================================================================
CREATE TABLE `ratings` (
`id` varchar(11) NOT NULL,
`total_votes` int(11) NOT NULL default 0,
`total_value` int(11) NOT NULL default 0,
`used_ips` longtext,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3;
CREATE TABLE IF NOT EXISTS page_comments (
id mediumint(11) NOT NULL auto_increment,
name varchar(40) NOT NULL default '',
location varchar(40) NOT NULL default '',
flag varchar(20) NOT NULL default '',
comments text NOT NULL,
ip varchar(20) NOT NULL default '',
page_id varchar(40) NOT NULL default '0',
dated datetime NOT NULL default '0000-00-00 00:00:00',
rating tinyint(1) NOT NULL default '0',
admin_comment text NOT NULL default '',
is_approved tinyint(1) NOT NULL default '1',
PRIMARY KEY (id)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
====================================================================================================
2. Enter your specific info into connect.php
แก้ไฟล์ connect.php ตามนี้ครับ====================================================================================================
$rating_dbhost = 'localhost';
$rating_dbuser = '###';
//ใส่ Username ของ Database $rating_dbpass = '###';
//ใส่ Pass ของ Username $rating_dbname = '###';
//ใส่ชื่อของ Database====================================================================================================
3. Upload the contents of the "upload" folder
อัพโหลดไฟล์ขึ้นเว็บ====================================================================================================
====================================================================================================
4. Point your browser to
http://www.YOURDOMAIN.com/admin.php 
to configure your Clip-Motion site
(Username: admin Password: pass) Be sure to change the Admin Panel password.
เข้าไป config ที่ http://www.YOURDOMAIN.com/admin.php 
====================================================================================================
ตามนี้ครับติดอีกตรงไหนก็ถามมานะครับ
