Jump to content

Abdy

Blesta Developers
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    36

Reputation Activity

  1. Thanks
    Abdy got a reaction from PreMadeKB in Do you offer custom Blesta development services? Let us know!   
    Hi, You can add me please?
    Name: CyanDark
    Logo: Attached
    We offer Themes and Custom Development.
    Contact URL: https://clients.cyandark.com/client/plugin/support_manager/client_tickets/add/4/
     

  2. Thanks
    Abdy got a reaction from Amit Kumar Mishra in blesta api help   
    First of all you need to add a user to the API, which can be done at Settings > System > API Access, once the user is added the key will be shown along with the user. Keep in mind that API users differ from staff users.
  3. Like
    Abdy reacted to Paul Stuffins in Full Enom TLD listing   
    Hi Everybody,
    If anyone is interested in selling all 521 tld's that Enom support, I have attached my enom config file. I have not done any fancy sorting of the list, just from a-z.
    This needs to replace the ./blesta/components/modules/enom/config/enom.php file in the zip.
    Hope this helps everyone
    Paul
    enom.php
  4. Thanks
    Abdy reacted to Paul in Import Manager Update May 4, 2021   
    Attached is an updated version of the import manager. Some users experienced some issues with special characters not being imported correctly from WHMCS. If you experienced this issue, try this import manager. Download, unzip, and replace the default files in /plugins/import_manager/, then install or upgrade under Settings > Company > Plugins. Follow the docs to import here: https://docs.blesta.com/display/user/Migrating+to+Blesta
    UPDATE 4/16/21: Now imports Stripe tokens and adds mapping files for the following Gateways: Stripe Payments, Authorize.net, PayPal Payments Standard.
    UPDATE 5/4/21: Fixed issue importing from WHMCS versions older than 8.0.
    import_manager-2021-05-04.zip
    Some have reported that the link above does not work for them. If not, you can download it at http://blesta.us/import_manager-2021-05-04.zip 
  5. Like
    Abdy reacted to Kal in Support tickets fail to send with emoji   
    Perfect!! While I'm saying thank you, thanks for all the great new features in 4.11 too. I especially appreciate the ability to enforce email address usernames—something I switched on straight away. ?
  6. Thanks
    Abdy got a reaction from Kal in Support tickets fail to send with emoji   
    We've already created a task for that CORE-3791 
  7. Thanks
    Abdy got a reaction from Paul in Support tickets fail to send with emoji   
    We've already created a task for that CORE-3791 
  8. Like
    Abdy got a reaction from Kal in Support tickets fail to send with emoji   
    I just tried it and indeed it's a MySQL error. SQLSTATE[HY000]: General error: 1366 Incorrect string value: '\xF0\x9F\xA4\xA0' for column 'details' at row 1
  9. Like
    Abdy reacted to Deactivat3d in namesilo email verify warning shown   
    When you log in to NameSilo you may see this message:

     
    The user in question needs to confirm their email address to comply with rules set.
    "In order to comply with ICANN rules, all email addresses listed in WHOIS for the Registrant role must be verified. This is a rule that applies to all accredited registrars including NameSilo. "
  10. Like
    Abdy reacted to Tadso in My first Plugin throws an error   
    Problem found: typo in folder name "controllers".
    Also, for a new page in the client the combination of:
    $this->structure->setDefaultView(APPDIR);
    and
    $this->view->view = 'default';
    renders the new page inside the client portal.
     
    Consider this topic as solved.
     
     
     
  11. Like
    Abdy got a reaction from Richzendy in Create support ticket when a Invoice is paid   
    I think it is not necessary to use events for what you are looking for, from the addService() function you can add a condition that if the configurable option exists, a support ticket is created. The addService() function is automatically executed by the cron task when the invoice related to the service has been paid in full.
    Here's a quick example, assuming that the configurable option for the extra service is named "migration_service":
    public function addService( $package, array $vars = null, $parent_package = null, $parent_service = null, $status = 'pending' ) { ... if (isset($vars['configoptions']['migration_service'])) { // Create support ticket Loader::loadModels($this, ['SupportManager.SupportManagerTickets']); $ticket = $this->SupportManagerTickets->add([ 'department_id' => 1, 'staff_id' => 1, 'client_id' => 1, 'summary' => 'Subject', 'priority' => 'critical', 'status' => 'open' ]); // Add reply if (!is_null($ticket)) { $this->SupportManagerTickets->addReply($ticket, [ 'client_id' => 1, 'contact_id' => 1, 'type' => 'reply', 'details' => 'Reply text' ]); } } ... }  
  12. Like
    Abdy reacted to Paul in Mass Mailer not working properly in 4.10.0/4.10.1 - fix   
    In 4.10.0-4.10.1 the mass mailer plugin doesn't work properly. We'll be rolling out a fix, but you can apply a fix manually by doing the following:
    Update plugins/mass_mailer/mass_mailer_controller.php line 23 add 
            $this->structure->setDefaultView(APPDIR);
    Before 
            parent::preAction();
  13. Thanks
    Abdy got a reaction from Paul in Service with adjustable price??   
    You can change the price of a service for each user individually, modifying the service and overriding the price with the new price for that user in specific.

  14. Like
    Abdy reacted to Blesta Addons in Making development easier for gateways, modules, and plugins   
    for me the 4 point, this is not only for plugins but also for core specially the Pre/Post actions. 
    for other part, the docs in first time was not a really strong enough to help me make addons, but i have learned for blesta source code and the practice that make from us a long time .
     
  15. Like
    Abdy reacted to Gabriel Gutierrez in Change Clients Menu language   
    Thank you! I was now able to change "Log In" to spanish.
  16. Like
    Abdy reacted to PixelPaul in SSLTrust Module to resell SSL Certificates   
    Hello all,
    I have finally finished the module you can use to resell SSL Certificate through SSLTrust:
    https://gitlab.com/ssltrust/besta/-/wikis/Installation
    https://www.ssltrust.com.au/
  17. Like
    Abdy reacted to Paul in Blesta 4.9 Released   
    Version 4.9.0 is now available, please see the release announcement.
    Patching Blesta

    See Patching Blesta in the User Manual for instructions.

    Installing Blesta

    See Installing Blesta in the User Manual for instructions.

    Upgrading Blesta

    See Upgrading Blesta in the User Manual for instructions.

    Migrating to Blesta

    See Migrating to Blesta in the User Manual for instructions.
    Release Notes

    See Blesta Core - Version 4.9.0.

    For older releases see all Change Logs.
  18. Like
    Abdy reacted to Paul in Blesta 4.9 beta 2 Released   
    Blesta version 4.9.0-b2 (BETA 2) is now available. You can download it from right here (Client Area Login Required). Read the blog post announcement at https://www.blesta.com/2020/03/31/blesta-4.9-beta-released/
    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.9 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.9.0.

    For older releases see all Change Logs.
  19. Thanks
    Abdy got a reaction from boka003 in cPanel Extended Module   
    Do you have enabled this option? 

  20. Confused
    Abdy reacted to huangsenli in 求助购物车到最后一步销售0元如何处理?   
    我的网站不知道怎么回事前面都好好的到了最后一步付款就出现问题了,直接显示0元就可以付款,我安装论坛上教程做也没有用。
     
    已经添加了代码还是不行怎么回事。
     
      if (!$prorate->canProrate() && !$prorate->prorateDate()) {
    continue;
     }
     // Prorate
    $item->setPrice($prorate->proratePrice($item->price()));
                $endDate = $prorate->prorateDate();
     
  21. Like
    Abdy reacted to Paul in Prorata services ordered on the pro rata day may be $0.00   
    There's a bug in 4.3 where prorata services ordered on the prorata day can come up with a price of 0. The service is scheduled to renew the same day, so the customer would be invoiced shortly for the second  month. If you use prorata settings in your packages, this issue is resolved in 4.4, however here's some steps to resolve now if you need to. Be sure to back up the file first, and be sure to be running 4.3.2.
    You should be able to patch this issue yourself by making a simple file change as described below:
    Open the file /core/Pricing/Modifier/Type/Proration/Proration.php
    Find the following lines:
    Above that, add the following lines:
    The result should look like the following:
    Save that change and the issue should be resolved.
  22. Like
    Abdy reacted to Blesta Addons in Configurable Option (Type Quantity) with Setup Fee per unit   
    Not tested, but your logic is the logical logic
    and blesta calcul should be the same as you have described
  23. Confused
    Abdy reacted to Michael in Pay Now Login   
    I thought it went to the payment received page :S
  24. Sad
    Abdy reacted to Tiny in GoCardless Non-Merchant Gateway (Alpha)   
    Vietnam is generally (with very few exceptions)  blocked in the UK, even from regular websites and USA ain't a lot better. Even when ordering Blesta ... it just popped up as scam/fraud. Have done all that together beforehand knowing that, with Support Paul ....., email .... 
    I am now over 13 years here in Vietnam, full-time, so I know, what is going (or even not at all)
    All I can ensure you for sure, the countries, who talk most about about democracy, equality and human rights, they are the worse, exactly the opposite is  a proven fact.
    I hold 2 two western world passports and legal residence, with companies and 67 employees here in Vietnam and I can't even open ljust regular send an mail to europe, despite myservers are very clean, only 4 blocks (all by country) in spam blacklists ... A bloody shame for those 'democratic" countries and even more, by the companies who blocjk or use use their services
  25. Like
    Abdy reacted to Usman Nasir in CyberPanel Module (Alpha)   
    Hello!
    The issue mentioned on Github is fixed, I've tested with blesta v4.3.0 (ships with CyberPanel module by default). However recently we released ACL Manager (https://docs.cyberpanel.net/doku.php?id=users)   due to which users created via API are defaulting to admin access, this specific bug will be patched and released soon after testing.
    Regards
×
×
  • Create New...