-
Posts
9,522 -
Joined
-
Last visited
-
Days Won
186
Everything posted by Michael
-
There's a sidebar on the Wizard where you can click empty cart, there's also a red button at the final bit. Oh editing, sorry you can see them next to the red button on the summary.
-
Transaction is recorded when you get money... if there's invoices it's credit: http://www.investopedia.com/terms/c/creditbalance.asp so there's a transaction already and they can use that credit on their account to pay invoices.
-
You can't unless you make a special order form and domain packages for when a client orders it they get the domain free, or the client orders the domain and then picks a hosting package, or they skips the domains and just orders hosting.
-
You can follow this tutorial: How can I sell Domains?
-
Good find. The HTML version has: Hi {contact.first_name}, We have successfully processed payment with your {card_type}, ending in {last_four}. Please keep this email as a receipt for your records. Amount: {amount} Transaction Number: {response.transaction_id} The charge will be listed as being from {company.name} on your credit card statement. Thank you for your business! However the Text version has: Hi {contact.first_name}, We have successfully processed payment with your {card_type}, ending in {last_four}. Please keep this email as a receipt for your records. Amount: {amount} Transaction Number: {response.transaction_id} The charge will be listed as being from {company_name} on your credit card statement. Thank you for your business! The tags show: Available Tags {contact.first_name} {contact.last_name} {company.name} {response.transaction_id} {amount} {card_type} {last_four} So it should be fixed in the Text version which shows up on the Mail logs.
-
He said did you change the precision first and then a new invoice total failed to be correct, or did you change it and then went back to a invoice already generated before you changed it.
-
Ah so only the credit? that should work but I've never tried it
-
You have to tick the box and the payment gateway to check out and pay the rest, unless you mean the credit is the full invoice value, which it works for me.
-
[Module] cPanel Extended Module for Blesta (Broken)
Michael replied to Abdy's topic in The Marketplace
you have the s on {module.name_server}... -
The title is already been informed about and a fix is available for the other bit I'm not sure.
-
Is Licensecart Legit? And More Questions
Michael replied to AKNode's question in Pre-Sales Questions
email sales@ blesta with your key or pm Paul here with it. (settings > system > general > license key) and await a reply as you need a re-issue. Then just update the root folder url. -
Is Licensecart Legit? And More Questions
Michael replied to AKNode's question in Pre-Sales Questions
cPanel is known for that a mate of mine had that issue we had to use FTP, one reason I dislike cPanel See: https://www.virustotal.com/en/url/fd1c278b86d1ee4e1d782c792d38e6cdfe152fa4d27ad243a5611cf9ef112c5a/analysis/1455383239/ -
Is Licensecart Legit? And More Questions
Michael replied to AKNode's question in Pre-Sales Questions
Like Paul I can be considered Bias but I've had experience with both before switching to Blesta 2.5 in May 2013, just before WHMCS's big exploits, so I'm going to link to two security experts opinion instead: - http://www.webhostingtalk.com/showpost.php?p=8898652&postcount=14 - http://www.webhostingtalk.com/showpost.php?p=8885045&postcount=183 ...and one customer who used both: - http://www.webhostingtalk.com/showthread.php?t=1318240&p=8898812#post8898812 Yep we use it: https://docs.blesta.com/display/user/Stripe Yep our website you went one is fully running on Blesta, but I take it you want a simple integration and not powered by, so you can see this tutorial: http://www.blesta.com/forums/index.php?/topic/3642-blesta-integration-33x-advanced/ -
This isn't a contribute thread but a feature request and Blesta are looking at improving the SSL ordering system soon which allows you to checkout and configure it later, so the Token would be a +1 for the list to improve. But again not a Contribute to the community.
-
Closed as not a bug. Please read documentation before reporting a bug: https://docs.blesta.com/display/user/cPanel#cPanel-WelcomeEmail or you can also use {% debug %} to see the output. You need: {% for name_server in module.name_servers %} Name server: {name_server} {% endfor %}
-
Nope you can follow the task though: http://dev.blesta.com/browse/CORE-737
-
Proxmox Module: Vps Credentials On Information Tab
Michael replied to cya's topic in Feature Requests
Never used Proxmox but when you reset a password some virtualizations require a reboot. -
Proxmox Module: Vps Credentials On Information Tab
Michael replied to cya's topic in Feature Requests
In both html / text tabs? -
Proxmox Module: Vps Credentials On Information Tab
Michael replied to cya's topic in Feature Requests
What's your package welcome email template? -
Doesn't work for some reason either doesn't set the cookie on my Safari? <?php // Selected language $language_code = $_GET['set_language']; if( $language_code != '' ){ Configure::set('Blesta.language', $language_code); Language::setLang(Configure::get('Blesta.language')); setcookie('set_language', $language_code, time() + (86400 * 30), "/"); // 86400 = 1 day }else{ $language_code = Configure::get('Blesta.language'); } ?> <form method="GET" class="form-inline text-center"> <select name="set_language" class="form-control input-sm" id="set_language"> <option value="en_us" <?php if ( $_COOKIE["set_language"] == 'en_us' ){ echo 'selected'; } ?>>English</option> <option value="fr_fr" <?php if ( $_COOKIE["set_language"] == 'fr_fr' ){ echo 'selected'; } ?>>French</option> </select> </form> <script type="text/javascript"> jQuery(document).ready(function() { jQuery("#set_language").change(function() { jQuery(this).closest("form").attr('action', window.location.href); jQuery(this).closest("form").submit(); }); }); </script>
-
I don't believe it does on Piping but you can use POP3 or IMAP if you wish. Piping goes sales@yourdomain.com ---> pipe --> Blesta not sales@yourdomain.com --> Email Mailbox --> Pipe -> Blesta.
-
I got this working with Tyson and Naja7Host's code but I can't seem to get the cookie to set <?php // Selected language $language_code = $_GET['value']; if( $language_code != '' ){ Configure::set('Blesta.language', $language_code); Language::setLang(Configure::get('Blesta.language')); setcookie($set_language, $language_code, time() + (86400 * 30), "/"); // 86400 = 1 day }else{ $language_code = "en_us"; } ?> <form method="GET" class="form-inline text-center"> <select name="set_language" class="form-control input-sm" id="set_language"> <option value="en_us" <?php if ( $_COOKIE["set_language"] == 'en_us' ){ echo 'selected'; } ?>>English</option> <option value="fr_fr" <?php if ( $_COOKIE["set_language"] == 'fr_fr' ){ echo 'selected'; } ?>>French</option> </select> </form> <script type="text/javascript"> jQuery(document).ready(function() { jQuery("#set_language").change(function() { jQuery(this).closest("form").attr('action', window.location.href); jQuery(this).closest("form").submit(); }); }); </script>
-
From them or here. https://docs.blesta.com/display/support/Getting+Support#GettingSupport-SupportAccess Yes it does. Yes it does.
-
Fair enough well stop moaning if you don't want to add anything, probably most of the old thread have been added in 3.3.x-3.5.x
-
1. Probably because no-one has asked for any more since Naja7host's old thread, which Tyson as highlighted before if you want events do a thread like his. 2. Because there's only so much time which they can put into a version and with all the improvements and mass mailer they can't do everything.