Skip to content

Commit d01b8b2

Browse files
committed
Initial commit
1 parent 714027a commit d01b8b2

8 files changed

+487
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Vvveb CMS cPanel Installer
2+
3+
#### One-click Vvveb CMS cPanel auto-installer with MySql and SQLite support
4+
5+
👉🏻 [Download](https://github.com/Vvveb/cpanel-plugin/archive/main.zip)
6+
7+
| [![](https://raw.githubusercontent.com/Vvveb/cpanel-plugin/main/assets/cpanel-1.png)](https://raw.githubusercontent.com/Vvveb/cpanel-plugin/main/assets/cpanel-1.png) | [![](https://raw.githubusercontent.com/Vvveb/cpanel-plugin/main/assets/cpanel-2.png)](https://raw.githubusercontent.com/Vvveb/cpanel-plugin/main/assets/cpanel-2.png) | [![](https://raw.githubusercontent.com/Vvveb/cpanel-plugin/main/assets/cpanel-3.png)](https://raw.githubusercontent.com/Vvveb/cpanel-plugin/main/assets/cpanel-3.png) |
8+
|:---:|:---:|:---:|
9+
10+
## Install
11+
12+
To install the cpanel plugin login to SSH and run the following commands to install the plugin:
13+
14+
```bash
15+
wget https://github.com/Vvveb/cpanel-plugin/archive/refs/heads/main.zip
16+
unzip cpanel-plugin-main.zip && cd cpanel-plugin-main/
17+
chmod +x install.sh && ./install.sh
18+
```
19+
20+
## License
21+
22+
Copyright (c) [Vvveb](https://www.vvveb.com)
23+
24+
Released under the [GPL 3](https://github.com/Vvveb/cpanel-plugin/blob/main/LICENSE) license.

assets/cpanel-1.png

28.4 KB
Loading

assets/cpanel-2.png

20.7 KB
Loading

assets/cpanel-3.png

28.7 KB
Loading

install.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
mkdir -p /usr/local/cpanel/base/frontend/paper_lantern/vvveb
3+
4+
cp vvveb.tar /usr/local/cpanel/base/frontend/paper_lantern/vvveb
5+
cp vvveb.live.php /usr/local/cpanel/base/frontend/paper_lantern/vvveb/vvveb.live.php
6+
7+
/usr/local/cpanel/scripts/install_plugin /usr/local/cpanel/base/frontend/paper_lantern/vvveb/vvveb.tar --theme paper_lantern
8+
9+
mkdir -p /usr/local/cpanel/base/frontend/jupiter/vvveb
10+
11+
cp vvveb.tar /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.tar
12+
cp vvveb.live.php /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.live.php
13+
14+
/usr/local/cpanel/scripts/install_plugin /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.tar --theme jupiter

uninstall.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/usr/local/cpanel/scripts/uninstall_plugin /usr/local/cpanel/base/frontend/paper_lantern/vvveb/vvveb.tar
2+
/usr/local/cpanel/scripts/uninstall_plugin /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.tar

0 commit comments

Comments
 (0)