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 ... 37 38 [39] 40 41 ... 43
571
CentOS 7 Problems / Re: Control panel test page
« on: April 25, 2018, 11:13:11 AM »
check the creation of vhost and how the documentroot was created for this account

572
MySQL / Re: CWP to CWP Migration
« on: April 25, 2018, 10:57:38 AM »
which says the error log for migration

573
I recommend that you check the file /etc/passwd and /etc/shadow is [osible that you find the problem there, please let me know how it was after this

574
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

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

576
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/

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

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

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

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

581
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

582
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

584
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

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

Pages: 1 ... 37 38 [39] 40 41 ... 43