Jump to content

jobplease

Members
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    jobplease got a reaction from Paul in Cron Run Drops Off Cpanel   
    All working fine for now. Close thread please.
  2. Like
    jobplease reacted to jobplease in Looking For Reliable Setup   
    Just top notch work by Nelsa with the aweseome help. A big thank you and donation coming your way. What perfect timing and perfectionist in setting up detailed information also. Nelsa is helping me out on Blesta like a champion.  He quickly picked up a few misconfigs and straightened lots more. Additional plugins and modules were also installed and set up. Wow.. peace of mind and back to loving Blesta. Looking forward to the new release coming soon. Thanks again Nelsa
  3. Like
    jobplease reacted to Nelsa in Looking For Reliable Setup   
    Your welcome and you can always contact me I will be more than happy to respond.
  4. Like
    jobplease got a reaction from Michael in Looking For Reliable Setup   
    Just top notch work by Nelsa with the aweseome help. A big thank you and donation coming your way. What perfect timing and perfectionist in setting up detailed information also. Nelsa is helping me out on Blesta like a champion.  He quickly picked up a few misconfigs and straightened lots more. Additional plugins and modules were also installed and set up. Wow.. peace of mind and back to loving Blesta. Looking forward to the new release coming soon. Thanks again Nelsa
  5. Like
    jobplease reacted to Paul in Introduction   
    Welcome Samuel! Heya, are you a spammer?
  6. Like
    jobplease reacted to Blesta Addons in Check For Login   
    to see if admin logged :
    $this->Session->read("blesta_staff_id") to see if client is logged
    $this->Session->read("blesta_client_id")
  7. Like
    jobplease reacted to Blesta Addons in Get Unpaid Orders   
    i'm currently working in a plugin that auto cancel unpaid orders after X days .
     
    but i have a misunderstanding the orders status !!! 
     
    pending , accepted ... i have found some orders are accepted but not yet activated and is not complete until the invoice should paid .
     
    so normally i shouldn't search orders via status , i should search order is they have invoice related has date_closed set ?
     
    or i should look if the order is accepted or pending or both ?
  8. Like
    jobplease reacted to Paul in Release 3.6.1   
    We are getting close to a 4.0 beta. 
  9. Like
    jobplease reacted to Kurogane in Universal Module   
    I'm not sure if is a bug but when you create service option and have multiple options in "select" not store the option.
     
     
    How to reproduce it
     
    - Create a form and enable "Require Manual Review and Approval of All Orders"
    - Create a Service Options:
    Label: name
    Name: label_name
    Type: Select
    Value: test:Test|test2:Test2|test3:Test3|test4:Test4
    - Now order the package and select Test3 (can you select whatever but not Test)
    - When you order it, go to pending and click manage the package you order it,
    - In the Field "name" you will see the service options we create it.
    - You will see the option is selected as default Test and not test3 we selected in order form
     
     
    Also other problem, i'm not sure how is work really, i not understand what is the differences between the option hidden and secret anyways, when you select secret in admin side and the same when click manage there is not display secret field
  10. Like
    jobplease reacted to Rodrigo in [Blesta 3.2-3.5.1] How To Make Static Pages By Modifying Portal Plugin   
    Hi,
     
    I'm sharing a quick method for making custom static pages in blest system without any additional plugin. Please consider that any future update would require to take care of the changes made as they can be erased.
     
    In this example I'll be doing a static page that will be located in your_blesta_location.com/services
     
    1.1 Creating a static page with custom HTML
     
    1. Open plugins/cms/controller/main.php
    Find:
    else { $this->redirect($this->base_uri); } Replace for:
    else {                         switch($uri) {                           case 'services':                             $this->structure->set("page_title", "*** INSERT PAGE TITLE ***");                             $this->structure->set("title", "*** INSERT TITLE SHOWN ON PORTAL TEMPLATE ***");                             // Placeholders won't work with this method, so let's use variables $url = rtrim($this->base_url, "/");                             $blesta_url = $this->Html->safe($url . WEBDIR);                             $html = <<<EOT       <div class="col-md-4 col-sm-6 portal-box">         <a href="{$blesta_url}services>             <div class="well">                 <i class="fa fa-cogs fa-4x"></i>                 <h4>Foo</h4>                 <p>Bar.</p>             </div>         </a>     </div>     EOT;                             $this->set("content", $html);                             break;                           default:                                $this->redirect($this->base_uri);                         }  } You can repeat the php case for making all the static pages you want, putting HTML between the EOT marks (There should be no space or characters after EOT; mark). If you don't like the broken indentation you can try another methods for doing multi line strings in PHP, but I think using nowdoc is more easy when you need to insert html.
     
    1.2 Adding custom meta tags to the new static page (optional)
     
    1. Open plugins/cms/controller/main.php
    Find
    $this->set("content", $html); Add Before:
                                $metatags = <<<EOT <meta property="og:title" content="foo"/> <meta property="og:description" content="bar."/> <meta property="og:image" content="baz"/> <meta property="og:url" content="http://www.example.com/services"/>     EOT;                             $this->structure->set("metatags" , $metatags); 2. Open /app/views/client/bootstrap/structure.pdt (or in your own template)
    Find
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> Add after
    <?php echo $this->Html->ifSet($metatags) ?> Dev note: this could be easier if could find a way to get structure protected property values, then concat the metatags to an existing variable like $custom_head (Is there a method like $this->structure->get()?)
     
     
     
    Also, don't forget that the Portal plugin is being developed for being a fully functional CMS system, so this would not be needed in the future.
     
    Here is my result, I'm linking this custom static page from the blesta portal main page for linking to different order pages (currently in design and module coding process, blesta flexibility is awesome)
     
    Result:
     

     
    Setting what Facebook shows by modifying meta tags

    I hope somebody finds this useful
     
    Bye
     
    EDIT: fixed a detail in $url definition
    EDIT2: Added how to add custom html into <head>
    EDIT3. Confirming that this still works for Blesta 3.5.1
  11. Like
    jobplease reacted to jobplease in Looking For Reliable Setup   
    Using a control panel yes. cPanel.
  12. Like
    jobplease reacted to timnboys in Security For New Orders   
    actually michael dance the fraudrecord db check and vpn / proxy check are two different functions the fraud module does it first checks fraudrecord's db to see if there listed if they are it stops the order(but before it has done this it has also checked for vpn/proxy as well) and if they're not listed it continues to do the next check which is checking for vpn/proxy and if either or both checks return true or basically return back that there listed or/and a vpn/proxy it blocks the order and refuses to allow them to continue as hey why even let them even get to the checkout part when you can stop them before any chargebacks etc are even possible lol.
  13. Like
    jobplease reacted to Paul in Installing Just Email Templates   
    I think you have the ticket open right? And you somehow lost or deleted all your email templates?
     
    You need to do a fresh install under a different database, and export the SQL for the "emails" table, then import it into the original database. You can do this with PHPMyAdmin most easily. 
  14. Like
    jobplease reacted to james08 in Questions About Sslstore/gogetssl Modules And Services   
    All the SSL/TLS certificates  of The SSL Store™, are bought in bulk in extremely large quantities, which makes it easier to provide big discounts to clients. Apart from that, The SSL Store™ offers 24x7 Tech support for all the clients. So, feel free to go with The SSL Store™.
     
    Regarding the question you have for cPanel, I would like to share one blog post which will clear all your doubts. 
     
    Link: https://www.thesslstore.com/blog/which-ssl-reseller-program-has-the-best-cpanel-plugin/ 
     
    and for queries you got for Blesta, here's the answer for that, they itself suggest the module of The SSL Store™, so I can bet on it you won't regret your decision on choosing The SSL Store Module. Here's the link: http://www.blesta.com/forums/index.php?/topic/1636-module-thesslstore/
  15. Like
    jobplease reacted to Paul in Stacktron Is Finally Done! :d   
    Nice, congrats! 
  16. Like
    jobplease reacted to PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    @Tyson / @Licensecart / @Jonathon
     
    Thnks
     
    @jobplease
    I will update after the 4.0 or 4.1 because there is nothing to update just right now
  17. Like
    jobplease got a reaction from Paul in Blesta Litespeed Error   
    Thank you all. Appreciate the effort.
  18. Like
    jobplease got a reaction from Paul in Blesta Litespeed Error   
    same here, My errors fixed also.
  19. Like
    jobplease reacted to Tyson in Error On A Fresh Install   
    Are you using xCache? If so, try disabling it. A couple other threads (here and here) report an identical issue when using xCache.
  20. Like
    jobplease reacted to evolvewh in New Support Ticket Status: On Hold   
    I just added this and wanted to share. I do not see any issues on our side and I did not do anything to modify the clients views. I looked at their view and it's acceptable as is for us.
     
    Blesta Version: 3.6.1
     
    Warning: BACKUP your files and database first!
     
    If anyone has suggestions or sees something I did wrong, please let me know.
     
    Files to modify:
     
    plugins/support_manager/views/default/admin_tickets.pdt
     
    Add after Line 7:
    array('name'=>$this->("AdminTickets.index.category_on_hold", true) . " <span>(" . $this->Html->($status_count['on_hold'], true) . ")</span>", 'current'=>($this->Html->ifSet($status) == "on_hold" ? true : false), 'attributes'=>array('href'=>$this->base_uri . "plugin/support_manager/admin_tickets/index/on_hold/", 'class'=>"ajax")),
     
    plugins/support_manager/language/en_us/support_manager_tickets.php
     
    Add after Line 51:
    $lang['SupportManagerTickets.status.on_hold'] = "On Hold";
     
    plugins/support_manager/language/en_us/admin_tickets.php
     
    Add after Line 27:
    $lang['AdminTickets.index.category_on_hold'] = "On Hold";
     
    plugins/support_manager/models/support_manager_tickets.php
     
    Add after Line 266:
    where("support_tickets.status", "!=", "on_hold")->
     
    Add after Line 1029:
    'on_hold' => $this->_("SupportManagerTickets.status.on_hold"),
     
    plugins/support_manager/controllers/admin_tickets.php (adds the status count)
     
    Add after Line 90:
    'on_hold' => $this->SupportManagerTickets->getStatusCount("on_hold", $this->staff_id),
     
    Add after Line 149:
    'on_hold' => $this->SupportManagerTickets->getStatusCount("on_hold", $this->staff_id, $client->id),
     
    In your database, go to the support_tickets table and under structure, add the following to the Status column: 'on_hold' (I added it right before 'closed')
  21. Like
    jobplease reacted to Paul in Next Eta For Update   
    The mass mailer is effectively done pending a few tweaks. There is 1 more planned sprint, and possibly 1 more after that depending on how things look. There is no official ETA, but if I were to guess I'd say beta in April.
     
    Since 4.0 is a major release, we will likely have a couple more beta releases than normal. During beta's we usually have a release once a week. We will be looking for feedback during the beta on new functionality as well as any bugs.
  22. Like
    jobplease reacted to PauloV in New Support Ticket Status: On Hold   
    Its easy to implement I will add this on the next release of my Support Manager Pro
  23. Like
    jobplease reacted to niyo in Hosting With Domain Registration Add On   
    Hey Paul, thanks for the reply, but ordering just domains isn't the issue the OP or I have. The problem is ordering domains with hosting. Please see below:
    http://www.blesta.com/forums/index.php?/topic/5909-logical-order-forms-for-domains-and-hosting/?p=41736
     
    thanks 
  24. Like
    jobplease reacted to Blesta Addons in Hosting With Domain Registration Add On   
    they are working in v4.0 , no ETA for it now, but it seem near . after that the v4.1 will come .
  25. Like
    jobplease reacted to Blesta Addons in Hosting With Domain Registration Add On   
    another thread !!!!!!
     
    i hope this enougn for the staff to begin working in a sooner solution for hosting/domain order form .
×
×
  • Create New...