Jump to content

Deactivat3d

Members
  • Posts

    17
  • Joined

  • Days Won

    5

Reputation Activity

  1. Thanks
    Deactivat3d got a reaction from Paul in Porting software from WHMCS to Blesta   
    The priority categories exist from Low to Critical/Emergency level. There's nothing connected that makes this paid for users but sounds like a possible plugin?
    Blesta CMS is a third party plugin by Blesta.store which adds CMS features to Blesta. I am only using the community (free) version which allows me to create pages and blog posts with their own descriptions and URLs.
    The blog posts have comments enabled and author profile under each post. You can use the blog features for any page on Blesta like a news section for example. The URLs are friendly for posts and afaik you can set a featured image.
    Things like social media sharing could probably be easily done using whatever platform's tools are available.
    Yes, Blesta offers a multiple company licensing option so you can essentially license another brand on the same, but separate, installation.
    This aside, I would appreciate invoicing for manually added credits just to keep track of things. Maybe one for https://requests.blesta.com/
    Closed is essentially "Settled".
    As far as I know, when you download a PDF invoice it will use the information at that time. Definitely a good improvement to be had.
     
  2. Like
    Deactivat3d reacted to blestamodules in Blesta to Xero, Quickbooks and QuickFile Accountancy software   
    Hello,
    Although I cannot promise a completion date I have recently started working on a xero integration - as it stands it currently syncs contacts only I have many projects on the go now but have something in the works; this one along with Jira software bug tracking and IBP auto-registration are some of the first plugins we have planned as we are integrating into our own setups.

    Kind Regards
     
  3. Like
    Deactivat3d reacted to Paul in Porting software from WHMCS to Blesta   
    We have a task for VIES integration, CORE-3780 that we'll likely implement later this year. I'm not sure what you mean by split payment, not familiar with that EU regulation. Business type
     
     
    We don't have any country specific electronic invoicing yet, and no ETA.
     
     
    Credit notes are planned, but with proforma invoices it hasn't been a huge priority.
     
     
    Invoice formats can be customized for invoice, invoice drafts under Settings > Company > Billing/Payment > Invoice Customization, including tag replacement for year, month, day, invoice start value and increment value.
     
     
    Duplicate invoices and gaps in invoice numbers don't typically occur, unless an invoice is deleted manually. Payments that are not applied to an invoice remain as a credit on the account.
     
     
    Blesta can invoice monthly and handle automatic payments monthly, but I'm not sure if this is what you mean.
     
     
    Invoices are generated based on renew date, which can be pushed back. There's not a "pause" option that would back bill once unpaused, but that's an interesting idea.
     
     
    Public and private notes on invoices is supported, but they are not automatic based on some criteria.
     
     
    Overpayments are issued as a credit on the account and can be used for future invoices. Both overpayments and partial payments are supported in Blesta, and fully tracked.
     
     
    Not sure I follow on this one.
     
     
    Invoices that are fully paid are closed as soon as that occurs.
     
     
    Does not currently exist.
     
     
    Blesta will generate an invoice that may result in 0 due, but the invoice will be automatically closed.
     
     
    Changes to contact information is tracked and available under Tools > Logs > Contacts, but it's not easy to go back and see what it was when an invoice was originally issued. Planned for the future.
     
     
    Yes, implemented recently.
     
     
    Not familiar with this one.
     
     
    Not yet, but planned.
     
     
    Not supported.
     
     
    There is a report, but I don't believe it includes all of the details for invoices.
     
     
    There is currently no location based gateway restrictions, interesting idea.
     
     
    Order form supports embedding code like facebook pixel, or editing a template file for all of Blesta.
     
     
    Only when placing an order do they need to agree to terms. No option to force on updates.
     
     
    Blesta can send email via 3rd party SMTP, but I'm not sure if that's what you mean.
     
    Affiliates system was just released, includes recurring and one time. Commissions cannot be different per product, but it's planned for a future update.
     
     
  4. Like
    Deactivat3d got a reaction from Michael in Porting software from WHMCS to Blesta   
    Does Blesta issue unnecessary invoices? For example ones with "zero" amount, fully paid by credit, 100% discount...
    I believe so, I have had invoices set at 0 which I've cleared out before. What about CMS/SEO capabilities? Is there something usable or using a third-party CMS like WordPress is the only option you have?
    BlestaCMS by @Blesta.Store is the (Blesta specific) market leader for an integrated CMS client. Force customers to accept changes to terms and conditions like it works for PayPal
    It's just an acceptance box upon any package order. Late fees system
    This is a new(er) feature but exists for percentage or fixed amount. Download invoices, credit notes and proformas in CSV format
    Export Tax Liability, Invoice Creation, Package Revenue, Aging Invoices, Transactions Received, Custom Report, Transactions Applied Invoice overpayment (eg. total due 10, paid 12. What about the overpayment of 2 euro?)
    Overpayments are stored as a credit balance natively for use on future invoices.
  5. Like
    Deactivat3d reacted to Paul in Friendly URLs   
    I believe this is possible by creating a route, similar to the order manager which uses /order/ instead of /plugin/order/ See https://docs.blesta.com/display/user/Configuration+Files#ConfigurationFiles-routes.php for details. If you need help, creating the route, one of our devs may be able to help. It wouldn't hurt if we had some common examples in our docs anyway.
  6. Like
    Deactivat3d reacted to zulfikar wijaya in Edit navigation bar   
    Hi, I'm not coder or programmer (and cant speak english well too), but maybe you can try this :
    1. Copy your template to another template name or backup your template, just in case something gone wrong
    2. If needed, change client template views to new template (from admin dahsboard: Settings - Look and Feel - Template - Client Template)
    3. In new template, open file structure.pdt (in yourblestadomain/yourblestafolderifexist/app/views/client/yourtemplatename/structure.pdt)
    4. Find line <ul class="nav navbar-nav navbar-right"> around line 190; this is user menu block code which show Login/Logout/UserMenu in right side client navigation
    5. Above that code, add your links with html code unordered list (use same css class with main menu) for example :
    <ul class="nav navbar-nav"> <li><a href="https://yourdomain.com/blog/">Blog</a></li> <li><a href="https://yourdomain.com/kontak/">Message Us</a></li> <li><a href="https://anythingurl.com/">anything</a></li> </ul> or
    add html code unordered list without class in to main navigation block (before </ul>)
    <?php } ?> // Above is main navigation menu block <li><a href="https://yourdomain.com/blog/">Blog</a></li> <li><a href="https://yourdomain.com/kontak/">Message Us</a></li> <li><a href="https://anythingurl.com/">anything</a></li> </ul> // Below is user profile menu block <ul class="nav navbar-nav navbar-right"> <?php if ($this->Html->ifSet($logged_in)) { ?> <li class="dropdown"> 6. Save and check your blesta client page
     

  7. Like
    Deactivat3d reacted to Paul in Can I upgrade from version 4.0.1 to 4.1.10 by just PATCHING an existing install   
    We have ramped things up, tell your friends 
  8. Thanks
    Deactivat3d reacted to Paul in Can I upgrade from version 4.0.1 to 4.1.10 by just PATCHING an existing install   
    I think you mean 4.10.1? There is no 4.1.10. The answer is NO, patches are for patch releases only. Versions work like this MAJOR.MINOR.PATCH, so only when the PATCH versions changes can a patch be applied. e.g. 4.10.0->4.10.2.
    4.0.1->4.10.2 is a MINOR version upgrade, so the full release of 4.10.2 will be required, and files must be overwritten.
  9. Like
    Deactivat3d reacted to Michael in When there's no quanity for a package it redirect loops   
    So when you have an order form which has 1 product which has the product quanity of 0 it does a redirect loop when trying to go to the order form.
    PHP 7.3
    Blesta 4.11.0-b1
    As this hasn't been updated since 4.10.0 I think it's a bug.
  10. Like
    Deactivat3d got a reaction from Abdy 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. "
  11. Like
    Deactivat3d got a reaction from nahanil 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. "
  12. Thanks
    Deactivat3d got a reaction from Paul 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. "
  13. Like
    Deactivat3d reacted to nahanil in [Plugin] Support PIN   
    Support PIN Plugin
    Assign clients a support PIN to use when making contact.
    Features
    Configurable length PIN Client & admin widget Optional PIN expiration/rotation Validation API endpoint It's open sauce
    https://github.com/webmastery/blesta-support-pin/

    https://marketplace.blesta.com/#/extensions/98-Support PIN
     

  14. Like
    Deactivat3d reacted to Paul in change admin url   
    The admin navigation links are cached. To clear the cache, edit and re-save your staff group. Settings > System > Staff > Staff Groups: Edit & Save with no changes. That will force a cache clear.
  15. Like
    Deactivat3d reacted to vedova in Domain Manager - We need your feedback on domains   
    Ok, so have we to choose about iDevAffiliate or does make it more sense to wait for ver. 4.11 and Blesta own affiliate system? What are your suggestions about?
    Also if someone have now iDev or will switch to it, have we to expect some incompatibilities ?
    I mean also simple things like if an affiliate system cannot be switched off , you can find referring (link url etc) on the client portal or logged in client area of this integrated affiliate system.
  16. Like
    Deactivat3d reacted to Paul in Domain Manager - We need your feedback on domains   
    This is getting a lot more attention after we release the affiliate system, would should be in 4.11. Affiliate System, and Domain Manager are the 2 biggest items on our todo list right now.
  17. Like
    Deactivat3d got a reaction from Stu in Email Server or External Service?   
    Hi Stu,
    Google and others can be convenient but if you really care about your data you might want to self-host this.
    If you're not keen on that, you can meet in the middle and go with a mail provider that is smaller and more focused on the security and integrity of your data.
    Cheers
  18. Like
    Deactivat3d got a reaction from Jono in Email Server or External Service?   
    Hi Stu,
    Google and others can be convenient but if you really care about your data you might want to self-host this.
    If you're not keen on that, you can meet in the middle and go with a mail provider that is smaller and more focused on the security and integrity of your data.
    Cheers
  19. Thanks
    Deactivat3d reacted to Snicon in Order form does not work   
    I'll send you a PM, give me a minute.

    I've deleted the .htaccess file and there are no SSL rules for the sake of debugging the instance to make sure it's not due to SSL.
    Regards,
    Sixten Peterson

    EDIT
    Works now, tried a third browser. Thanks to SmallWeb for helping out.
  20. Like
    Deactivat3d reacted to Snicon in Order form does not work   
    Hi SmallWeb,
     
    Yeah, I had it working during my Trial and remember having the issue for a while. Also made some changes but can't remember what the heck I did.
    I've tried two different order types and different browsers. My apache logs have not been helping out. I'll continue to try different things. Thanks for your post.

    Regards,
    Sixten Peterson
  21. Thanks
    Deactivat3d got a reaction from Snicon in Order form does not work   
    Hi Sixten,
    My experience of this has only been brief and usually cleared up after a while, I don't remember the history of changes I made unfortunately.
    My first thoughts would be to try different order form types, clearing cache, cookies, trying other browsers and checking your website logs.
    Regards,
    Michael
  22. Like
    Deactivat3d got a reaction from Blesta Addons in Configurable Option Selects Different Server   
    With 9 location offerings and 3 packages per location, my package list is growing quite full.
    I decided to convert my reseller offerings to 3 packages, with 9 configurable options instead.
    To accept the order, I have to select the correct server (as opposed to the default package one) that correlates to the configurable option, and that's that.
    Some sort of automated connection between that configurable option and the server would be great to automate this.
    Cheers.
  23. Like
    Deactivat3d got a reaction from Blesta Addons in Namesilo and Blesta 4.9 integration   
    Thank you, it is PHP 7.3.17.
    Based on the latest Blesta release notes and core developments, I would say every one is working very hard. Happy to be patient on this one
     
     
  24. Haha
    Deactivat3d got a reaction from nahanil in Namesilo and Blesta 4.9 integration   
    Thank you, it is PHP 7.3.17.
    Based on the latest Blesta release notes and core developments, I would say every one is working very hard. Happy to be patient on this one
     
     
  25. Like
    Deactivat3d reacted to nahanil in Namesilo and Blesta 4.9 integration   
    @SmallWeb Which version of PHP are you using when the issue occurs? This is a known issue with the XML parser in PHP 7.3.17 and 7.4.5 specifically and not neccessarily Blesta itself https://bugs.php.net/bug.php?id=79528
    There is currently an open pull request for the namesilo module that fixes it https://github.com/blesta/module-namesilo/pull/9 and the next PHP releases should also fix the issue with the XML parser, but we will likely have to wait until early next week for the changes to be merged into the blesta module's master branch (cant work Jono too hard, he's probably already got too much on his plate) 

    https://github.com/php/php-src/commit/cb265a0addf15c5cf0c029f167a9de030150cf15
    https://github.com/php/php-src/commit/54148fd68677e8b13b5a11c309c601d1248fb78b
×
×
  • Create New...