icepick
Retired Forum Member-
Posts
49 -
Joined
-
Last visited
About icepick

icepick's Achievements
Member (2/3)
0
Reputation
-
Single Page Order Form: No error message for domains
icepick replied to Jordan's topic in Troubleshooting Issues
I also notice that when transferring a domain it no longer asks for a domain secret, this is both for dericti and my own personal plugin. All I've changed in the templates is the header and footer. Barry -
Hi, I'd like to know what happens when I change a price of a product, (i.e. make it cheaper) when a discount is applied to it, will it update all customers prices? i.e. I charge $95 for server colocation Customer A pays $95 Customer B pays $65 (due to $30 discount voucher) I change the price of colocation to $85, will this update customer A & B and what would be the totals they pay then? Or are prices related to a customer static and only apply to new signups? If my desired result was for customer A to then be paying $85 and customer B to remain at $65 should I then also modify the discount?
-
Hi, I've searched the forums and was unable to find anything however may have missed it. IF a client sends part payment (say half) the system doesn't appear to email the user and notify them of the payment and the remaining balance. Is this possible? I selected to "Send a reminder" however the invoice sent to the user still shows the full total not the new total (minus what they've paid), any suggestions?
-
Agreed, if a client selects to pay by bank transfer it should send them bank details on the invoice.
-
Hi, I'm wondering if there is a way to bill a client for a once off service, i.e. it doesn't show up in their login, things I'd use this for is contract work and server reboots. I.e. they callup for assistance or a server reboot and I bill them once off, obviously each time they require our services. Cheers Barry
-
I think the problem may be related to a cookie of some sort. I'm having the same problem where I have the following issue: Login to WHMCS, add a user, add a service and click "Modify order", I then tick the 2 boxes so the user doesnt receive an order or invoice, when I click the submit it unticks the two boxes.... I've found a solution, you need to logout and log back in, this seems to refresh something in the backround which then allows you to go to "Order >> Add order" selecting the client from drop down, ticking the 2 boxes and clicking submit. From this time on, till you logout the 2 boxes will be ticket and work fine, however if using "Keep me logged in to logout" it still appears to forget the 2 tick boxes after a while, so a logout, log back in is required. No biggie as I know my way around it now, but maybe something to look into if you get bored
-
Add it to "Configurable Options" and it will do it.
-
and fees to 'withdraw' the funds?
-
One other thing, is google checkout much like paypal where the user has to signup or does it allow plain credit card processing and monthly billing? I'm in NZ so can't trial it but am wondering if I should wait for checkout in my country or signup with an alternative.
-
I was wondering what the fees for withdrawing your funds were, i.e. from taking it from your google acc to your standard acc were.
-
Here is a quick howto for freebsd users, there is probably an easier way but who cares... Create a file called uptime.c #include <stdio.h> #include <time.h> #include <sys/param.h> #include <sys/sysctl.h> int main() { time_t uptime; time_t now; size_t size; int mib[2]; struct timeval boottime; time(&now); size = sizeof(boottime); mib[0] = CTL_KERN; mib[1] = KERN_BOOTTIME; if (sysctl(mib, 2, &boottime, &size, NULL, 0) != -1) { uptime = now - boottime.tv_sec; printf("%d\n", uptime); } return 0; } Next compile the file. gcc -o uptime uptime.c Next edit the /status/index.php file and replace: $uptime = shell_exec("cut -d. -f1 /proc/uptime"); with: $uptime = shell_exec("/home/path/public_html/billing/status/uptime"); The above assumes you've put the 'uptime' file you compiled into /home/path/public_html/billing/status/uptime Fixed, I now have monitoring for freebsd servers [/code]
-
Basically I want to create clients with their services (domain, web, etc) without the system sending them messages, I used to select "PayPal Subscription" and this didn't send the user an invoice, I believe this is still the case. When clicking "Orders >> Add new order" it gives you a drop down box to select the client and 2 tick boxes with the options "Don't Send Order Confirmation Email" & "Don't Generate Invoice", If I tick these boxes and click "Continue"..... WEIRD I just did it while writing the steps I've done many times and it worked. Previously when clicking "Continue" it would untick the 2 boxes. Very strange. I guess, ignore the above.... Onto my next question, under admin, is there a way to select which 'order' form to use for admin interface, i.e. boxes rather than singalpage Lastly is it possible to have an extra section on the integration site which will allow me to have an order form which can be included in other sites, i.e. with just the order form, no header or footer. I'd like to create a few hosting company websites as subsidiaries of our company.
-
Already done that however the admin 'add order' doesnt use this template in the new version
-
Mine went well till I tried to migrate a customer to WHMCS, see problems at http://forums.whmcs.com/viewtopic.php?t=5295&highlight=order
-
Ok, so when I selected "Transfer Domain" I must have read things wrong because it said "Available for registration" which is obviously incorrect as the domain is available, however I ticked the box, entered the Domain Secret and continued, obviously just bad wording on this page for transferring. I did however find another bug (if it's a bug), if i create an order there is an option to "Don't Send Order Confirmation Email" & "Don't Generate Invoice" however if these settings are modified, when clicking update it removes the tick boxes which means the client is send an invoice.... I even tried selecting "Paypal Subscription" however the client still received the email. Would it be possible to go back to the old template?
