Leaderboard
Popular Content
Showing content with the highest reputation on 11/22/2017 in Posts
-
Client listing first_name, last_name rather than Name
Michael and one other reacted to katycomputer for a topic
If you have a number of clients, it would be nice to be able to sort by first_name or last_name when looking for a client. If I manually edit the url to: /admin/clients/index/active/?sort=last_name&order=asc the client list is sorted by last name, so it seems like this would be an "easy" change. I am populating the company field with last_name, first_name; it would be better if we had two columns.2 points -
Black Friday At Blesta Addons
activa and one other reacted to Blesta Addons for a topic
Hello 50% OFF for all our paid subscription . use coupon BLACKFRIDAY enjoy .2 points -
Modules group server features
activa reacted to Blesta Addons for a question
some module has the option to create group for server, and it use the first non-full server . Blesta order server by their row id. it would better to allow us set the order of servers . it would be nice also to add a new option for "non-full server" to provision the account in the non full server in the group . https://requests.blesta.com/topic/server-group-enhacements1 point -
Purshased second licence for future use ?1 point
-
Why not rename the company under Settings > System > Companies. If you update company name and hostname it'll flip them.1 point
-
Your browser will always cache the pages it means it can load it up faster.1 point
-
I recommend using the addon packages to create bundles that what I used to do.1 point
-
Client listing first_name, last_name rather than Name
Michael reacted to katycomputer for a topic
As a work-around, I changed one line in: /app/views/admin/default/admin_clients.pdt From: <td><span><a href="<?php echo $this->Html->safe($this->base_uri . 'clients/index/' . $this->Html->ifSet($status) . '/?sort=first_name&order=' . ($sort == 'first_name' ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == 'first_name' ? ' ' . $order : '');?>"><?php $this->_('AdminClients.index.heading_name');?></a></span></td> To: <td><span><a href="<?php echo $this->Html->safe($this->base_uri . 'clients/index/' . $this->Html->ifSet($status) . '/?sort=last_name&order=' . ($sort == 'last_name' ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == 'last_name' ? ' ' . $order : '');?>"><?php $this->_('AdminClients.index.heading_name');?></a></span></td> Hopefully I didn't break something :-)1 point -
Download again from the first post, it has been updated.1 point
-
Did not see this coming Purchased. Thanks Again1 point
-
Plesk - Apache graceful restart still causes Connection reset by peer
activa reacted to fissionblue for a question
Hey everyone, I've found a way to get past the graceful restart. you must run this from CLI: /usr/local/psa/admin/bin/httpdmng --reconfigure-all However, I will still likely complete the migration back to my small VPS because cron isn't firing, despite spending way too much time on it Edit: php doesn't run out of the default location in plesk - got cron running by adjusting the install directory1 point -
That's the something that most blesta based provider needs. Great work. (Y)1 point
-
1 point
-
Coupons in upgrade services client side
Michael reacted to Blesta Addons for a topic
some client asked us that there are now option to enter coupon when they want to upgrade their service . in client side exist the option and the coupon is applied . Hope to see this in the future.1 point -
I found the problem, it looks like Square's API has been updated and broke the gateway. Square released the Connect v2.5 version on November 2nd, with changes in transaction management. I fixed the API and tested the gateway in Blesta 4.x and works pretty well. I attached the fixed version in this post. square.zip1 point
-
I think that's just the style of those radio/checkbox options in the new Firefox theme. I suspect they are difficult to see on every website you visit. There's not much we can do about that besides adding an image to represent the radio/checkbox options, but I think either Firefox will update their default radio/checkboxes because they are too light or people will end up getting used to this change soon.1 point
-
They are owned by root because Blesta is being executed by root.. is your cron set up to run as root? If so, the user should be changed.1 point
-
[Plugin] Seo Tools & Sitemap Generator For Blesta
activa reacted to Blesta Addons for a topic
Yes, just to note, google no more providing any query parameters and all thier search are now in https https://www.straightnorth.com/insights/approaching-darkness-google-referral-url-2016/1 point -
PHP7 Blank Page
activa reacted to nolaghosting for a question
Actually, I just checked permissions and now it's loading ok! So, just in case anyone has this issue... I recommend the following from: MySQL keeps crashing: InnoDB: Unable to lock ./ibdata1 make a copy of the original files (ibdata1, ib_logfile0, ib_logfile1...). mv ibdata1 ibdata1.bak cp -a ibdata1.bak ibdata11 point -
The braces used by styles and JavaScript (i.e. { and }), conflict with the H2o parser for tag replacement in email templates. The parser expects variables to be between the braces, e.g., {service.name}, but since you have CSS styles defined, you have { padding-top: 0 !important; ... }, which is invalid H2o tag syntax. You can either use inline-styles instead, or you can update your config file in /config/blesta.php to change the characters used by the H2o parser to something else, like two braces. The latter requires every area in Blesta that defines variables parseable by H2o (e.g. the portal, all email templates, package welcome email templates, the universal module, etc.) to be updated to use the new characters you define. I also notice that you are defining a lot of base HTML tags, like the body and head tags. I presume this is a "full-page template", but the WYSIWYG does not support this by default. The WYSIWYG will strip your html, head, and body tags. To keep them, you would need to update the ckeditor configuration. i.e. Update /vendors/ckeditor/config.js and find at the bottom of the file: config.entities = false; And add below it: config.fullPage = true;1 point