Show Posts

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.


Messages - josemnunez

Pages: 1 ... 39 40 [41] 42 43 ... 45
601
MySQL / Re: CWP to CWP Migration
« on: April 25, 2018, 10:57:38 AM »
which says the error log for migration

602
Information / Re: Migrate from Cpanel to CWP
« on: April 25, 2018, 10:49:42 AM »
I would not recommend that option, since there may be many associated problems, the time it would take to solve these would be much more than installing CWP on a new server and migrating the accounts

603
CentOS 7 Problems / Re: Control panel test page
« on: April 25, 2018, 10:46:17 AM »
could be a little clearer, please

604
MySQL / Re: CWP to CWP Migration
« on: April 23, 2018, 01:50:37 PM »
Please try to execute the following command by the console of your source server and check the output

Code: [Select]
ionice -c 3 nice -n +19 /usr/bin/rsync -avz -e 'ssh -p 22202 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=quiet -i /usr/local/cwp/.conf/tranf_cwp.rsa' /var/vmail/balkantrips.eu/ root@94.176.233.234:/var/vmail/balkantrips.eu/

605
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)

606
MySQL / Re: CWP to CWP Migration
« on: April 23, 2018, 10:05:44 AM »
What do the records of the transfer tell you?

607
Addons / Re: Wordpress "addon"?
« on: April 09, 2018, 01:34:54 PM »
It is in the user panel, at the end of it

608
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 ...!

609
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

610
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

612
New Modules / Re: WHMCS Module Error
« on: March 26, 2018, 11:38:48 PM »
Try to review and download this new module

http://wiki.centos-webpanel.com/whmcs-module-for-cwp-api

613
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);
}

614
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:
Code: [Select]
/usr/local/cwpsrv/var/services/users/cwp_theme/design/ with another name

2. 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 work

After you work, let me know how it went, pls

615
have you tried to follow these steps

http://wiki.centos-webpanel.com/whmcs-module-for-cwp-api


Pages: 1 ... 39 40 [41] 42 43 ... 45