HostingBegins
Retired Forum Member-
Posts
38 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by HostingBegins
-
Fantastic work, love the design.
-
Thanks mate for your help.
-
Thanks John So why does it say, Auto Activate, and send Welcome Email on payment ?? Very confusing. Thanks
-
Hi All. I wanted to see if anyone else is having the same problem I am. I use the addon feature to allow customer to add extra features to there hosting product. I have this set to auto activate, with a custom made email. What happens is a customer signs up, and adds a addon, for example a Addon Domain. They then complete the order, and pay, and get the email that I created for the addon feature. The account is not auto activated as we check new orders before activating them. When the account is created, the addon is not added. Even if a customer adds the addon after there hosting account is activated. I guess I am just trying to work out the point in this feature, if it never adds the addon. There is no way of getting this to activate on the customers account, and you have to go in to WHM to add the addon feature. Does anyone else use the feature ? and are you having the same problems. Thanks.
-
Thank you John, That seem to work.
-
Hello Is it just me or is this happening to everyone ? When an account gets suspended for none payment of invoice, and then the customer pays the invoice the account use to get Un-suspended! This no longer happen in version 4.1.1 ? Any ideas? Thank you
-
New WHMCS Template Website
HostingBegins replied to SiteSeal-Developer's topic in Commercial Modules and Addons
Hey Good luck with this, from what I am seeing, you have put a lot of time and effect in to this project. I wish you the very best of luck. I'll keep an eye open for when your site opens. Great stuff. -
Hello All. I want to work out how this works.? " Additional Mass Mail Filter Options – the mass mail filter options have been extended to include client groups, language and custom fields. The custom field filters mean you can now easily create a “Subscribe to Newsletter” and/or “Subscribe to Notifications” checkbox in order to send mailings only to those users who have agreed to them. And the ability to select multiple criteria at a time allow for more fine tuned emailing to a wider range of clients in one go. " I have a few customer who simply do not want to recieve emails for ( Special offers - News ) and they just want emails for invoices, tickets and so on. I looked in the forum and Documentation, but can not find any imformation on this. Also would the customer be able to select to not recieve these ( Promo ) emails from there clients area ? Thanks for any help.
-
Had the same problem Quad Core 2.5GHz - Total of 8 Processor Intel® Xeon® CPU 4gb Ram I have never seen this before on any of my servers. But I am sure Matt is coming up with something to avoid this problem again. I also run AWBS with another business, and we had no access to domains yesterday, but did not AWBS did not course any server problems at all. Thanks Rich
-
Anyone having Difficulty With .co.uk from ENOM?
HostingBegins replied to pacwebhosting's topic in Using WHMCS
Hi It started again for me yesterday, after trying different things it ended up being the post code. -
Anyone having Difficulty With .co.uk from ENOM?
HostingBegins replied to pacwebhosting's topic in Using WHMCS
Hi I found the problem. The post code needs to be like this NR1 4LB and NOT like this NR14LB After changing this on a couple fo UK domain names, bingo it works. Hope it works for others. -
Hi Everyone has there own view, and this is fine. Im pleased with the new version. Love the fact that many bugs are fixed, and a few new features. Bug fixes have to be the most important part for me, I don't want to see another Modern bill, or WHM AP In my option, Matt and the team are doing a great job.
-
Thanks Not working for me, and others I have spoke to, it changes something, but the password never works after changing. Odd.
-
Hi This feature does not seem to work anyway, even though for me WHMCS say password has been changed. The new password never works. So has to be done via WHM. Would be nice to see this fixed?
-
Hi Nick Here you go: ------------------------------------------------------------ Line: 279 Char: 15 Error could not get the display property, invalid argument. Code: 0 ------------------------------------------------------------
-
Hi Any one get a java error with this mod? I am seing the yellow (!) "done but with error on page" Using 1.3 version of the to do list mod. Thanks
-
Add "Upcoming Domain Renewals" to client area
HostingBegins replied to RPS's topic in Third Party Add-ons
Many thanks for this, makes thing much clearer for my clients. Appreciated. Thanks -
Hello Yes I would like to see this if possible please, get orders from customers who already have orders with me, and these are marked as fraud. Thanks
-
Hi Thanks for that, I no longer get a blank page. Ok can you explain what this code does? does it create a new affiliate in idev? or just reward ? Sorry little confused. Thanks again
-
Hi I have tested this a couple of times, but get a blank page at the end of the checkout? This is the full code for the hook file. <?php /* ********************** Action Hooks ********************** * Action hooks allow you to write your own PHP code that * * will run when specific actions occur in WHMCS. There * * is a function for each action that supports hooks. The * * variables avaible in a specific function are listed in * * the comments for that function. Invalid code here will * * will cause WHMCS to fail so ensure your code is valid. * ********************************************************** */ define("ACTIONHOOKSINC",true); function actionhook_ClientSignup($vars) { # This function runs when a new user signs up through the shopping cart or registration page # $vars["ID"] # $vars["FirstName"] # $vars["LastName"] # $vars["CompanyName"] # $vars["Email"] # $vars["Address1"] # $vars["Address2"] # $vars["City"] # $vars["State"] # $vars["Postcode"] # $vars["Country"] # $vars["PhoneNumber"] # $vars["Password"] } function actionhook_ShoppingCartCheckout($vars) { # This function runs when the user checks out using the shopping cart # $vars["OrderID"] - Order ID Number # $vars["OrderNumber"] - 10 Digit Order Number # $vars["InvoiceID"] - Invoice ID Number # $vars["Products"] - Array of Product IDs from Order # $vars["Addons"] - Array of Addon IDs from Order # $vars["Domains"] - Array of Domain IDs from Order } function actionhook_InvoicePaid($vars) { # This function runs when an invoice is fully paid and therefore the services renewed # $vars["InvoiceID"] } function actionhook_ShoppingCartCheckout($vars) { # This function runs when the user checks out using the shopping cart $orderid = $vars["OrderID"]; $idev_query = mysql_query("select amount from tblorders WHERE id='$orderid'"); $idev_query = mysql_fetch_array($idev_query); $idev_saleamt = $idev_query['amount']; $idev_ip = $_SERVER['REMOTE_ADDR']; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.hostingbegins.net/affiliates/sale.php?profile=33&idev_saleamt=$idev_saleamt&ide v_ordernum=$orderid&ip_address=$idev_ip"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_exec($ch); curl_close($ch); } ?> Any ideas ? Thanks again Richy
-
Thanks mate, I will give this a try now. Appreciate this. Thanks Richy
-
Hi Thanks for that. I have placed the following code to the actionhook.php file in the include folder. Should this create a new affiliate for any new orders ? I'm a little confused? This is the code I added. $idev_query = mysql_query("select amount from tblorders WHERE id='$orderid'"); $idev_query = mysql_fetch_array($idev_query); $idev_saleamt = $idev_query['amount']; $site_url = "http://www.yourdomain.com/affiliates/sale.php?idev_saleamt=$idev_saleamt&idev_ordernum=$orderid"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $site_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 100); $result = curl_exec($ch); curl_close($ch); - I editted yourdomain to my idev domain name. Thanks for any help.
-
Hi mm1250 Thank for your reply. Hmm good question, I think I am going for the cart system as it seems a little easier for end users to use. Thanks Richy
