Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/22/2017 in all areas

  1. 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
  2. Hello 50% OFF for all our paid subscription . use coupon BLACKFRIDAY enjoy .
    2 points
  3. 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-enhacements
    1 point
  4. Purshased second licence for future use ?
    1 point
  5. Yes, but Blesta generated pages aren't meant to be cached. And even if I clear the cache Chromium still shows old data.
    1 point
  6. Paul

    Move Clients In Multi-Company

    Why not rename the company under Settings > System > Companies. If you update company name and hostname it'll flip them.
    1 point
  7. Your browser will always cache the pages it means it can load it up faster.
    1 point
  8. I recommend using the addon packages to create bundles that what I used to do.
    1 point
  9. 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
  10. Download again from the first post, it has been updated.
    1 point
  11. Did not see this coming Purchased. Thanks Again
    1 point
  12. 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 directory
    1 point
  13. HostCram

    [Module] WHMPHP Module

    That's the something that most blesta based provider needs. Great work. (Y)
    1 point
  14. 1 point
  15. 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
  16. 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.zip
    1 point
  17. 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
  18. 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
  19. 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
  20. OK I cleared the cache and everything seems to be working now. Thank you for trying to help @BlestaStore
    1 point
  21. Hi that's for the nav links and everything, but if the invoices are sent by the cron job then the cron sets the url from what I know. I may be wrong I'll tag @Paul in.
    1 point
  22. nolaghosting

    PHP7 Blank Page

    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 ibdata1
    1 point
  23. Tyson

    Template Parse Error

    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
×
×
  • Create New...