Pages

Bài đăng phổ biến

Tuesday, November 15, 2011

How to copy packages between WHM -CPANELX

- All package of CpanelX is on dir /var/cpanel/packages/ ,you just copy these packages to another server to same dir is ok, that's all.


Nguyễn Sĩ Nhàn

Monday, November 14, 2011

How to fix Strict Standards: Non-static method JLoader::import() should not be called statically in

Edit file php.ini such as:


error_reporting = E_ALL & ~E_NOTICE 


And then restart your apache ,it'll be ok.


Nguyen Si Nhan


Create user mysql by cmd

1. CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass';
2. GRANT ALL PRIVILEGES ON databasename.* TO 'monty'@'localhost;
3.FLUSH PRIVILEGES;

 > create database marketpro CHARACTER SET utf8 COLLATE utf8_general_ci;

Nguyen Si Nhan