Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
This is used as their bug report form:
https://control-webpanel.com/contact

I would open a support ticket with them. I will be doing a migration soon and see if I can replicate your issue or if it goes smoothly.

Ok thanks , I will wait your test migration .
By the way there is another issue I think it is the same error as I reported see:
https://forum.centos-webpanel.com/migration-from-other-control-panels/cwp-migration-failed-in-file-transfer/
62
Nginx / Re: Restrict access to a cwp_service
« Last post by ppalma8 on March 29, 2025, 12:48:12 PM »
Sorry I just read your post again so with this conf file Nginx will apply the apache directives:

cwp_services.conf

Is this necessary? or I can just continue with my Nginx conf to filter i.p access to certain directories / urls ?

Thanks, however I always find Apache Directives get ignored when running Nginx in CWP .

What am I missing that means the apache directives don't work, are you running Nginx ?

(...)
Is there a better way to do this using CWP ?

Create a file /usr/local/cwpsrv/conf/security.conf with the following content:

Code: [Select]
    #...
    satisfy any;

    allow 192.168.1.1/24;
    allow 127.0.0.1;
    deny  all;

    auth_basic           "Restricted access";
    auth_basic_user_file conf/ht_passwd;
Choose yours IP adresses, and/or define additional authentication on cwpsrv.

Create a file '/usr/local/cwpsrv/conf/ht_passwd' with your passwords:

Code: [Select]
# /usr/local/apache/bin/htpasswd /usr/local/cwpsrv/conf/ht_passwd

In file '/usr/local/cwpsrv/conf/cwp_services.conf', change your directive to:
Code: [Select]
location /pma {
    root /usr/local/cwpsrv/var/services;
    index  index.html index.htm index.php;
    include /usr/local/cwpsrv/conf/security.conf;
    (...)
}

...and restart cwp on the panel, or with the command:

Code: [Select]
# /scripts/restart_cwpsrv
Regards,
Netino
63
This is used as their bug report form:
https://control-webpanel.com/contact

I would open a support ticket with them. I will be doing a migration soon and see if I can replicate your issue or if it goes smoothly.
64
If that is a BUG so what should be done ?? and where are CWP team members???
65
Installation / Re: Hidden processes...
« Last post by changlee on March 29, 2025, 09:55:31 AM »
What exactly are the steps you follow?
66
Yes, you are probably uncovering a bug, or at least something that doesn't cover all conditionals.
are you obfuscating the username='user_name' part of the log you posted?
and what is the contents of accounts.ini file?

Thanks for your replay , if you need any logs let me know.
67

Quote
Yes, you are probably uncovering a bug, or at least something that doesn't cover all conditionals.
are you obfuscating the username='user_name' part of the log you posted?
and what is the contents of accounts.ini file?

accounts.ini

user_name="11"
68
Quote
Yes, you are probably uncovering a bug, or at least something that doesn't cover all conditionals.
are you obfuscating the username='user_name' part of the log you posted?
and what is the contents of accounts.ini file?

Yes indeed I obfuscate the username='user_name'
69
Yes, you are probably uncovering a bug, or at least something that doesn't cover all conditionals.
are you obfuscating the username='user_name' part of the log you posted?
and what is the contents of accounts.ini file?
70
No can help??? OK maybe this is a BUG .
Pages: 1 ... 5 6 [7] 8 9 10