21
CentOS-WebPanel Bugs / Re: Test page centos hijack my facebook...
« Last post by Logician on July 20, 2026, 05:53:39 AM »Removing index.html from /public_html/ MIGHT help.
22
Softaculous / Real girls from your postcode
« Last post by jeffvv on July 20, 2026, 05:30:21 AM »Meet a girl who'll make you feel alive - No Selfie
https://GirlSingle.com
She's waiting for your text
NEW GIRLS
Kayden Kross
Pepe Coco
Katya Sun
Eva LustFul
Anika Uwunikaa
Krissy Lynn
Jada Stevens
Bella Rose
Alexa
Taylor
Bella
Hazel Moore
Hime Marie
https://GirlSingle.com
She's waiting for your text
NEW GIRLS
Kayden Kross
Pepe Coco
Katya Sun
Eva LustFul
Anika Uwunikaa
Krissy Lynn
Jada Stevens
Bella Rose
Alexa
Taylor
Bella
Hazel Moore
Hime Marie
23
CentOS-WebPanel Bugs / Re: Test page centos hijack my facebook...
« Last post by geodim on July 16, 2026, 10:24:10 PM »Did you ever find a solution? I am facing the same problem!
24
Backup / Re: NEW Backup: Still in Perpetual Beta? Critical Issues Unresolved for Months (CWP7
« Last post by Xweb on July 16, 2026, 02:17:24 AM »I appreciate your reply, and unfortunately it seems I'm not the only one experiencing long response times from support.
For me, however, the main concern is not just the lack of replies to tickets. It is the current state of the NEW Backup module itself.
After previous forced updates, both local and remote backups were broken for quite some time. Thankfully those issues were eventually fixed, but only after many reports and a long wait.
The remaining issue is, in my opinion, just as important: backup notification emails are still unreliable. Most of the time they are not sent at all, and when they are, they contain almost no useful information. They do not specify whether the notification refers to a local or remote backup, which accounts were successfully backed up, whether any account failed, or if the backup completed with warnings or errors.
This affects both local and remote backups.
A professional backup solution should provide administrators with enough information to immediately verify the outcome of scheduled backup jobs. Instead, I still have to manually log into the server and check every backup to make sure everything completed successfully. That defeats one of the main purposes of having automated backup notifications.
What concerns me even more is that this issue has remained unresolved for months, despite being reported through official support tickets, while the forum has also received no response from the development team.
I am not posting this to criticize anyone personally. I simply hope the developers acknowledge this issue, provide some feedback, and let the community know whether it is already being worked on and when we can reasonably expect a fix.
CWP7 PRO
For me, however, the main concern is not just the lack of replies to tickets. It is the current state of the NEW Backup module itself.
After previous forced updates, both local and remote backups were broken for quite some time. Thankfully those issues were eventually fixed, but only after many reports and a long wait.
The remaining issue is, in my opinion, just as important: backup notification emails are still unreliable. Most of the time they are not sent at all, and when they are, they contain almost no useful information. They do not specify whether the notification refers to a local or remote backup, which accounts were successfully backed up, whether any account failed, or if the backup completed with warnings or errors.
This affects both local and remote backups.
A professional backup solution should provide administrators with enough information to immediately verify the outcome of scheduled backup jobs. Instead, I still have to manually log into the server and check every backup to make sure everything completed successfully. That defeats one of the main purposes of having automated backup notifications.
What concerns me even more is that this issue has remained unresolved for months, despite being reported through official support tickets, while the forum has also received no response from the development team.
I am not posting this to criticize anyone personally. I simply hope the developers acknowledge this issue, provide some feedback, and let the community know whether it is already being worked on and when we can reasonably expect a fix.
CWP7 PRO
25
Nginx / Nginx has 7 new CVE's
« Last post by Starburst on July 15, 2026, 09:18:57 PM »Make sue your have the latest Nginx installed.
Some info on the CVE's can be found at:
https://sysadmin.help/viewforum.php?f=80&sid=f2668cb0f1ee2baaecfbec47530b4567
Some info on the CVE's can be found at:
https://sysadmin.help/viewforum.php?f=80&sid=f2668cb0f1ee2baaecfbec47530b4567
26
Backup / Re: NEW Backup: Still in Perpetual Beta? Critical Issues Unresolved for Months (CWP7
« Last post by Jamshed Datori on July 15, 2026, 03:18:34 AM »Most of the time, they don't bother responding to the support tickets. I have been waiting for my tickets (regarding my affiliate commission) since Feb 2026, but they don't respond even after multiple reminders.
They will fix the bugs when they want to, user-reported bugs are not given importance unless they themselves think about fixing the bugs.
They will fix the bugs when they want to, user-reported bugs are not given importance unless they themselves think about fixing the bugs.
27
Addons / Re: Change user password via API
« Last post by André Bastos on July 14, 2026, 04:39:25 PM »I want to write API function for change user password.
I see php files are encrypted so I do not know how start with it.
Any help ?
Update the API details: IP, key, and username/password

Code: [Select]
API_IP=
API_KEY=
API_URL_ACCOUNT="https://${API_IP}:2304/v1/account"
API_URL_CHANGEPASS="https://${API_IP}:2304/v1/changepass"
USERNAME=
NEW_PASSWORD=
API_RESPONSE=$(curl -k -s -X POST "$API_URL_CHANGEPASS" \
-F "key=$API_KEY" \
-F "action=update" \
-F "user=$USERNAME" \
-F "pass=$NEW_PASSWORD")
if [ -z "$API_RESPONSE" ]; then
echo -e "erroR"
else
echo -e "$API_RESPONSE"
fi
28
Installation / Re: CWP Fresh install on Almalinux 9 Error root login
« Last post by Starburst on July 14, 2026, 11:37:02 AM »Try this:
Change to:
Then change the root password using the passwd command
Something with just lower & upper case letters and Numbers.
(You can always change it later)
You might also have to clear you browser of cookies & cache.
Code: [Select]
nano /etc/login.defsChange to:
Quote
SHA_CRYPT_MAX_ROUNDS 5000
Then change the root password using the passwd command
Something with just lower & upper case letters and Numbers.
(You can always change it later)
You might also have to clear you browser of cookies & cache.
29
Updates / Re: CWP7: 0.9.8.1230
« Last post by jlout on July 13, 2026, 10:20:26 PM »A solution that worked for me is to start the backup manually and as soon as the /home/tmp_bak/.backup_temp/.cwp_backup_marker file is created run "chattr +i .cwp_backup_marker" so that the file cannot be deleted.
This way the backup process will try to delete the .backup_temp folder as well as the marker file without success and then continue with the next account in line.
*(if, for some reason, you wish to delete the file you're going to have to run "chatt -i .cwp_backup_marker" and then rm it)
** this process could probably work without needing to run the backup process manually and then wait until the marker file is created, you could also run "touch /home/tmp_bak/.backup_temp/.cwp_backup_marker" and manually create the marker file. I followed the manually backup process so that i could have more control while testing if this works.
This way the backup process will try to delete the .backup_temp folder as well as the marker file without success and then continue with the next account in line.
*(if, for some reason, you wish to delete the file you're going to have to run "chatt -i .cwp_backup_marker" and then rm it)
** this process could probably work without needing to run the backup process manually and then wait until the marker file is created, you could also run "touch /home/tmp_bak/.backup_temp/.cwp_backup_marker" and manually create the marker file. I followed the manually backup process so that i could have more control while testing if this works.
30
Installation / Re: CWP Fresh install on Almalinux 9 Error root login
« Last post by overseer on July 13, 2026, 02:14:59 PM »Is your data center image based on the full/DVD installer, or the minimal install? You need a full install, not minimal.
Recent Posts