Quantcast
Channel: WHMCS Community Forums
Viewing all 13458 articles
Browse latest View live

Product feed

$
0
0
As well as my WordPress hosting site, I have another WordPress site in which I sell computers and accessories. The products are imported via an ftp data feed located within the same root directory and a WP-all-Import Pro plugin pulls the products on to the site through a url. Does anyone know of a module or whatever to feed the products into WHMCS?

UnBlockIp module stopped work from client area

$
0
0
Hi,

We are using UnBlockIp free addon module to unblock IP addresses. It was working fine until few days when it stopped to unblock IP addresses blocked on our latest added server and it stopped work from the client area. From the client area it doesn't unblock any IP address.

Version of UnBlockIp addon module is 1.91 and our WHMCS version is 5.3.14.

Can you please suggest me some fix or recommend some other module as alternative of UnBlockIp?

Thanks in advance.

Daily Cron Error

$
0
0
Hello,

I have been trying to figure out why my daily cron suddenly stopped working. It seems as though everything else is executing as it should, just not the daily cron.

I ran the cron in terminal and got this output:

Code:

Allowed memory size of 33554432 bytes exhausted (tried to allocate 4480 bytes) in /path/to/whmcs/vendor/composer/composer/src/Composer/Command/ShowCommand.php on line 114
I'm using PHP 5.6 with 356MB memory limit. Any ideas?

PayPal alternative

$
0
0
Hello,

I'm looking for a payment gateway (like PayPal, 2CO) etc which offers debit card so instead to withdraw my earnings to my Bank to withdraw them to Debit card.
I've account with Payoneer and got their debit card. The problem is that I can't withdraw money there (there was a trick before todo it but now does not works).

I know that using 2CO can withdraw money to Payoneer card but have bad experiance with them, even if it was 10 years ago.

Does anyonw knows any payment gateway which offers its own debit card?

Thank you
Chris
PS: I'm located outside USA. I'm mentioning it because I think that I found one but it was available only to US.

Disable CAPTCHA on domain checker only?

$
0
0
Hi there. I would like to disable captcha on the domain checker. However I would love to leave it enabled on the other places it shows up (e.g. login, etc).

I tried to modify the theme so that CAPTCHA is not displayed, but then it does not allow me to search. Has anyone solved this?

Custom Work Needed

$
0
0
Requesting help with uploading/adding/storing ID images properly to master record detail.

We sell memberships. We're making client ID Badges. This application requires that images be uploaded by the Client or Admin and saved to the clients record detail and or the Clients, "Contacts".

Example, (in a perfect word), the client is a family of 4 Ma, Pa and two kids. Ma creates her master record detail and buys four memberships. The family of four all need ID Badges hence 4 images.

It appears, and is this not the best approach? is that once Ma creates her record detail and buys the 4 products, she returns to her "Home Portal Page" and adds the additional 3 others information in "Contacts". Contact One might be Pa, contact two Son, contact three Son.

At the end of the day, sales are download into Excel, Client First Name, Last Name and Picture including all Clients "Contacts" info, First Name, Last Name and Picture.

Thank-you Developers for your consideration.

Best,

r

database connection fails after daily cron rus

$
0
0
Once daily cron runs, we get a "Critical Error Could not connect to the database" error. It lasts for about 2 minutes.

I have turned off backups and checked the activity log. The issue persists and there is nothing in the activity log that is helpful.

I suspect I need to increase some setting in MySQL but not sure what.

-Allan

WHMCS Developer required (US Based only)

$
0
0
Looking for a developer for custom WHMCS development. We need the following requirements:

1. US based - needs to be US based and responsive to emails
2. Familiar with the WHMCS API/order process
3. Available for future customization

Please reply to this thread with ways to contact.

htaccess being affected from whmcs

$
0
0
Hi,

The whmcs root domain is www.abc.com.
def.com is a Alias/parked domain.

We have setup a htaccess (outside root) to redirect
https://www.def.com
to
https://www.def.com/billing/cart.php...omain=register

We can see it is being redirected, however, due to some inbuilt htaccess in WHMCS, when it reached https://www.def.com/billing/cart.php...omain=register, it was redirected back to https://www.abc.com/billing/cart.php...omain=register, which is not what we want. Is there anyway we can stop that redirection from whmcs?

Use Existing Domain Error in Cart (version 7.2.2)

$
0
0
Could people please check what happens when you try to order a new hosting account for a domain already registered, (but with no hosting account) and select 'Use Existing Domain'.

All I get are Invalid Domain messages. On my own install, and on a clean install with six template and default cart.

Switching language in new custom pages does not work

$
0
0
Hello,

I tried to look arround before posting but it did not helped me.

I have created a new page named « games.php » where I do some sorts for custom queries and custom texts. But when it comes to change the language with the original language switcher, it does not work. I have to go back on the homepage, switch the language and return on games.php to see my changes.

In the header, I use those lines of code

Code:

<ul class="nav-lang">
  <li><a href="{$currentpagelinkback}language=english" data-lang="en"><img src="templates/{$template}/img/svg/english.svg" class="svg" alt="English" width="24" /> En</a></li>
  <li><a href="{$currentpagelinkback}language=french" data-lang="en"><img src="templates/{$template}/img/svg/french.svg" class="svg" alt="French" width="24" /> Fr</a></li>
  <li><a href="{$currentpagelinkback}language=german" data-lang="en"><img src="templates/{$template}/img/svg/german.svg" class="svg" alt="German" width="24" /> De</a></li>
</ul>

As I say, it works great on defaults .php pages. Here is my custom games.php code (Almost copied all the code explained on the main documentation -> https://developers.whmcs.com/advanced/creating-pages/ )
Code:

<?php
 
use WHMCS\Database\Capsule;
 
//define("CLIENTAREA", false);
//define("FORCESSL", false);
 
require("init.php");
 
$ca = new WHMCS_ClientArea();
 
$ca->setPageTitle("Our games");
 
$ca->addToBreadCrumb('index.php', Lang::trans('globalsystemname'));
$ca->addToBreadCrumb('games.php', 'Our games');
 
$ca->initPage();
 
//$ca->requireLogin(); // Uncomment this line to require a login to access this page
 
# To assign variables to the template system use the following syntax.
# These can then be referenced using {$variablename} in the template.


$games = array();

foreach (Capsule::table('tblproductgroups')->where('id', '>', '3')->where('hidden', '=', '0')->orderBy('order', 'asc')->get() as $group) {

        foreach (Capsule::table('tblproducts')->where('gid', '=', $group->id)->get() as $game) {

                $games[$group->id]['games'][] = $game;
               
        }

        $games[$group->id]['details'] = $group;
 

}

$ca->assign('games', $games);

Menu::addContext();
Menu::primarySidebar('announcementList');
Menu::secondarySidebar('announcementList');
 
# Define the template filename to be used without the .tpl extension

$ca->setTemplate('games');
 
$ca->output();

Support PIN Module / PIN Verification for chat or telephone

$
0
0
Hi,

the following module is useful for hosters which provide support via live chat or telephone. The client generates a PIN code to ensure that it is the actual account holder.
A further purpose would be that the customer gives his pin to a trust person who takes care of his request.

The PIN will expire after a given time frame. If the client generates a new PIN, the old PIN will be invalid.

At configuration you can specificate which employees have access to all generated pins. If an employee is not specificated he needs to use the search mask to check the pin. On success, the client will be shown.

If you are using WHMCS v6 or v7 you can make use of the new support PIN sidebar widget! At the module configuration you can also exactly specificate on which pages the sidebar widget should appear.

Compatbility: WHMCS v5, v6, v7 & PHP 5, PHP 7
Documentation and Screenshots
Orderlink

Regards.

Stop Clients Closing Tickets

$
0
0
Hi,

we all know situations where we dont want that the client closes the ticket and we forget about it. This module is the solution for it.

It is possible to specificate tickets which should not get closed by the client. This is useful when you create a ticket and you want ensure that he dont just close the ticket (e.g. abuse reports).

After installation a new button will appear on the ticket admin page where you can lock the ticket or unlock it again. When you lock the ticket, the customer will not be able to close the ticket.

Compatibility: WHMCS v6, v7 & PHP 5 + PHP 7
Documentation and Screenshots
Order Link

Bonus for long-term payments

$
0
0
Hi,

i believe we are all happy about long term payments. With this module, you can make billing cycles more attractive because the client will receive a free time extension to his service.

The bonus gets shown at order form and after paying, the customer gets a confirmation mail about his bonus.

Full Feature List
  • Bonus is shown during order process. After payment, client gets a mail which confirms that the next due date got updated.
  • Apply bonus for monthly, quarterly, semi-annually, annually, biennially and triennially payments.
  • Apply whole WHMCS Product Groups for the bonus.
  • Exclude single WHMCS Product IDs from the allowed groups.
  • Configurate bonus for single WHMCS Product IDs.
  • Bonus can be defined in days and months.
  • Exclude Client Product IDs from bonus.
  • Exclude Clients from bonus.
  • Define a date from which order date the bonus should be active (allows you to apply the bonus only for new orders).
  • Multilanguage (Order process, Mails).


Compatibility: WHMCS v6, v7 & PHP 5 + PHP 7
Documentation and Screenshots
Order Link
Attached Images

How to make changes in cart.php

$
0
0
Hello,

I want to make a change in the checkout page.

At the payment : Credit card - Paypal - IDeal : I want to ad an image.

Check the image included.

Can someone advise how to do this?
Attached Images

WHMCS 7.2.1 timeout when using language override

$
0
0
Today I continued working on my custom language override file. For some reason this makes WHMCS go crazy when you swap language. I double checked the file and did not find any syntax errors. What could cause this issue? Is there a maximum number of override WHMCS can handle? It is about 30 KB / 400 lines. Should overrides file have the same order as the parent file? If so is there a way to auto-arrange this?

dutch.php.txt

edit: I notice that the txt is set to UNIX EOL whereas the default PHP are apparently set to Windows. I changed the EOL to Windows and this resulted in a new line appearing between every variable. Now the website is working again. When I removed the empty lines it broke again.

Not sure how to get this file right...
Attached Files

SSL certificate was not detected on my domain

How to assign server to product/services

$
0
0
In client profile, under product/services there is a servers dropdown. I have servers defined in Setup > Products/Services > Servers however these servers do not appear in the client profile area as options.

I know that I am missing something, but after reading through reams of documents, I still can't find it.

What am I missing?

-Allan

Cart as homepage

$
0
0
Hello,

Is there anyway to set cart.php as langing page (homepage) in my site?

Thank you
Chris

Licensing Addon Trial Period

$
0
0
Does anyone know if the licensing addon has a trial period.
I would like to install it and test to see if it can work for me before buying the module.
Viewing all 13458 articles
Browse latest View live