Jump to content

vePortal

Retired Forum Member
  • Posts

    20
  • Joined

  • Last visited

About vePortal

vePortal's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Looks good i like the right hand navigation menu
  2. This looks absolutely amazing! Probably the best template i've ever seen on a WHMCS site!.
  3. Tip: When using it add the following: print '<pre>'; print_r($clientdetails); print '</pre>'; Then try to use the module (create button) and it will print an array on the page of all information held in that array. I would assume your looking for ($clientdetails["uid"]) (UserID) OR failing that add this: $getuid = mysql_query("SELECT * FROM tblclients WHERE email = '".$clientdetails["email"]."'"); $u = mysql_fetch_array($getuid); $clientdetails["userid"]=$u["id"]; (May need modification as untested).
  4. Why not make this a plugin for use the the templates, in the "homepage.tpl" file you could add a nicely styled section below the contents. {php} $result = mysql_query("SELECT * FROM tblpromotions") or die(mysql_error()); echo "<table border='0' style='color: #FFF'>"; echo "<tr> <th>Promocode</th> <th>Discount</th> <th>Expiration</th> </tr>"; while($row = mysql_fetch_array( $result )) { echo "<tr><td>"; echo $row['code']; echo "</td><td>"; echo $row['value']; echo $row['type']; echo "</td><td>"; echo $row['expirationdate']; echo "</td></tr>"; } {/php} It would make a nice plugin and would probably be used by many hosts!
  5. It was indeed and has recently been upgraded to v2.0 rc2 Now offering an extensively wider range of vePortal Services directly from WHMCS.
  6. Lots of modifications went into our client area: https://clients.veportal.com Just some of our modifications: - Custom Style, Themed around the WHMCS v4 Theme, - Order products in bulk for Clients labeled "Distributors" (Hijack & Modify Sessions used by WHM:CS). - Free Trial Ordering Links - Resale Discount Products for clients labeled "Resellers" - License Validation Checks - Client Product Listings to show Licenses with Licensed IP/Domain etc (Using Modified Licensing Module). - API Access for Large Distrubrutors. There are thousands of modifications to the vePortal WHMCS (Far too many to list). But it just shows how incredibly versatile WHMCS is. Even for our line of business where our products are barely covered by WHMCS.
  7. Style problem fixed by the way it was something todo with "Web 2.0 Cart" i swapped to the older "Cart" and it works perfectly fine now Thanks anyway.
  8. Yeah we have just configured global load balancing & GeoIP Location so the SSL certificates havnt been installed/configured on our other servers yet.
  9. Hi all, I've just finished developing this theme for my WHMCS: https://clients.veportal.com This is perfect and how i want it, but as soon as you click "Order" and it goes to "cart.php" (Order) its asif it loads a whole new CSS file? or something in there is causing it to incur major problems that i cannot explain, from what i can find the entire site is perfect other than this one file. Any help apreciated!
  10. Heres the problem, I'm working on the more advanced version of the WHMCS/vePortal Module, and i've come to the "Package Upgrade" section, however im having problems with the fields, When a client requests an upgrade its done BEFORE its accepted (in WHMCS) and therfore the "Custom Fields" for the old product are lost. Is there a way i can link the custom fields from Product A to Product B so they keep the same "$relid" variable in the SQL Database, In turn making sure the data isn't blanked when an upgrade is processed?
  11. you could edit the cart template to include a code like... {php} if(!isset($_SESSION['username]){die('You must be logged in to view');} }else{ //rest of page here } {/php} That'd work, but nobody would be able to order without logging in first then.
  12. It's not that i'm trusting it's for the corporate accounts, some of my larger customers who buy software licenses i.e. datacentres etc are complaining about requiring so many subscriptions etc, so id like to be able to give them a single monthly bill for each.
  13. Hi all, I am a software developer and have developed a licensing module that adds on to WHMCS, however i am having problems collecting my payments. I need a method of collecting bulk payments, i.e. a customer is allowed to order as many products as they like, no charge "Today" but at a set date per month they are billed for all products used? Is this possible? if so how?
×
×
  • 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