-
Posts
23 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by Abdelkarim
-
Como no WebPros y sus porquerias y falta de etica metiendo por todos los lados su porqueria.
-
I wanted to know if WHMCS is now ready to use The Payment Intents API instead of API Sources. I get email from Stripe: I think WHMCS 8.10.1 is valid. It is Ok?
-
Hello. I can't find a way for card payments through Stripe to stop recurring. Currently, when a user pays for a via Stripe service, automatically, at each due date, the system tries to charge it to their account. I do not want this type of action, due to the dangerous nature of the issue, given the European regulations on consumer protection. Is it possible to deactivate the automatic payment in payment with Stripe cards?
-
Hi. WHMCS stopped sending emails when an invoice is paid. Verified the connection of the account and the server. Also, it sends proformas and other emails. Verified the Invoice Payment Consignaturetion template. It's active. Configuration -> General settings -> Check to send PDF versions of invoices along with invoice emails is checked Invoice checked to Send Email Check to Send Confirmation Email But the system only sends the proforma invoices and does not send the paid ones. I see the doc for debug problem but don't see anything. I checked logs on my own mail server, and is simple. WHMCS not try send email. Not error on communication. Onley stop action. Best regards.
-
I can't find where to configure the domain add-ons made time
Abdelkarim replied to Abdelkarim's topic in Using WHMCS
A lot of thanks. work fine. -
``` UPDATE tblproductgroups SET id=35 WHERE id=1; UPDATE tblproducts SET gid=35 WHERE gid=1; UPDATE tblproducts_slugs SET group_id=35 WHERE group_id=1; UPDATE tblproductgroups SET id=1 WHERE id=27; UPDATE tblproducts SET gid=1 WHERE gid=27; UPDATE tblproducts_slugs SET group_id=1 WHERE group_id=27; ``` And working
-
I have a serious problem with a recently purchased template. Right now I don't have time to wait for your painful support, or to turn back. For this reason I need to change the id number of a product group. I have two groups of Hosting products. An old one with no products currently in use (id 1) Another current one that is the one that I want to convert to id=1 I have seen the following after doing an analysis of the tables. tblproductgroup id tblproducts gid is associated to tblproductgroup.id tblproducts_slug group_id is associated to tblproductgroup.id tblproductslinks gid is associated to tblproductgroup.id tblproductconfigoptions gid is associated to tblproductgroup.id I only want to exchange the id, since due to the bad programming of the template, I have to do it to avoid a tremendous UX problem, and the fastest way is for the current Hosting group to come out first in the drop-down list. Is something left in the pipeline before executing the sql that will change the corresponding id? Doubts tblproducts_slugs_tracking slug_id ??? tblproduct.id ? Best regrads.
-
Hi. I have a problem with a string that I can't translate, and I can't find the reason. The string appears during the domain registration process. Actually it should only appear in any (fr, es, etc) that require said field. I have looked in the language files and also in the resources/domains/additionalfields.php I have even added in this last one "LangVar" => "vatnumbermissing" and added this to the override of my language. $_LANG['vatnumbermissing'] = "NIF/NIE/IVA number"; Any... <div class="row"> <div class="col-md-4">VAT Number:</div> <div class="col-md-8"><input type="text" name="domainfield[0][0]" value="" size="50" onblur="addToCart();" class="form-control input-250 input-inline" id="inputDomainfield[0][0]"></div> </div> Desperate. I wrote also to support of Registrar (I use his module DonDominio)
-
After changes (I think are change on 8.X) I'm lost Some clients want to give access to their jobs according to their specialty. Technical support Bills But when I went to check a client, he told me that, for example, a client has created two Users. One technician with access to support tickets, see services, etc. Another clerk to get copies of the emails and to be able to pay for them. After doing a series of tests, I see that no emails arrive. Is it a bad function or is it an error in my understanding of the operation? Is there a plugin that allows greater control of the access management of the users of the clients?
-
After update to this version get a big problem When I try to insert image on email can add image with button "Insert/edit image" or with menu "Insert > Image" Also if I try to edit code on message, and put code of image. After click ok for close code message, on WYSWYG, I don't see image. I open another time code,.... ooops. Code for image is out. Clean.
-
Value of {$invoice_payment_method}
Abdelkarim replied to Abdelkarim's topic in Admin & Configuration Questions
A lot of thanks to two... Sorry for my poor english, But annotation.. Is not my code... is MAIL TEMPLATE code of WHMCS. I don't made code similar to whmcs ... I get hives seeing that code Bets regards. -
Value of {$invoice_payment_method}
Abdelkarim replied to Abdelkarim's topic in Admin & Configuration Questions
Hi Thanks @brian! Well.. I like you reply with links but I don't see solution and think is bet reply a question directly. Is module ro dsiplayname? @Kian context effectively is email template... Thanks to two... -
Hi. What is value is {$invoice_payment_method} ? module or displayname? With Api I get below "paymentmethod" => array:5 [ 0 => array:2 [ "module" => "banktransfer" "displayname" => "Transferencia Bancaria" ] 1 => array:2 [ "module" => "redsys" "displayname" => "Bankia (Tarjetas/IuPay)" ] 2 => array:2 [ "module" => "paypal" "displayname" => "PayPal" ] 3 => array:2 [ "module" => "stripe" "displayname" => "Stripe (otras tarjetas)" ] 4 => array:2 [ "module" => "directdebit" "displayname" => "Domiciliación Bancaria" ] Best regards
-
Hi. reCaptcha v2 y invisible reCaptcha don't work in China. Other systema such, Drupla, Joomla, etc. has patchs for work around of problem with Google in china. Please, update reCaptcha for work for china. Bye.
-
An error in understanding the mechanism of sending the parameters, using headers instead of a correct form_params since it is a POST method Correct code is $response = $client->post($this->url.self::ENDPOINT, [ 'form_params' => [ 'action' => 'GetClients', 'identifier' => $this->username, 'secret' => $this->password, 'accesskey' => $this->accesskey, 'responsetype' => self::RESPONSE_TYPE ] ]);
-
Hi. I'm develop acces to my whcms via API, but I like use Access Control with Access Key according to Developer Docmentacion Steeps WHMCS 7.6.1 PHP 7.2 Edit my configuration.php and add $api_access_key = 'SECRET_KEY_32_CHAR_ASCII127'; I'm using Guzzle 6 for my develop. $response = $client->get($this->url.self::ENDPOINT, [ 'headers' => [ 'action' => 'GetClients', 'username' => $this->username, // My API credential identifier 'password' => $this->password, // My API credentoal secret 'accesskey' => $this->accesskey, // Acces key on configuration.php 'responsetype' => self::RESPONSE_TYPE // json ] ]); But when I execute code get exception GuzzleHttp\Exception\ClientException : Client error: `GET https://castris.com/intranet/includes/api.php` resulted in a `403 Forbidden` response: result=error;message=Invalid IP 2.137.134.24 What is wrong?
