This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
556
CentOS 7 Problems / Re: CWP 7 WHMCS API error
« on: April 23, 2018, 12:53:13 PM »
and what happens if you use any other option (Change password, Suspend, etc)
557
MySQL / Re: CWP to CWP Migration
« on: April 23, 2018, 10:05:44 AM »
What do the records of the transfer tell you?
558
Addons / Re: Wordpress "addon"?
« on: April 09, 2018, 01:34:54 PM »
It is in the user panel, at the end of it
559
MySQL / Re: Database name length cwp.user
« on: April 04, 2018, 02:33:23 PM »
As far as I understand this can not be changed ...!
560
Suggestions / Re: CWP create index.html when I add a (sub)domain.
« on: April 04, 2018, 07:36:55 AM »
I think this was taken into account in your last update
561
New Modules / Re: WHMCS Module Error
« on: March 29, 2018, 01:07:15 PM »
Check the ip that I use in your ad administrator, this IP must be the same one of the server where your WHMCS is located
564
CentOS 7 Problems / Re: CWP7.php and WHMCS 7 Change Package not working
« on: March 22, 2018, 07:05:01 AM »
Something like this should work
Code: [Select]
function cwp7_ChangePackage($params){
$postvars = array('key' => $params["serveraccesshash"],'acction' => 'udp','user' => $params["username"], 'package' =>$params["configoption1"]);
$postdata = http_build_query($postvars);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://'. $params["serverhostname"] . ':2304/v1/account');
curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
$answer = curl_exec($curl);
logModuleCall('cwpwhmcs','cwp7_ChangePackage','https://' . $params["serverhostname"] . ':2304/v1/account'.$postdata,$answer);
}
565
Information / Re: Customization of Panel Logo and User Login Logo
« on: March 19, 2018, 10:15:15 AM »
1. Make a copy of the folder:
2. You go to theme manager and define it as default
3. Change the logos and the images you want in the
After you work, let me know how it went, pls
Code: [Select]
/usr/local/cwpsrv/var/services/users/cwp_theme/design/
with another name2. You go to theme manager and define it as default
3. Change the logos and the images you want in the
Code: [Select]
/usr/local/cwpsrv/var/services/users/cwp_theme/design/img/
folder with this you will prevent the CWP updates from replacing your workAfter you work, let me know how it went, pls
566
Installation / Re: CWP account API error in creation a new account in WHMCS
« on: March 17, 2018, 10:25:26 PM »567
Installation / Re: sh: /scripts/update_cwp: No such file or directory
« on: March 17, 2018, 09:44:45 PM »
Are you running the command from the location / root /?
568
CentOS 7 Problems / Re: Account Transfer Server (CWP -> CWP) : Error in API
« on: March 15, 2018, 05:42:17 PM »
What do the logs indicate?
You can see it by File Manager -> CWP-> Log viewer
You can see it by File Manager -> CWP-> Log viewer
569
CentOS-WebPanel Bugs / Re: Problem with creation FTP user
« on: March 15, 2018, 12:14:13 AM »
I understand that a version that contains this correction is already released, to update your server execute the following
Code: [Select]
sh /script/update_cwp
570
FTP / Re: Prevent user from create ftp account
« on: March 14, 2018, 10:52:27 PM »
regards
You can block an FTP account module for one or more accounts and even per package type from the admin module
CWP Settings -> Themes and Languajes -> Feature Manager tab
There, place a name to the rule, to what type you will apply it (Accounts or Packages) and choose the module that the final client will have access to
Let us know if this was your help
You can block an FTP account module for one or more accounts and even per package type from the admin module
CWP Settings -> Themes and Languajes -> Feature Manager tab
There, place a name to the rule, to what type you will apply it (Accounts or Packages) and choose the module that the final client will have access to
Let us know if this was your help