-
Posts
9,522 -
Joined
-
Last visited
-
Days Won
186
Everything posted by Michael
-
Describe the issue you're experiencing The urls aren't showing symbols as normal. Provide detailed steps necessary to reproduce the issue. Create an article with a symbol in it then go to the Knowledgebase and click the article of choice it shows different in the address bar.. List any generated errors. (The "Oh Noes" error pages are very helpful.): N/A. Include the URL the error occurred on, relative to the installation path, ie "/admin/login": N/A Attach screenshots. Client Side: Admin Side: Include your configuration settings, i.e. OS, version of Blesta, version of module/gateway/plugin if applicable, version of PHP & MySQL. OS: Centos 6.6 Blesta: 3.4.0-b1 PHP: 5.4.x MySQL: 5.5.x
-
Describe the issue you're experiencing Blesta isn't automatically picking the selected Preferred Currency. Provide detailed steps necessary to reproduce the issue. Change your Preferred Currency, then go back to the page, you will see AUD not USD. List any generated errors. (The "Oh Noes" error pages are very helpful.): N/A. Include the URL the error occurred on, relative to the installation path, ie "/admin/login": /customers/main/edit/#billing Attach screenshots. Client Side: Admin Side: Include your configuration settings, i.e. OS, version of Blesta, version of module/gateway/plugin if applicable, version of PHP & MySQL. OS: Centos 6.6 Blesta: 3.4.0-b1 PHP: 5.4.x MySQL: 5.5.x
-
This Blesta 3.4.x is amazing just fantastic, you should try it If you don't want to try it or don't have a dev license you can view this video for some of the features on the frontend: http://screencast.com/t/QDd3y5XSnhv
-
It's saved in a universal table called service_fields and the value isn't limited due to every other module varies.
-
Not sure then, only generated ones should be only limited to 8, if you use longer it should save as that, but as it's not I must be missing something somewhere.
-
It's what people call a Regex: http://en.wikipedia.org/wiki/Regular_expression. 'cpanel_username' => array( 'format' => array( 'if_set' => true, 'rule' => array("matches", "/^[a-z]([a-z0-17])*$/i"), 'message' => Language::_("Cpanel.!error.cpanel_username.format", true) ), 'length' => array( 'if_set' => true, 'rule' => array("betweenLength", 1, 16), 'message' => Language::_("Cpanel.!error.cpanel_username.length", true) ) ),
-
The "There's no official ETA" and "We will have more information as we get closer to releasing the plugin." from Paul says no else he would post about it.
-
You have to change both lines I gave you
-
Are you a reseller?
-
It's all manually done at the moment if you wish to do that, as the module doesn't support Configurable options yet, that is coming in the future that I'm aware of. You can find out more about the cPanel module here: http://docs.blesta.com/display/user/cPanel
-
It's only been available to do longer than 8 characters since 11.40: http://features.cpanel.net/responses/remove-arbitrary-username-length-limit Open: /components/modules/cpanel/cpanel.php Find: public function validateService($package, array $vars=null, $edit=false) { Then under it look for this: 'cpanel_username' => array( 'format' => array( 'if_set' => true, 'rule' => array("matches", "/^[a-z]([a-z0-9])*$/i"), 'message' => Language::_("Cpanel.!error.cpanel_username.format", true) ), and then this: 'length' => array( 'if_set' => true, 'rule' => array("betweenLength", 1, 8), 'message' => Language::_("Cpanel.!error.cpanel_username.length", true) ) ),
-
Personally I recommend FreshRoastedHosting mate, we use them for our VPS.
-
I would move hosts. Why should they block outgoing connections :s I've never in my 6 years in the industry ever heard that. And the only people who know their IPs / ports is Logicboxes themselves.
-
Well you could ask your host to disable the firewall and try it. If it works, then it's the firewall. You can also go to Tools > Logs > Modules > Click LogicBoxes row and give us the error if there is one.
-
I've not heard that before, did you import from another system before Blesta, as they import staff accounts too. Glad you solved it .
-
It's a logicboxes or host issue then, but are you allowing 30 minutes? their API list updates can take up-to 30 minutes. Host issue: - Logicboxes API IP's being blocked so Blesta can't call home.
-
I've made an article to help you, as others might have the same issue: https://licensecart.com/billing/plugin/support_manager/knowledgebase/view/231/tickets-but-thre-are-currently-no-tickets./1/
-
Nice find, nice of them to do a module .
-
Issue Sending Email When Provisioning Interworx Hosting Package
Michael replied to Paul Battaglia's question in Support
If you mean a template for the Welcome email there's a InterWorx example here: http://www.blesta.com/forums/index.php?/topic/223-welcome-email-for-hosting/ -
PayPal refunds haven't ever worked for me so I do it on PayPal it's easier
-
Depends where you want it. The files answer themselves structure.pdt => main file. client_main_myinfo.pdt => My Information box.
-
Anyone Offer A Site Builder Or Template System Affilate Or Other
Michael replied to tenaki's topic in The Lounge
You can use TrendyTools sitebuilder their HTML one is much better, I've never been a fan of Weebly or RvSitebuilder they are both outdated. For Trendy you can buy it from themselves or via BuycPanel.com. -
It's already in the title of the tab (window), but if you want it in pure view it's: <?php $this->Html->_($client->id_code);?>
-
Welcome to the community and family.
-
Have you got the "recommended" requirements for Blesta? http://docs.blesta.com/display/user/Requirements the first thing I would think of would be something down mcrypt or mhash issues :s.