-
Posts
9,522 -
Joined
-
Last visited
-
Days Won
185
Reputation Activity
-
Michael got a reaction from Benjamin Biswas in Logic Boxes - Getting Additional Info
You can edit the database.
1. Back up your database!!!!!
2. Go to the database and then find the service_fields
3. now go to the service you want's manage page you should see a link like the following: domain.com/admin/clients/editservice/350/571/ Now you see the LAST number (I've made mine bold for you) 4. In the table click on SEARCH. Search service_id for the number aka for me 571. 4.1. You can then update your KEY "domain-name"'s VALUE. If you don't get anything, go to 5.) 5. Insert a ROW to the table. service_id = 571 key = domain-name value = licensecart.com Each domain needs a domain-name and order-id field per service id. Eg: 13 domain-name licensecart.com 0 0 13 order-id 49346551 0 0 Order-id is the order number on the Logicboxes system. I did this type when I imported due to WHM** but I moved to 2.5 and then to 3.0 -
Michael reacted to Benjamin Biswas in Unicode problem, no special symbols
Hi everyone, I got the solutions about BDT (৳) showing problem in invoice, hopefully it will work for any others unsupported currencies symbol like Rupi/etc. You need to change the PDF invoice fonts basically from default to "freeserif". This font working for me, you may can retry with some others if you want. Location is: Blesta Admin---> Settings--->Company--->Billing/Payment--->Invoice Customization---> Font Family (freeserif), that's all.
-
Michael reacted to SystemFreaks in BlestaCRM - Advanced Statistics
Latest Version 1.1.3
FREE DEMO
FEATURES V0.8.0.BETA
Part 1 of BlestaCRM Bundle
Clients (Overview Data)
Top Clients Due
Top Clients Credit
Top Clients By Income (Overall, This Year, This Month, This Week, Today)
Top Clients By Services (Active, Suspended, Canceled, Pending)
Top Clients by Country The total number of active services per country in map format, as well as total active unique clients per country in a table beneath the map.
Credits Reviewer All the credits that you issued to clients between two dates you specify.
New Customers The total number of new customers, orders, and complete orders for the current year and compares each of these to the previous year on the graph.
Services & Packages (Overview Data)
Top Active Services (Overall, This Year, This Month, This Week, Today)
Top Canceled Services (Overall, This Year, This Month, This Week, Today)
Top Packages by Income (Overall, This Year, This Month, This Week, Today)
Top Packages by Sold (Overall, This Year, This Month, This Week, Today)
Packages Unordered (Packages never ordered by term)
Daily Performance A daily activity summary for a given month. Data in this report includes Completed Orders, New Invoices, Paid Invoices, Opened Tickets, Ticket Replies and Cancellation Requests.
Monthly Orders A breakdown of the number of units sold of each product per month per currency. This allows you to see your most profitable products.
Promotions Usage Usage statistics for each promotional code to see how often clients have used each promo code.
You can download it from here : Click Here
Any suggestion or bug report is welcome, we had test the plugin on our system and it works well (based on 1 currency)
-
Michael reacted to Paul in IS the $750 Lifetime, really lifetime?
The license "Blesta Owned Lifetime" does not have a yearly fee for updates. It's a special license type, that we may limit future sales of, adjust pricing, or discontinue sales for at anytime without notice. Those that have it will not need to pay anything in the future.
-
Michael reacted to Jason Ryan in Blesta Not Downloading Tickets from Mail Server
For anyone else who may come across this issue, it wound up being that it was due to Error Reporting being on and Debug was set to "true". It is unclear as to why this would only cause the downloading of emails to fail and nothing else, seems counter intuitive to me, especially using debug in Wordpress is generally used to find issues, not cause them.
It is fixed now and back to normal.
-
Michael reacted to Alk in Support Manager Plugin causing errors in Blesta logs on PHP 7.4
Having applied the fix suggested and re-tested as before, I can confirm that your fix has resolved the errors for both the Support Tickets and the Knowledgebase. Brilliant - thank you so much Jono!
-
Michael reacted to Jono in Support Manager Plugin causing errors in Blesta logs on PHP 7.4
This seems to happen on php7.4+. To fix replace vendors/blesta/Parsedown/Parsedown.php line 130 from:
$CurrentBlock = null; To
$CurrentBlock = ['type' => '', 'element' => ''];
-
Michael reacted to Jono in 5.1 domains_tlds does not exist error (error viewing and creating services)
This error occurs when the new Domain Manager plugin is not install. To resolve, install the Domain Manager or perform the following code changes:
In core/Pricing/Modifier/Type/Description/Type/Domain/Domains.php around line 232 replace:
try { Loader::loadModels($this, ['Domains.DomainsTlds']); $tld = $this->DomainsTlds->getByPackage($package_id); $package = (isset($tld->tld) ? $tld->tld : $package); } catch (Throwable $e) { // Nothing to do } With
Loader::loadModels($this, ['PluginManager']); if ($this->PluginManager->isInstalled('domains', \Configure::get('Blesta.company_id'))) { Loader::loadModels($this, ['Domains.DomainsTlds']); $tld = $this->DomainsTlds->getByPackage($package_id); $package = (isset($tld->tld) ? $tld->tld : $package); }
In core/Pricing/Presenter/Items/Service/ServiceDataItems.php around line 139 replace:
try { Loader::loadModels($this, ['Domains.DomainsTlds']); $tld = $this->DomainsTlds->getByPackage($packageId); if (isset($tld->tld)) { $fields['_data']['item_type'] = 'domain'; } } catch (Throwable $e) { // Nothing to do } With
Loader::loadModels($this, ['PluginManager']); if ($this->PluginManager->isInstalled('domains', \Configure::get('Blesta.company_id'))) { Loader::loadModels($this, ['Domains.DomainsTlds']); $tld = $this->DomainsTlds->getByPackage($packageId); if (isset($tld->tld)) { $fields['_data']['item_type'] = 'domain'; } }
In core/Pricing/Presenter/Items/Service/ServiceItems.php around line 118 replace:
try { Loader::loadModels($this, ['Domains.DomainsTlds']); $tld = $this->DomainsTlds->getByPackage($packageId); if (isset($tld->tld)) { $fields['_data']['item_type'] = 'domain'; } } catch (Throwable $e) { // Nothing to do } With
Loader::loadModels($this, ['PluginManager']); if ($this->PluginManager->isInstalled('domains', \Configure::get('Blesta.company_id'))) { Loader::loadModels($this, ['Domains.DomainsTlds']); $tld = $this->DomainsTlds->getByPackage($packageId); if (isset($tld->tld)) { $fields['_data']['item_type'] = 'domain'; } }
-
Michael reacted to Cryptonized in Issue with theme, order page broken
Nevermind, found the issue, was just missing 2 files for partial fields and package options, all fixed now
-
Michael got a reaction from SW Hosting in Ability To Change /admin Url
Sorry I put it on your other thread:
Go to /config/routes.php edit the following:
/** * Admin panel directory name */ Configure::set("Route.admin", "admin"); /** * Client panel directory name */ Configure::set("Route.client", "clients"); -
Michael reacted to renjith.vs in Domain Checker
HI Micheal, I figured out somehow.. Now it seems fine...
Thank you!
-
Michael reacted to Jono in [Domain Manager] Unify Functions Action in modules
Haha, no. The goal is ~2 month between beta releases. 5.1 took ~6 months because we had a lot in there (primarily the Domain Manager).
-
Michael reacted to Jono in [Domain Manager] Unify Functions Action in modules
Love it, thanks for the input Can't guarantee it for 5.1 but I'll look at getting it in 5.2 or 5.3. https://dev.blesta.com/browse/CORE-4342
-
Michael got a reaction from Blesta Addons in ClientOrder is not a valid controller
I believe Paul mentioned this in the live stream yesturday that it was being fixed.
-
Michael got a reaction from cluster in change language via GET and POST requests?
You should have a dropdown on show for switching languages.
-
Michael reacted to Gigaion in [Module] Sonicpanel Billing Module (now open source!)
This thread has been modified to show that this module is now open source. This code is no longer maintained but now available to the public:
https://github.com/Gigaion/module-centovacastpanel
https://github.com/Gigaion/module-centovacastpanelreseller
https://github.com/Gigaion/module-sonicpanel
https://github.com/Gigaion/module-sonicpanelreseller
(Last edit: November 13 2022. This post above has been simplified to show this is now open source instead of closed source)
-
Michael reacted to WHMCSGlobalServices in aws lightsail module coming soon
Dear all the community user,
After successful launch of ClientX theme for Blesta we are pleased to announce that we are developing the AWS lightsail module which is coming with following features :
Client Area Feature :
Start, stop, and reboot the server from Blesta Client Area. Set up Configurable options like Regions, Instance Plan, Snapshot, etc. Add the number of Snapshots while ordering a product. Add the additional disk while ordering a product. Manage (Add, Update, Delete) firewall rules accordingly. Get metrics data in the Blesta client area. Admin Area Feature :
Simply create a new instance/VPS. Instantly auto Suspend an instance/VPS. Auto terminate a VM as per business needs. Automatically assigns static IP while creating a new VM. Restrict the selection of Blueprints from the admin panel. Define a specific server region in which the clients can create VM’s.
25% Discount on ClientX theme : Coupon code " 25clientx "
Any Blesta module or theme development please contact us here : https://whmcsglobalservices.com/custom-blesta-development-services/
-
Michael reacted to RikkerdNL in (release) Mollie payment Gateway
Hello,
Check the file: \components\gateways\nonmerchant\mollie\mollie.php and line: 78:
return array("EUR"); Change it to:
return array("EUR", "USD"); This is untested but I think it should work.
-
Michael reacted to linux4me in Migration from WHMCS 8.x, How to Set Up Domains
Hi Michael,
Yes, I did speak to Paul, and he was very helpful. He gave me the option of redoing the import with the Import Manager linked to here or to manually add the domains as a Service.
I'm not working with that many clients, so the solution was to:
Set up a Package Group called "Domains". Set up Packages for each domain TLD we sell. For each client with a domain, manually add a Service for the domain with "use module" unchecked. Edit the added domain Service (click "Manage"), resetting the renewal date, making sure that "use module" and "prorate" are unchecked -
Michael reacted to linux4me in Blesta on the Same Server as Interworx
Thanks! I'm working on the migration now.
-
-
Michael got a reaction from cluster in Base64 Encoded Email?
Okay I have no answer for that sorry I'll tag our lead developer in, I've never had issues with Yahoo, Hotmail or Gmail before though. @Jono
-
Michael got a reaction from cluster in prevent e-mails being sent from test migration?
Yes the cron job not being set will not send emails or anything.
-
Michael reacted to disenioweb in pre fill subject based in department
Thanks Michael..., Jay from supportpal gave me the code, but this will pre fill the same subject for all departments...and i needto have other subject...
Gabriel
-
Michael got a reaction from Davor in Limit the number of records in MySQL database?
I don't think so however I'll ask my manager Paul on Monday when he's back in the office.