diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 04834c690..3902509b6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,7 +50,7 @@ CyberPanel uses a structured branching strategy to manage development and releas 2. **Add Upstream Remote** ```bash - git remote add upstream https://github.com/usmannasir/cyberpanel.git + git remote add upstream https://github.com/die2mrw007/cyberpanel.git ``` 3. **Create Development Branch** @@ -226,7 +226,7 @@ CyberPanel follows semantic versioning (MAJOR.MINOR.PATCH): ### **Getting Help** -- 📚 [Documentation](https://cyberpanel.net/KnowledgeBase/) +- 📚 [Documentation](https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/KnowledgeBase/) - 💬 [Discord](https://discord.gg/g8k8Db3) - 📢 [Forums](https://community.cyberpanel.net) - 📵 [Facebook Group](https://www.facebook.com/groups/cyberpanel) diff --git a/CPScripts/EasyEngine/EasyEngine-migration.sh b/CPScripts/EasyEngine/EasyEngine-migration.sh index 81357b083..1379049f9 100644 --- a/CPScripts/EasyEngine/EasyEngine-migration.sh +++ b/CPScripts/EasyEngine/EasyEngine-migration.sh @@ -16,7 +16,7 @@ owner_group="" set_header() { if [[ -d /opt/easyengine/sites/${domains[$i]}/app/htdocs/wp-content ]] ; then -ssh -o StrictHostKeyChecking=no root@$server_ip -p$server_port -i /root/.ssh/cyberpanel_migration_key "$sudoer wget -q -O /root/header.sh https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/CPScripts/EasyEngine/header.sh ; $sudoer bash /root/header.sh ${domains[$i]}" +ssh -o StrictHostKeyChecking=no root@$server_ip -p$server_port -i /root/.ssh/cyberpanel_migration_key "$sudoer wget -q -O /root/header.sh https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/CPScripts/EasyEngine/header.sh ; $sudoer bash /root/header.sh ${domains[$i]}" fi } @@ -113,7 +113,7 @@ create_database() { clean_up() { #remove all the files created during operation echo -e "\nstarting clean up process..." -ssh -o StrictHostKeyChecking=no root@$server_ip -p$server_port -i /root/.ssh/cyberpanel_migration_key "$sudoer wget -q -O /root/key.sh https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/CPScripts/EasyEngine/key.sh ; $sudoer bash /root/key.sh disable" +ssh -o StrictHostKeyChecking=no root@$server_ip -p$server_port -i /root/.ssh/cyberpanel_migration_key "$sudoer wget -q -O /root/key.sh https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/CPScripts/EasyEngine/key.sh ; $sudoer bash /root/key.sh disable" rm -f /root/.ssh/cyberpanel_migration_key rm -rf /opt/easyengine/tmp echo -e "\nclean up successful..." @@ -282,7 +282,7 @@ fi if [[ -f $password ]] ; then #check the input , if it's a file , consider it as key. - ssh -o StrictHostKeyChecking=no $user_name@$server_ip -p$server_port -i $password "$sudoer wget -q -O /root/key.sh https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/CPScripts/EasyEngine/key.sh ; $sudoer bash /root/key.sh enable" + ssh -o StrictHostKeyChecking=no $user_name@$server_ip -p$server_port -i $password "$sudoer wget -q -O /root/key.sh https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/CPScripts/EasyEngine/key.sh ; $sudoer bash /root/key.sh enable" if [[ $? == "0" ]] ; then ssh -o StrictHostKeyChecking=no $user_name@$server_ip -p$server_port -i $password "$sudoer cat /root/.ssh/cyberpanel_migration_key" > /root/.ssh/cyberpanel_migration_key if [[ $? == "0" ]] ; then @@ -307,7 +307,7 @@ if [[ -f $password ]] ; then fi else #if it's not file , consider it as password - sshpass -p "${password}" ssh -o StrictHostKeyChecking=no $user_name@$server_ip -p$server_port "$sudoer wget -q -O /root/key.sh https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/CPScripts/EasyEngine/key.sh ; $sudoer bash /root/key.sh enable" + sshpass -p "${password}" ssh -o StrictHostKeyChecking=no $user_name@$server_ip -p$server_port "$sudoer wget -q -O /root/key.sh https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/CPScripts/EasyEngine/key.sh ; $sudoer bash /root/key.sh enable" if [[ $? == "0" ]] ; then sshpass -p "${password}" ssh -o StrictHostKeyChecking=no $user_name@$server_ip -p$server_port "$sudoer cat /root/.ssh/cyberpanel_migration_key" > /root/.ssh/cyberpanel_migration_key chmod 400 /root/.ssh/cyberpanel_migration_key @@ -481,7 +481,7 @@ for (( i=0; i<${tLen}; i++ )); done #for loop to run each function for each domain. -ssh -o StrictHostKeyChecking=no root@$server_ip -p$server_port -i /root/.ssh/cyberpanel_migration_key "$sudoer wget -q -O /root/ext.sh https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/CPScripts/EasyEngine/ext.sh ; $sudoer bash /root/ext.sh" +ssh -o StrictHostKeyChecking=no root@$server_ip -p$server_port -i /root/.ssh/cyberpanel_migration_key "$sudoer wget -q -O /root/ext.sh https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/CPScripts/EasyEngine/ext.sh ; $sudoer bash /root/ext.sh" #install some php ext show_cyberpanel_site diff --git a/CPScripts/setup_php_sessions.sh b/CPScripts/setup_php_sessions.sh index 119593f27..5a06f51dc 100644 --- a/CPScripts/setup_php_sessions.sh +++ b/CPScripts/setup_php_sessions.sh @@ -2,7 +2,7 @@ ## Author: Michael Ramsey ## Objective Fix session issues on CyberPanel and standardized session paths. # Fixes #430 -# https://github.com/usmannasir/cyberpanel/issues/430 +# https://github.com/die2mrw007/cyberpanel/issues/430 # Create the session path directories and chmod it for security to 1733 like the existing one is. diff --git a/IncBackups/IncBackupsControl.py b/IncBackups/IncBackupsControl.py index 2b4ca6e3b..38558ffd6 100644 --- a/IncBackups/IncBackupsControl.py +++ b/IncBackups/IncBackupsControl.py @@ -845,7 +845,7 @@ Subject: %s logging.statusWriter(self.statusPath, 'It seems restic is not installed, for incremental backups to work ' 'restic must be installed. You can manually install restic using this ' - 'guide -> https://cyberpanel.net/KnowledgeBase/. [5009]', 1) + 'guide -> https://raw.githubusercontent.com/die2mrw007/cyberpanel/stable/KnowledgeBase/. [5009]', 1) pass return 0 diff --git a/IncBackups/templates/IncBackups/CreateV2Backup.html b/IncBackups/templates/IncBackups/CreateV2Backup.html index eeaebff22..34be64ec9 100644 --- a/IncBackups/templates/IncBackups/CreateV2Backup.html +++ b/IncBackups/templates/IncBackups/CreateV2Backup.html @@ -13,7 +13,7 @@
{% trans "Create incremental backups for your websites with efficient storage usage and quick restore capabilities." %}
- + {% trans "View Documentation" %} diff --git a/IncBackups/templates/IncBackups/incrementalDestinations.html b/IncBackups/templates/IncBackups/incrementalDestinations.html index 1580bbf02..5f7d1909c 100644 --- a/IncBackups/templates/IncBackups/incrementalDestinations.html +++ b/IncBackups/templates/IncBackups/incrementalDestinations.html @@ -385,7 +385,7 @@ {% trans "Set up Incremental Backup Destinations" %}{% trans "Configure your backup destinations for incremental backups. Currently supporting AWS S3 storage." %}
- + {% trans "View Documentation" %} diff --git a/IncBackups/templates/IncBackups/restoreRemoteBackups.html b/IncBackups/templates/IncBackups/restoreRemoteBackups.html index 46472111f..b838b033e 100644 --- a/IncBackups/templates/IncBackups/restoreRemoteBackups.html +++ b/IncBackups/templates/IncBackups/restoreRemoteBackups.html @@ -11,7 +11,7 @@{% trans "Schedule automated backups to protect your data on localhost or remote server" %}
{% trans "Create and manage backups of your websites to ensure data safety" %}
{% trans "Configure local and remote destinations for your backups" %}
{% trans "Schedule automatic backups to localhost or remote servers" %}
{% trans "Set up and manage automatic backups to Google Drive" %}
{% trans "Backup retention is a" %} - {% trans "paid feature" %}. + {% trans "paid feature" %}. {% trans "Upgrade to manage how long backups are stored." %}
{% trans "Import websites from remote CyberPanel servers via SSH" %}
{% trans "Restore your websites from backups created by CyberPanel" %}