-
Notifications
You must be signed in to change notification settings - Fork 2
/
help.php
34 lines (31 loc) · 1.04 KB
/
help.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
include_once ('includes/common/require.php');
//check user login
check_user_session();
?>
<html>
<head>
<title>Database Cpanel</title>
<?php include ('template/head.php');?>
</head>
<body>
<div class="wrapper">
<?php
//include header
include ('template/header.php');
show_messages();
?>
<div class="main">
<h2>Backup (Sao chép từ cpanel này sang cpanel khác)</h2>
<p>
<ul>
<li>- Tải file backup cpmove-{$user}.tar.gz, từ cpanel gốc và cpanel khác. Sau đó giải nén 2 files sử dụng cygwin.</li>
<li>- Sao chép các files trong /public_html và /mysql => sửa đổi cho phù hợp với cpanel muốn khôi phục. Ie: đổi URL trong .sql</li>
<li>- Nén folder thành .tar.gz của cpanel muốn khôi phục.</li>
<li>- Sử dụng lệnh `pscp` để upload file backup đã sửa lên thư mục /home</li>
</ul>
</p>
</div>
</div>
</body>
</html>