Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I am just following up on this. I would really like to remove all domains from all customers. I'll just add it as a custom line item on a recurring invoice. The domain management has been broke for quite some time now. If it is easiest for me to start with a fresh install of Blesta and import data over from my current install then I can do that if you can provide instructions on how to do so without copying over the domains.
  3. Today
  4. The customer placed an order using a referral link, but there are no recorded sales or referrals. The order was made through the link https://exampledomain12.com/blesta/order/forms/a/Nzk= and the payment was successful. However, the affiliate overview indicates 5 clicks, 0 total sales, and both mature and pending referrals are at 0. In the client's affiliate settings, the following configurations are in place: - Order frequency: any - Order recurring: checked - Commission type: fixed - Excluded package: unchecked for the packages intended for affiliates What could be wrong with my setup? Is there another setting I might have overlooked? Thanks for any help
  5. Last week
  6. Earlier
  7. Hello, Virtus is still in Beta therefore we are sending it manually to our clients till 0.3 release. Reach us at info (at) aalayer.com
  8. Hi, Hope someone can help. So I am using the Blesta CMS Pro module provided by Blesta.Store not affiliated with Blesta.com and I am wanting to add mate tags for additional pages I have done this from the plug in for the home page but it seems to not work for additional pages. Can anyone advise if there is something I can add to the structure.pdt file that will achieve this for additional page please? Appreciate any reccomandations or advise. Thank you
  9. Easy is our goal! Glad I could help.
  10. Hi Paul, Thanks for your response. It seems that Blesta made it easy to adjust the logo πŸ™‚ Thanks
  11. Thanks for the report, we created the following task https://dev.blesta.com/browse/CORE-5471
  12. Hi there! You just drag the logo and scale it up and down under Settings > Company > Look and Feel > Customize, for Staff or Client areas. Note it only works if you upload your own logo here.
  13. Hello, I'm still new to blesta (used to work with WHMCS) and i'm configuring blesta now with our logo. Our logo is a bit small in the header so i want to adjust the height. If i check inspect element in the browser i see an inline css with a height of 32px. I want to change that to 54px, what looks better for our logo. I've search for the file to adjust this, but can't find it. Does anybody now which file (filename) i need to edit? i added a screenshot in the attachment. Thanks Elias
  14. I've got Android 13 on my tablet with chrome fully up to date. I installed edge and Firefox in an attempt to resolve the issue. Although in any of the browsers I can click on any of the package groups I'm unable to drag and drop down. I'm also unable to use the arrow keys to move them between. I also attempted it on the demo and experience the same issue. Orientation does not matter either. Whether selecting mobile or desktop version of site in the way the browser calls, by using the specific setting in the browser, makes no difference either.
  15. 200USD Fixed Peice. If you agree I can sell 100 If Custom Agreement PM me on Whatsapp.
  16. Hello, I have recently added Stripe Payment Gateway. It works perfectly. Question: how do I make it as default Payment method instead of PayPal?
  17. Hello! I see Blesta's fraud integrations only listing Maxmind and FraudLabs Pro. Has anyone tried out Sensfrx? I recently found it in a group I am in and trying to find more information. They are actively selling a lifetime deal and also doing a giveaway. Not sure if I can link here though. Just wanted to share for awareness and see if anyone has tried it yet.
  18. When selecting a field for a password, it shows the dots, which is what it is supposed to do. But is there a way support can see the information, other than changing the field to a Text field? Or being able to toggle the visibility? This is necessary when working on 3rd party servers. Thanks
  19. Hello, I ordered a theme and I haven't received it and I can't find your contact details.
  20. MovieBox Pro is a top-rated streaming that lets you enjoy movies and shows in HD and 4K on your favorite device. It has something for everyone, with a huge selection of content ranging from Hollywood and Bollywood movies, TV series, and live sports. The app works across various platforms, including Android, iOS, Mac, Apple TV, Android TV and Roku TV. Follow the download links below to get the latest version for your device and start streaming today.
  21. Under Settings > Plugins > Manage for PHPIDS, there's a Logs tab. This log should contain more information. Most likely someone was attacking your installation with malicious requests, which PHPIDS blocked.
  22. Just got several emails re this. The first issue I have had since installing Blesta'. Should I be worried?
  23. I'm selling a Blesta Owned Unbranded License for $300 USD. πŸ”Ή License Details: βœ… Owned – Lifetime access, no renewals βœ… Unbranded – No β€œPowered by Blesta” footer βœ… Transferable – I will pay the $25 transfer fee βœ… Same features as directly from Blesta 🎁 Bonus: I will include one addon company at no extra charge (normally a paid $95 upgrade)! Save $95 πŸ’³ Payment Options: PayPal Bank Transfer to our registered company account (preferred ) πŸ“¦ What’s Included: License transfer to your Blesta account Addon company enabled I handle the transfer fee with Blesta πŸ“© Contact: PM me
  24. When editing a contact in admin, Blesta triggers the Contacts.get event for plugins to append custom properties to the contact object passed in params. The addt'l properties are present in the resultant Blesta view. But as soon as try to save the contact, a 500 error. Below is the error logged. This problem did not exist in v5.11.3. I believe it just surfaced after patching to v5.11.4. [2025-06-09T23:06:02.853593+00:00] general.ERROR: E_RECOVERABLE_ERROR: Object of class stdClass could not be converted to string {"code":4096,"message":"Object of class stdClass could not be converted to string","file":"/chroot/home/%username%/%userdomain%/html/app/models/contacts.php","line":401} The error is triggered within Blesta's Contacts Model on line 401 within the edit() method: // Calculate the changes made to the contact and log those results $diff = array_diff_assoc($old_contact, (array) $new_contact); At that point in code, the Contacts Model has first retrieved an old_contact record using $this->get(), and a new contact record also using $this->get(). The added properties are present in the $old_contact and $new_contact variables during the attempt to save the contact. PHP is throwing the 500 error because the contacts being compared have nested properties. If we just assign properties like: $contact->property1 = 'value #1'; $contact->property2 = 'value #2'; $contact->property3 = 100; Then there is no 500 error. But if we assign an object (or even an array) as a custom property to the contact, 500 error when save. Reporting this as a bug only because if we are permitted to append properties to a contact object in Blesta, then we need a way to encapsulate those appended properties such that another plugin that ALSO appends custom properties does not have potential to overwrite our plugin's custom properties. You can replicate this problem by having one or more plugins listen for the Contacts.get event. Here is a short excerpt of basically what we are doing. We could either define a custom array property, or object property. They both yield 500 when saving. // event handler for Blesta's Contacts.get event trigger public function getContact( $event ) { $params = $event->getParams(); $contact = $params['contact']; if( $contact ) { // append arbitrary data to contact using a nested property (this WILL trigger 500 error when Blesta saves the contact) $contact->meta = new \StdClass; $contact->meta->member_number = 93; $contact->meta->ancestor = 537; // append arbitrary data to contact using simple property (this will NOT trigger 500 error when Blesta saves the contact) $contact->member_number = 93; $contact->ancestor = 537; // set modified contact back into params $params['contact'] = $contact; } // set params back into event to pass back to trigger $event->setParams($params); }
  25. How can i register a user with the API? I have a hard time making sense of the API documentation. πŸ™ƒ Just a small example would be appreciated. i just need to see an example, to wrap my head around it.
  26. I have not been able to reproduce this on PHP 8.3, however we did make a similar update as suggested to account for this change in behavior in PHP 8.3 per CORE-5452, which will be included in 5.12.
  1. Load more activity
×
×
  • Create New...