Jump to content

STECHUSA

Retired Forum Member
  • Posts

    16
  • Joined

  • Last visited

Everything posted by STECHUSA

  1. Can anyone confirm if this is fixed in v3.2.2? I am unable to test my beta install as I have run out of Trial licenses to use for testing, and do not want to upgrade my production copy if this is still a problem. Thanks.
  2. Matt, I do not receive any errors at all while checking out. The only problem is that the automatic account creation script does not seem to be running right after the invoice is paid. I checked the invoices they are all marked as paid, and the invoice email went out. If I manually activate the account it gets set-up. Here is the activity log for both v3.1.2 and v3.2.1 not sure if it will help or not: v3.1.2 (working) 07/23/2007 15:43 New Order Placed (Order ID: 37) 07/23/2007 15:43 CRON JOB: Created Invoice (ID: 29 - User ID: 0000000035) 07/23/2007 15:43 Email Sent to Test Client (Customer Invoice) 07/23/2007 15:43 Invoice #29 Automatically Marked Paid Using Account Credit 07/23/2007 15:43 Invoice Marked Paid (ID: 29) 07/23/2007 15:43 Email Sent to Test Client (Invoice Payment Confirmation) 07/23/2007 15:43 Automatic Account Setup on First Payment Successful (Hosting Account ID: 0000000054) 07/23/2007 15:43 Email Sent to Test Client (New Account Information) 07/23/2007 15:43 Updated Next Due Date for Account (Hosting ID: 0000000054) 07/23/2007 15:43 Email Sent to Test Client (Order Confirmation) v3.2.1 (not working) 07/23/2007 15:53 New Order Placed (Order ID: 6) 07/23/2007 15:53 Created Invoice (ID: 4 - User ID: 0000000001) 07/23/2007 15:53 Email Sent to Test Client (Customer Invoice) 07/23/2007 15:53 Invoice #4 Automatically Marked Paid Using Account Credit 07/23/2007 15:53 Invoice Marked Paid (ID: 4) 07/23/2007 15:53 Email Sent to Test Client (Invoice Payment Confirmation) 07/23/2007 15:53 Updated Next Due Date for Account (Hosting ID: 0000000004) 07/23/2007 15:53 Email Sent to Test Client (Order Confirmation) As you can see from the above, the Automatic Account Setup is not even being called in v3.2.1. Let me know if you would like to see anything else.
  3. Every one of our WHM packages include capitals, spaces, underscores, and hyphens. The packages were all set-up automatically using the 'After first payment' terms, in v3.1.2 with no problems. However, after doing a test on v3.2.1 I find that the exact same configuration does not automatically set-up the account as before. The order is set to Paid, and the status is set to Pending. The invoices are generated as normal but the automatic set-up does not occur, I have to manually activate the account.
  4. Hello ramystyle, If you are looking for another whois server to check from, you could use: whois.verisign-grs.com. The domain not found line is: No match for domain Hope it helps.
  5. Hey joweb, There seems to be a coding error in the following code: $client_query = "SELECT * FROM tblknowledgebase ORDER BY views LIMIT 10"; If you use the code below instead of the above, you should get the desired result: $client_query = "SELECT * FROM tblknowledgebase ORDER BY views DESC LIMIT 10"; skshost, perhaps you can update your original post to include the fix?
  6. You are welcome. Also welcome to the forums.
  7. Hello creatureserver, You can change how the date is displayed by going to the Admin section of your WHMCS installation, and then loading up the General Configuration page, and changing the Date Format option under the Localisation tab. Hope that was what you were looking for.
  8. Very nice looking template, skshost. Kudos.
  9. I also use notepad++ for all my development. Very nice editor that is light on the resources, and is very useful.
  10. Hello, I would like to post a bug report for the Recurring Income report, as seen on my WHMCS 3.1.2 installation. I noticed when the Product Addons are being listed that the name of the Product Addons would always be the last displayed Product / Service. To fix this I changed the $reportdata["tablevalues"] array for the product addons from $reportdata["tablevalues"][] = array("[i]$groupname[/i] $productname",$CONFIG["CurrencySymbol"]."$monthly",$CONFIG["CurrencySymbol"]."$quarterly",$CONFIG["CurrencySymbol"]."$semiannually",$CONFIG["CurrencySymbol"]."$annually",$CONFIG["CurrencySymbol"]."$servertotal"); To $reportdata["tablevalues"][] = array("$name",$CONFIG["CurrencySymbol"]."$monthly",$CONFIG["CurrencySymbol"]."$quarterly",$CONFIG["CurrencySymbol"]."$semiannually",$CONFIG["CurrencySymbol"]."$annually",$CONFIG["CurrencySymbol"]."$servertotal"); The problem is in the first part section of the array(), where $product_name and $groupname were being referenced instead of $name which is what is used for the product addons. I also made a few other improvements to the Recurring Income report as well that increases the overall readability when there are many different products set up, by breaking up the groups a bit more. Matt, If you would be interested in seeing them let me know and I'll send you my recurring_income.php.
  11. Hello, I have a question regarding the Subscription Invoice Receipts feature under the General Configuration for WHMCS. When checked does the Invoice get sent out to the customer, or is it just generated and stored under the Invoices tab for that customer? And if it does get sent out is there a way to just have it generate and then get stored in the Invoices tab, so that the customer can view the invoice later if they log in to WHMCS? Thanks,
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated