Jump to content

Blesta Addons

Alpha Developers
  • Posts

    4,868
  • Joined

  • Last visited

  • Days Won

    389

Reputation Activity

  1. Like
    Blesta Addons got a reaction from domaingood in Billing - Transactions - Missing Refunded Status   
    are you sleeping over the keyboard ? so maybe you have touched some keys  (DEL) + (CTRL+S) and job done
  2. Like
    Blesta Addons got a reaction from wfitg in Need To Remove Tax Id Number From Registration   
    near you can do like this task from the admin panel .....
     
    stay tunned ,
  3. Like
    Blesta Addons got a reaction from PauloV in How To Transfer Domain From Admin Panel   
    No , i have stopped publishing released for the reloaded module until v3.3 or maybe until the new domain module ;
     
     
     
    i get some free time to make a search in this , as we also need it , i have arrived to a working solution , now in the admin area you can select register or transfer , then the auth-code box will appear  ,the tweak is the fallowing , change the  getAdminAddFields function with this one 
    public function getAdminAddFields($package, $vars=null) {     // Handle universal domain name   if (isset($vars->domain))    $vars->{'domain-name'} = $vars->domain;      if ($package->meta->type == "domain") {    // Set default name servers    if (!isset($vars->ns1) && isset($package->meta->ns)) {     $i=1;     foreach ($package->meta->ns as $ns) {      $vars->{"ns" . $i++} = $ns;     }    }      // Handle transfer request    if (isset($vars->transfer) || isset($vars->{'auth-code'})) {     return $this->arrayToModuleFields(Configure::get("Logicboxes.transfer_fields"), null, $vars);    }    // Handle domain registration    else {        $fields = array(       'transfer' => array(        'label' => "Domain Action",        'type' => "radio",        'value' => "1",        'options' => array(         '1' => "Register",         '2' => "Transfer",        )       ),           'domain-name' => array(        'label' => Language::_("Logicboxes.transfer.domain-name", true),        'type' => "text"       ),       'auth-code' => array(        'label' => Language::_("Logicboxes.transfer.auth-code", true),        'type' => "text"       )      );                $module_fields = $this->arrayToModuleFields(array_merge($fields, Configure::get("Logicboxes.nameserver_fields")), null, $vars);         if (isset($vars->{'domain-name'})) {      $tld = $this->getTld($vars->{'domain-name'});           if ($tld) {       $extension_fields = array_merge((array)Configure::get("Logicboxes.domain_fields" . $tld), (array)Configure::get("Logicboxes.contact_fields" . $tld));       if ($extension_fields)        $module_fields = $this->arrayToModuleFields($extension_fields, $module_fields, $vars);      }     }         $module_fields->setHtml("     <script type=\"text/javascript\">      $(document).ready(function() {       // Set whether to show or hide the ACL option       $('#auth-code_id').closest('li').hide();       if ($('input[name=\"transfer\"]:checked').val() == '2')        $('#auth-code_id').closest('li').show();       $('input[name=\"transfer\"]').change(function() {        if ($(this).val() == '2')         $('#auth-code_id').closest('li').show();        else         $('#auth-code_id').closest('li').hide();       });      });     </script>     ");              return $module_fields;    }   }   else {    return new ModuleFields();   } } is the same almost for all other registrar modules , just change the language to your own use .
  4. Like
    Blesta Addons got a reaction from PauloV in Billing - Transactions - Missing Refunded Status   
    are you sleeping over the keyboard ? so maybe you have touched some keys  (DEL) + (CTRL+S) and job done
  5. Like
    Blesta Addons got a reaction from Michael in How To Transfer Domain From Admin Panel   
    the action for admin is addService , with a quick search in the logicbox module i found this under getAdminAddFields()
     

    // Handle transfer request if (isset($vars->transfer) || isset($vars->{'auth-code'})) { return $this->arrayToModuleFields(Configure::get("Logicboxes.transfer_fields"), null, $vars); } that mean that the transfer will done if you provide the 'auth-code' and selecting the transfer button . but as i see in the reurned modulefields no option for transfer is just 

    $module_fields = $this->arrayToModuleFields(array_merge(Configure::get("Logicboxes.domain_fields"), Configure::get("Logicboxes.nameserver_fields")), null, $vars); so try change it to : 

    $module_fields = $this->arrayToModuleFields(array_merge(Configure::get("Logicboxes.domain_fields"), Configure::get("Logicboxes.transfer_fields") , Configure::get("Logicboxes.nameserver_fields")), null, $vars); is not tested but it can give you the road to go .you can also see the code in getClientAddFields() .
    NOTE : if you use another registrar module you can search for a semilar workaround .
  6. Like
    Blesta Addons reacted to Tyson in Clients Can't Upgrade Nor Downgrade Services   
    CORE-1396 has been added for beta 2. Instead of appearing under "Status", they'll be in their own section.
  7. Like
    Blesta Addons reacted to Paul in Billing - Transactions - Missing Refunded Status   
    Ok, let's add it back then. CORE-1411
  8. Like
    Blesta Addons reacted to PauloV in [Plugin] Blesta Live Chat Rc 1.0.7 - 4ºrc   
    Thanks for appreciate our work and for the donation Didier I have added you to my signature
     
    We use custum rules also but dont have any trigger on Mod_Security and/or CSF Tanks for the tip on the fix
     
    We have alredy a new verion updated done and ready to be released wen Blesta 3.3 goes Stable, with alot of optimised code, stay tune
     
    The new version will only work on Blesta 3.3 or above because some of the new functionality are only trigger by the new Events that are available on Blesta 3.3
     
    Regards,
    PV
  9. Like
    Blesta Addons got a reaction from lukasP in [Plugin] Cookiecuttr Plugin (Eu Cookie Law)   
    Hello Again
    we bring free and exclusive content , this time is the CookieCuttr plugin .
    The CookieCuttr plugin wraps up the popular CookieCuttr jQuery script which is designed to provide an attractive solution to complying with EU Cookie Laws.
    the plugin can  :
        Show Notice cookies use in top or bottom of pages .
        Select beetwenn 4 CSS style .
     
    TODO LIST :
    - show notice for guest only , or guest and client both .
    - option to enable/disable the googleanalytics message 'accept/decline the analytics cookies also)
    - option to Disable parts of your page and display a message .
    - add privacy page to notice
    - enable/disable the (reset cookies button / decline button / accept button)
    - enable the notice in just certain page (order form / support ticket ...ect )
    screenshoot :
     

     

     
     
    the second style view on bottom of page
     

     
    This Plugin is tested in our test server , no bugs at the moment .
    as always the installtion steps is :
    1 - download the file from client area .
    2 - upload the cookiecuttr folder inside plugin directory .
    3 - goto plugins , and install cookie cuttr Plugin .
    4 - enjoy the free content .
    Any Suggestion/Bug Please report it here .
  10. Like
    Blesta Addons got a reaction from marcel in Blesta Vs Whmcs   
    Hello @Dominick ,
    we feel your experience , your souffrence , i have to translate blesta in our language (soon we will make it available to the community ) , and i have to developpe and still developping some custom plugins/modules that are not for public because it use our own software or script or services . so we don't beleive it should be for others .
    in the maintime i'm creating releasing some free plugins for all , that is because a standard for all . i'm affraid about your request to not have time to make something for you , but i'm sure , in the future we will have more free time and we can do more thing to the community , main big bussines is not developping soft , i have my onw revenue from other service i offer , for that all my plugins are free , i beleive in my mind to success my services and still use blesta billing soft , blesta should succes and ashould continue , for that i'm helping blesta/users in this forum , if blesta disapear , i should fetch another alernative to run my billing .
    another think about blesta , i'm sur they are cranking in some feature and optimizing the code , but i have already talked some day with paul in the chat , and i have told him, to see and listen to users request , what users need is more important for what they want to offer , they ned to make some type of balancing with users requests and TODO list of what they want .
    whm** has arrived to all this modules/plugins/gateways for so many years of work and help from a lot of other devellopers/companies , blesta is taking thier road and we need to be patient with them for some times .
    as developper i have stopped working in some modules until the final release of v3.3 , i have stopped imporevement of orderbox registrar , because they will release a new system for domains , i can't accept losing time in coding thing that will not work after some weeks .
    for ideal gateway check this website, maybe they can do it http://www.php-solutions.nl/ideal .
    have you put any request in freelance website ?
    wich registrar you are asking thier module ?
  11. Like
    Blesta Addons got a reaction from Michael in Terminate Suspended Services   
    is the same concept of http://dev.blesta.com/browse/CORE-1360.
  12. Like
    Blesta Addons got a reaction from Michael in Ideas About Server Status Plugin   
    this ned to make a custom regex and the admin should specify a customurl , as told before , i'm searching a basic way to work for all .
     

    the first link is not what we can implement , as need a master and client server , is used for monitoring servers with complexe data and structure like nagios , not usable in our case . the second link of cloudflare is a good way for the view template .  
     

    Great note , i will add it to my code .
  13. Like
    Blesta Addons got a reaction from JadonM in Photo's For Staff And Clients   
    you are talking about the support plugin ?
    you can disable it by deleting the line in plugins\support_manager\views\default\client_tickets_reply.pdt
     

    <img src="//www.gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=250" class="img-thumbnail img-responsive" /> EDIT :
    i forget to mention the admin side plugins\support_manager\views\default\admin_tickets_reply.pdt
     
     

    <img src="//www.gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=120" />
  14. Like
    Blesta Addons got a reaction from PauloV in Blesta Vs Whmcs   
    Hello @Dominick ,
    we feel your experience , your souffrence , i have to translate blesta in our language (soon we will make it available to the community ) , and i have to developpe and still developping some custom plugins/modules that are not for public because it use our own software or script or services . so we don't beleive it should be for others .
    in the maintime i'm creating releasing some free plugins for all , that is because a standard for all . i'm affraid about your request to not have time to make something for you , but i'm sure , in the future we will have more free time and we can do more thing to the community , main big bussines is not developping soft , i have my onw revenue from other service i offer , for that all my plugins are free , i beleive in my mind to success my services and still use blesta billing soft , blesta should succes and ashould continue , for that i'm helping blesta/users in this forum , if blesta disapear , i should fetch another alernative to run my billing .
    another think about blesta , i'm sur they are cranking in some feature and optimizing the code , but i have already talked some day with paul in the chat , and i have told him, to see and listen to users request , what users need is more important for what they want to offer , they ned to make some type of balancing with users requests and TODO list of what they want .
    whm** has arrived to all this modules/plugins/gateways for so many years of work and help from a lot of other devellopers/companies , blesta is taking thier road and we need to be patient with them for some times .
    as developper i have stopped working in some modules until the final release of v3.3 , i have stopped imporevement of orderbox registrar , because they will release a new system for domains , i can't accept losing time in coding thing that will not work after some weeks .
    for ideal gateway check this website, maybe they can do it http://www.php-solutions.nl/ideal .
    have you put any request in freelance website ?
    wich registrar you are asking thier module ?
  15. Like
    Blesta Addons reacted to ctalkington in Billing - Transactions - Missing Refunded Status   
    This view seems to be missing a status filter for "refunded" status.

  16. Like
    Blesta Addons got a reaction from wfitg in How Can I Relocate Relocate "domain Privacy" Chk Box?   
    in css file , add a custom css style for checkbox that is inside the container (order form conatiner ) , check thier div clas from source .
  17. Like
    Blesta Addons got a reaction from Joseph H in Ideas About Server Status Plugin   
    Hello all ,
     
    i will begin in coding new plugin "server status" , what i have in the first release is the fallowing
     
    add/edit/delete  server .
    monitor ports : 80 apache , 53 mysql , 21 ftp ;
     
    check status in realtime  (on page load) .
     
     
     
    TODO in next releases :
    set ports to check  .
    cron jobs to check servers every X minutes ;
    alert by email when server is down .
    store monitoring status for X last Days/mounths
    show the average online/outage percent  .
     
    any idea to add ?
  18. Like
    Blesta Addons got a reaction from Paul in Ideas About Server Status Plugin   
    Hello all ,
     
    i will begin in coding new plugin "server status" , what i have in the first release is the fallowing
     
    add/edit/delete  server .
    monitor ports : 80 apache , 53 mysql , 21 ftp ;
     
    check status in realtime  (on page load) .
     
     
     
    TODO in next releases :
    set ports to check  .
    cron jobs to check servers every X minutes ;
    alert by email when server is down .
    store monitoring status for X last Days/mounths
    show the average online/outage percent  .
     
    any idea to add ?
  19. Like
    Blesta Addons reacted to PauloV in Ideas About Announcement Plugin   
    1- OK I also can help you on this wen you release it
     
    2-  Its easy to do friendly URLS
      - Add an extra text field called "furl" - Add a rule to remove every special character and convert spaces to minus "-" and also convert all characters to lowercase (more easy lowercase) - Wen submiting the form to save the new announcement, check if the "furl" is unic, it cannot have the same name twice - Now on accessing the url for the announcment, just add a function to search by "furl" field insted the "id" field   this way will be like for exemple:   /client/plugin/knowledgebase/client_main/article/how-top-install-cpanel-in-vps/   insted of   /client/plugin/knowledgebase/client_main/article/22/   Hope that helps   If you want I can also help you on this after you release it   Regards, PV
  20. Like
    Blesta Addons got a reaction from flangefrog in Create Option To Add Tax By Default   
    from your signature i see the vQmod tools , so is easy for you to make a mod that add a custom jqeury code to make them checked
  21. Like
    Blesta Addons got a reaction from Michael in Iblesta Like Iwhmcs   
    added to my TODO list , as Paulov says , we have the bigg probleme , the TIME , really we have a lock of time , i have just 30-45min that i can give to dev blesta plugins/modules. i have already contacted a dev to deploy an app for us with blesta API and our other services and brand , we have not arrived to a contract for the price he want , is was so high .
    let me search again for a cheaper dev near to our office , if i found it , APP is almost done
  22. Like
    Blesta Addons got a reaction from PauloV in Best Responsive Framework?   
    i have never used Foundation , all my project/works are based in bootsrap , for mobile i use jquery mobile it have all the option we need .
  23. Like
    Blesta Addons got a reaction from PauloV in Iblesta Like Iwhmcs   
    added to my TODO list , as Paulov says , we have the bigg probleme , the TIME , really we have a lock of time , i have just 30-45min that i can give to dev blesta plugins/modules. i have already contacted a dev to deploy an app for us with blesta API and our other services and brand , we have not arrived to a contract for the price he want , is was so high .
    let me search again for a cheaper dev near to our office , if i found it , APP is almost done
  24. Like
    Blesta Addons reacted to PauloV in Iblesta Like Iwhmcs   
    I have for some time to now an ideia for an APP for Windows Mobile, Android and IOS(Mac/IPhone/IPad) and its really very simple (after we buil an mobile theme for Blesta lol).
     
    Every APP (not games) is almost written in Javascript + HTML5 + CSS + XML (sometimes php + sql) with remote commands to a server
     
    A great exemple that we use is this APP:   Android: https://play.google.com/store/apps/details?id=de.hetzner.robot_mobile IOS: https://itunes.apple.com/pt/app/robot-mobile/id482005451?mt=8   This app only call a remote webpage in here: https://robot-mobile.your-server.de/   We can easelly build an APP for each plataform using for exemple:   http://unity3d.com/ (best of the best on deploying easy and fast cross plataform applications and also games)   http://www.appcelerator.com/ (Also a great and free plataform, but it is more dificult to deploy a cross plataform)   http://phonegap.com/ (Anoiuther great plataform to build cross plataform mobile APP's)   Now the biggest challanging is Time (we dont have time now eheh  )
  25. Like
    Blesta Addons reacted to interfasys in Iblesta Like Iwhmcs   
    Easiest is to just pick Phonegap and an HTML5 framework like Sencha Touch. It's usually only a matter of calling the right API and organising your content using ready-made components.
×
×
  • Create New...