Jump to content

WebhostingNZ.com

Members
  • Posts

    113
  • Joined

  • Last visited

  • Days Won

    4

Reputation Activity

  1. Like
    WebhostingNZ.com got a reaction from PauloV in We want you! :)   
    @PauloV Contrats..  My Daughter is 4, they are easy when they are young, it's our boy I think will be harder, he's only 4 months.
  2. Haha
    WebhostingNZ.com reacted to Blesta Addons in We want you! :)   
    i have passed this period, it was a ver long story..... now i sleep like a elephant
    Congrats, we are Equal, but you need to do more effort to equal me in addons
  3. Like
    WebhostingNZ.com got a reaction from PauloV in We want you! :)   
    Congrats and good luck    Don't worry, you get used to no sleep after a year or so
  4. Like
    WebhostingNZ.com got a reaction from Joseph H in We want you! :)   
    @PauloV Contrats..  My Daughter is 4, they are easy when they are young, it's our boy I think will be harder, he's only 4 months.
  5. Like
    WebhostingNZ.com reacted to ModulesGarden in Will You Be My Valentine?   
    Roses are Red,
    Violets are Blue, 
    We All Love Promotions
    So Here Is One Too! 
     
    Have a lovely Valentine's Day bristling with bouquets and chocolates!

    And when you have had more than enough of these, accept our little gift of gratitude for your treasured partnership this year,
    the beloved 20% promo code which you can spend as you please on our Marketplace!
     
    All it takes to embrace is to share the love for your favorite Blesta extension (or extensions) with everyone!
     
    Win the hearts of your audience today with top-rate software from ModulesGarden!
     
  6. Like
    WebhostingNZ.com reacted to Abdy in Die dumping a variable   
    I usually use print_r to see the content of a variable, is more human-friendly.
    public function validate(array $get, array $post) { $cgOrder = $this->coingateCallback($this->ifSet($post['id'])); $return_status = false; $status = null; // Debug print_r($cgOrder); exit;  
  7. Like
    WebhostingNZ.com got a reaction from Abdy in EA-PHP70 - 72 & HTTP 500   
    Did you apply the PHP7 patch ?
     
    [EDIT]
    The patch/hotfix is in the folder 'hotfix-php7' when you extract the blesta.zip
  8. Like
    WebhostingNZ.com got a reaction from Michael in EA-PHP70 - 72 & HTTP 500   
    Did you apply the PHP7 patch ?
     
    [EDIT]
    The patch/hotfix is in the folder 'hotfix-php7' when you extract the blesta.zip
  9. Like
    WebhostingNZ.com got a reaction from Blesta Addons in Why Use Api Create Client Return Error?failed To Retrieve The Default Value   
    Necro thread sorry.
    Had this same issue and found this thread so will post the fix here which I found by following the CORE-1232.
    As stated in CORE-1232 "Important to note that this issue does not happen if you specify all parameters to a method".  The fix simply to make sure you pass all parameters, for example.
    Does not work:
    $response = $api->post("encryption", "systemEncrypt", array('value' => "my text"));
    Does work:
    $response = $api->post("encryption", "systemEncrypt", array('value' => "my text", 'key' => "f059...[snip]...895f", 'iv' => "f059b0f...[snip]...80fa3895f"));
    For this example, you get your encryption key used in the second two prams from config/blesta.php and put it in which is what it should default to anyway.
    I suggest an update to the API documentation to cover that in some instances you have to pass all parameters.  On the below API doc, the first two examples should be updated as they don't currently work as they are (or don't for me):
    https://docs.blesta.com/display/dev/API
    Thanks.
  10. Like
    WebhostingNZ.com reacted to Paul in Blesta 4.1.0 Beta 1 Release   
    Blesta version 4.1.0-b1 (BETA 1) is now available. You can download it from right here (Client Area Login Required).
    This is a BETA release. Beta releases are not considered stable enough for production use, and are UNSUPPORTED. DO NOT INSTALL IN A PRODUCTION ENVIRONMENT.
    Please report any bugs you find in the v4 beta bug forum.
    Installing Blesta

    See Installing Blesta in the User Manual for instructions.

    Upgrading Blesta

    See Upgrading Blesta in the User Manual for instructions.

    Release Notes

    See Blesta Core - Version 4.0.0-b1.

    For older releases see all Change Logs.
  11. Like
    WebhostingNZ.com reacted to Paul in Blesta 4.0.0 BETA 4 Released   
    Blesta version 4.0.0-b4 (BETA 4) is now available. You can download it from right here (Client Area Login Required).
    If you haven't seen the blog post announcement for 4.0.0 BETA 1, you can read it here.
    This is a BETA release. Beta releases are not considered stable enough for production use, and are UNSUPPORTED. DO NOT INSTALL IN A PRODUCTION ENVIRONMENT.
    Please report any bugs you find in the v4 beta bug forum.
    Installing Blesta

    See Installing Blesta in the User Manual for instructions.

    Upgrading Blesta

    See Upgrading Blesta in the User Manual for instructions.

    Release Notes

    See Blesta Core - Version 4.0.0-b1-b4. SEE BETA 4 ONLY

    For older releases see all Change Logs.
    What to Test!
    1. PHP 7. The focus of this beta was largely PHP 7 support. Check change log for more.
    Known issues
    1. An error is encountered when logging in or out with PHP 7, if errorReporting is enabled in /config/blesta.php
  12. Like
    WebhostingNZ.com got a reaction from Michael in How to display multiple order forms.   
    Hi Cam,
    You are correct you'd just add another button in your blesta portal.  That's how we add different order forms to the portal, or anything else to the portal for that matter.
    Daniel.
     
  13. Like
    WebhostingNZ.com got a reaction from Michael in Cpanel - Change Server   
    Hi,
     
    I have run across a problem when working with the cPanel module using Blesta 3.6, cPanel mod 2.3.0 and PHP version 5.4, I have error reporting on.
     
    Module: cPanel (Ver 2.3.0)
    Steps to reproduce:
    1) add 2 cpanel servers with the cPanel module
    2) add cPanel service to a customer
    3) under customer 'manage' the new cPanel service.
    4) change 'Server' setting to another server under Service Information.
    Error Given:
    Undefined index: coupon_code on line 3938 in /home/xxxxxx/public_html/app/controllers/admin_clients.php
    Fix:
    Use isset.  On line 3938, I'm sure the below could be written better but it works.
    if (isset($this->post['coupon_code'])) { $data['coupon_id'] = $this->getCouponId($this->post['coupon_code']); } else { $data['coupon_id'] = null; } I would love to hear back if this above fix may cause problems with the coupon code by setting it to null, the whole else part could be removed it's just habit for me to set to null if it's hit an undefined index error, as it may happen in other parts of the code for the same var.
     
    Thanks,
    Daniel.
  14. Like
    WebhostingNZ.com reacted to PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    UPDATED 27-01-2016
     
    One year after the latest update, here it is the new "revamp" and full loaded Support Manager Pro with an huge modification to support exclusive features to Blesta
     
    This is a major upgrade to Support Manager Pro, I have tested everything, but sometimes things can go rong (WHMCS exemple lol), so please Backup/Backup/Backup before upgrade Support Manager Pro, to be able to revert  
    Try to find the new features, you will have a pleasent suprise I also added new screenshots below:
    == Staff List Ticket View == Added: New Left Menu on Staff listing all Tickets Added: Quick Filter tickets by Department (Drop Down Style) Added: Total Tickets By Status Added: Cookie to store Full Screen Ticket View Windows Status, for wen navigating betwin links remember if its full Added: Background Color Change on Ticket, wen its assignet to you Added: Font Awesome for styling Added: Show background diferent color (light red) on Ticket line, if the ticket was not readed/open by Staff Fixed: Some issues on Services Ticket View Tab (thanks to viperdh) Fixed: Some issues on PIPE Ticket Import (thanks to viperdh) Fixed: Some issues on KB (thanks to viperdh) == Staff View/Reply Ticket == Added: Warning message if any outher staff member is viewing/replying the ticket Added: More Client Details that are hide by default but you can click on the litle arrow down button to display all Added: Real Time Saveto database on any Department Change and/or Assinet to and/or Priority and/or status. (Auto Submits the form) Added: Assing a Service to the Ticket (if the client has active services on it) Added: Assing Custom Fields to Ticket (you can now add/remove/edit costum fields by Ticket) Added: Notes moved to TOP of any Replies to better view Added: Left Menu to Quickly navigate betwin Departments/Status Added: List Client Services Added: Quoting an reply now adds extra styling to text adding date + time + who submited Added: Font Awesome for styling Removed: Unecessary space betwin Reples == Client Area == Added: Ticket Widget to list all tickets like Staff Client Area == Client View Ticket == Removed: Ticket Log changes (dosent make sense view them) == Client Reply Ticket == Added: Asigned Service (yes clients can assign service finally to tickets) == Client Add Ticket == Added: Asigned a Active Service to the Ticket (as above clients can assign service finally to tickets) To add/remove/edit custom fields to tickets just go to Settings->Plugins->Support Manager Pro->Manage (folow the instructions)
     
    New Screen SHots 2016
     
     

     

     

     
     

     

     
     
    See first post how to install/upgrade
     
    Hope you all like, and sorry for the late update
     
    Regards,
    PV
  15. Like
    WebhostingNZ.com reacted to Michael in Blesta Suspending But Not Terminating Cpanel Accounts   
    Now you're assuming every host has a backup service... you'll find 70% of hosts don't have it.
  16. Like
    WebhostingNZ.com reacted to Paul in Php Trim() On User Input.   
    All my passwords are exactly 27 spaces followed by a tab. 
  17. Like
    WebhostingNZ.com reacted to Darin in Reset To Default.   
    Another option would be a link that pops up a window with the original/suggested template contents, so that you can review it and then copy some or all of it as needed. This way, you don't have to completely wipe out your current template in order to cherry pick a few lines from the original template.
  18. Like
    WebhostingNZ.com got a reaction from Michael in Braintree Payment Gateway - Multi Currency/merchant Accounts   
    Hey,
     
    Braintree Payment Gateway version 1.0.1.  (Also affects 3rd Party Braintree version 1.0).
     
    Currently the 'merchantAccountId' is not being passed to 'Braintree_Transaction::sale' (or even saved anywhere) so will only charge in the default currency set in braintree.
    https://developers.braintreepayments.com/reference/response/transaction/php#merchant_account_id
     
    I personally use the 3rd party module so have made the changes myself for it to work, if anyone needs help with getting it to work before a fix is in place just send me a message.
  19. Like
    WebhostingNZ.com got a reaction from activa in Php Trim() On User Input.   
    Hey,
     
    I think it would be handy if user input was run past php trim() before being processed, at least for the search if not everywhere.  I've been trying to think how this could cause a problem but for the last few days I've come up with nothing, just many more times I've been caught out by having a space at the start of a copy/paste into the search box.
     
    The search in the top right corner will not find what you are looking for if you copy/paste and catch a space, or tab at the start or end of your copy
     
    trim() would also be handy on domain input for the cPanel module, that one caught me a few times when adding a few services.  In the end I added it to my import script to do it first, but got caught out on a few I had to put in manually.
     
    This is again a small thing and it's simple to find/remove the space at the start but still a valid feature request as I would have thought it should have already been in. 
     
    No flaming for silly feature requests.... I understand that my feature requests are trivial and there are much better things for devs to spend time on, but the only way to better the product is to point out places that I feel could be improved on.
     
    Thanks.
  20. Like
    WebhostingNZ.com got a reaction from Kangaroo in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    Hi PauloV,
     
    Do you have an ETA on your new version?
    Thanks.
×
×
  • Create New...