Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/11/2015 in Posts

  1. Hi Everyone, I've just picked up a copy of Blesta yesterday and though it would be great to make vQmod available for everyone. I haven't tested in depth at this time but it should be working to be able to conduct code alterations in any of the code, keep in mind that I haven't gone through much of the core code to tell for sure, but at this time I'm basically assuming that most contructs are mostly included/required within the '/lib' area. What is vQmod? "vQmod™" (aka Virtual Quick Mod) is an override system designed to avoid having to change core files. The concept is quite simple... Instead of making changes to the core files directly, the changes are created as xml search/replace script files. These script files are parsed during page load as each "source" core file is loaded with the "include" or "require" php functions. The source is then patched with the script file changes, and saved to a temp file. That temp file is then substituted for the original during execution. The original source file is never altered. This results in a "virtual" change to the core during execution without any actual modification to the core files. Learn more at www.vqmod.com What Makes vQmod Useful? If you have any development experience with just about any platform, when attempting to 'make it your own', or write custom software plug-ins you'll almost always have the desire to make code changes outside of the templating system or what the original developer designed a plug-in system to be capable of. vQmod allows you to make such code changes and equally distrobute them in extensions you create, and equally keep code alterations separate for easier upgrading / patching of core files in the future. How To Install Copy the 'vqmod' folder to the root of your blesta installation, ensure that the main index.php has write permission and run www.yourdomain.com/vqmod/install. (adjust run path as needed). If anyone has any feedback/questions, please post a reply here and I'll do my best to answer... vqmod-2.4.1-blesta.zip
    1 point
  2. Tyson

    Some Other Domain Got Renewed

    You would need to include your module logs so we can better understand what actually happened. It sounds like the client has two services, one for each of the domains. Blesta only renews the service(s) attached to an invoice that has been paid. Did you edit the renewal invoice for that service at all? If so, what did you change? It could also be possible that ResellerClub renewed the wrong domain for some reason, and we could only know whether that occurred by checking the module logs.
    1 point
  3. Thanks!! Works perfectly
    1 point
  4. We have that issue when doing themes use the following CSS code: FIX TABLE DROPDOWN CONFLICTS: .panel_content .table-responsive{ overflow-x: visible !important; }
    1 point
  5. Yesterday, Viewing some admin themes in ThemeForest, I found "Remark". In short, 1 Developer, 24 Hours, 5 Liters of coffee. And this is the result: But I have a problem with the dropdown ¿Any know how to fix this?
    1 point
  6. The email templates have an option for whether to include attachments. We could potentially build in the functionality of including the attachments in the emails but have it unchecked by default (current behavior). It couldn't be a company setting because the support manager is a plugin. I like the idea of having a link to each attachment within the email if any exist in the reply. That gets around any limitations on the attachment via email but makes it simple to see and download the attachment.
    1 point
  7. I'd probably do this $now = date('c'); $days_ago = date('c', strtotime($now . ' -7 days')); $results = $this->Record->select(array('date_transaction')) ->select(array('IFNULL(SUM(amount),?' => 'daily_sale'), false) ->appendValues(0) ->from('transactions') ->where('date_transaction', '>=', $days_ago) ->where('date_transaction', '<=', $now) ->group(array('date_transaction')) ->fetchAll();
    1 point
×
×
  • Create New...