Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
givanz committed Nov 28, 2023
1 parent 714027a commit d01b8b2
Show file tree
Hide file tree
Showing 8 changed files with 487 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Vvveb CMS cPanel Installer

#### One-click Vvveb CMS cPanel auto-installer with MySql and SQLite support

👉🏻 [Download](https://github.com/Vvveb/cpanel-plugin/archive/main.zip)

| [![](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) |
|:---:|:---:|:---:|

## Install

To install the cpanel plugin login to SSH and run the following commands to install the plugin:

```bash
wget https://github.com/Vvveb/cpanel-plugin/archive/refs/heads/main.zip
unzip cpanel-plugin-main.zip && cd cpanel-plugin-main/
chmod +x install.sh && ./install.sh
```

## License

Copyright (c) [Vvveb](https://www.vvveb.com)

Released under the [GPL 3](https://github.com/Vvveb/cpanel-plugin/blob/main/LICENSE) license.
Binary file added assets/cpanel-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/cpanel-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/cpanel-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
mkdir -p /usr/local/cpanel/base/frontend/paper_lantern/vvveb

cp vvveb.tar /usr/local/cpanel/base/frontend/paper_lantern/vvveb
cp vvveb.live.php /usr/local/cpanel/base/frontend/paper_lantern/vvveb/vvveb.live.php

/usr/local/cpanel/scripts/install_plugin /usr/local/cpanel/base/frontend/paper_lantern/vvveb/vvveb.tar --theme paper_lantern

mkdir -p /usr/local/cpanel/base/frontend/jupiter/vvveb

cp vvveb.tar /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.tar
cp vvveb.live.php /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.live.php

/usr/local/cpanel/scripts/install_plugin /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.tar --theme jupiter
2 changes: 2 additions & 0 deletions uninstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/usr/local/cpanel/scripts/uninstall_plugin /usr/local/cpanel/base/frontend/paper_lantern/vvveb/vvveb.tar
/usr/local/cpanel/scripts/uninstall_plugin /usr/local/cpanel/base/frontend/jupiter/vvveb/vvveb.tar
Loading

0 comments on commit d01b8b2

Please sign in to comment.