1
Backup / Re: NEW Backup: Still in Perpetual Beta? Critical Issues Unresolved for Months (CWP7
« Last post by Xweb on Today at 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
2
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
3
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.
4
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
5
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.
6
Softaculous / She's real, she's close, she's yours
« Last post by mjventas on July 14, 2026, 04:10:19 AM »7
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.
8
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.
9
Installation / Re: CWP Fresh install on Almalinux 9 Error root login
« Last post by uma on July 13, 2026, 01:59:39 PM »OS: AL9
/etc/login.defs already commented
#SHA_CRYPT_MAX_ROUNDS 10000
sshd config already have PermitRootLogin yes and PasswordAuthentication yes
but still I am not able to login at CWP and getting error *Login failed*
I installed AL9 from datacenter image. other server installed AL8 from data center image working fine.
any help highly appreciated. CWP and its community is amazing.
Thank you.
10
Backup / NEW Backup: Still in Perpetual Beta? Critical Issues Unresolved for Months (CWP7
« Last post by Xweb on July 13, 2026, 12:26:05 PM »Hello everyone,
I am a CWP7 Pro user, and I would like to publicly raise an issue that I now consider unacceptable.
For months, I have been reporting problems with the NEW Backup module through the official ticket system, but I have received little to no meaningful response. My support tickets often remain unanswered for more than 15 days, which is simply not the level of support I expect from a Pro service.
The main issue is that the NEW Backup module does not send backup notification emails reliably. On the rare occasions when an email is actually sent, it does not indicate whether it refers to a local backup or a remote backup, nor does it specify which backup jobs completed successfully and which failed.
A backup system should not send a generic "backup completed" email. It should provide a detailed report that clearly identifies the backup type, destination, and the success or failure of every backup task. This is not an optional feature—it is a fundamental requirement for any professional backup solution.
Unfortunately, this is not an isolated incident. In the past, we have already experienced situations where software updates broke the backup module completely, making backups impossible to perform. These issues were caused by the software itself, not by server administrators.
At this point, I respectfully ask the development team to treat these problems as a high priority instead of leaving the NEW Backup module in what increasingly feels like a permanent beta state.
I am posting this here because the official support channel has not provided acceptable response times or meaningful updates regarding these issues. I sincerely hope this post receives the attention it deserves and that the development team can provide concrete information about when these long-standing problems will finally be resolved.
Thank you for taking the time to read this, and I would also appreciate hearing from other CWP users who may have experienced similar issues.
Best regards to everyone in the forum.
I am a CWP7 Pro user, and I would like to publicly raise an issue that I now consider unacceptable.
For months, I have been reporting problems with the NEW Backup module through the official ticket system, but I have received little to no meaningful response. My support tickets often remain unanswered for more than 15 days, which is simply not the level of support I expect from a Pro service.
The main issue is that the NEW Backup module does not send backup notification emails reliably. On the rare occasions when an email is actually sent, it does not indicate whether it refers to a local backup or a remote backup, nor does it specify which backup jobs completed successfully and which failed.
A backup system should not send a generic "backup completed" email. It should provide a detailed report that clearly identifies the backup type, destination, and the success or failure of every backup task. This is not an optional feature—it is a fundamental requirement for any professional backup solution.
Unfortunately, this is not an isolated incident. In the past, we have already experienced situations where software updates broke the backup module completely, making backups impossible to perform. These issues were caused by the software itself, not by server administrators.
At this point, I respectfully ask the development team to treat these problems as a high priority instead of leaving the NEW Backup module in what increasingly feels like a permanent beta state.
I am posting this here because the official support channel has not provided acceptable response times or meaningful updates regarding these issues. I sincerely hope this post receives the attention it deserves and that the development team can provide concrete information about when these long-standing problems will finally be resolved.
Thank you for taking the time to read this, and I would also appreciate hearing from other CWP users who may have experienced similar issues.
Best regards to everyone in the forum.
Recent Posts