Jump to content

Search the Community

Showing results for tags 'bug'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • News
    • The Lounge
  • Community
    • Pre-Sales Questions
    • Support
    • The Marketplace
    • Contribute
    • Show Off
    • Feature Requests
    • Bugs
    • Contests
  • Developer Corner
    • General
    • Extensions
  • BlestaStore's Forum
  • BlestaStore's BlestaCMS
  • BlestaStore's Resellers
  • BlestaStore's BlestaForums
  • BlestaStore's Promotions
  • CubeData's Official Announcements From CubeData
  • CubeData's Peer Support
  • CubeData's Resellers
  • ModulesGarden Club's Topics
  • Blesta Addons's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Wire


Location


Interests

Found 11 results

  1. 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'; } }
  2. Hi! My order form works great until I add a package, once a package is added I get a ERR_TOO_MANY_REDIRECTS upon clicking the order nav link. I've tried to disable cloudflare ssl rules and are running on http only for debugging purposes trying to fix this issue. Am I missing something? Regards, Sixten Peterson
  3. Periodically, when I login to Blesta, it reports "Your license successfully revalidated. Please log in." I then have to login again - is this really necessary? It seems to be a needless aggravation. Additionally, I have a lifetime license, why is Blesta validating my license if it's perpetual?
  4. Upon trying to use VestaCP module 1.10 on the latest Blesta release I get the error: "An internal error occurred, or the server did not respond to the request." I've also allowed all UDP/TCP on my Debian server's firewall running VestaCP. Also I've confirmed all module details are correct. Can anyone confirm this is up to date and works at all with Vesta? If so, do you have any idea what could be wrong?
  5. when change before date bug found. ============================= customer last date is 20-1-2018 normally 10 days before invoice send set but i think and change 12 days before send invoice than on night these three invoice generate for 1 service.
  6. adrzei

    Rounding errors

    Hello, With the last annual financial statement we found some rounding errors in our outgoing invoices (15-20%). Example (negative invoice): Correct calculation: -0,1103 * 1,19 = -0,1313 = -0,13 Example (positive invoice): Correct calculation: 16,18 * 1,19 = 19,2542 = 19,25 How are these values calculated?
  7. Hi, When a customer is deleted, his or her contacts should also be deleted from the database. I am missing the database dependency between clients and contacts table? Why is there no dependency for such cases? PS: It should also be checked whether there are further dependencies missing in other places and thus data corrupt.
  8. Blesta won't output anything to php error log even with Error Reporting set to -1 I cannot even figure out why I don't get any output as to why my scripts return a 500 error when blesta won't tell me anything. Blesta v4 beta 5 is the one I am using.
  9. Doug found a white page, and the error when error_reporting is on, is the following: Undefined variable: e The same as what happened on our PHP7 testing. Pages effected: /admin/settings/company/general/localization/
  10. Hey All, I was having a problem with the "Pay Now (No Login Required)" link being broken when using the default email templates. While the documentation says to use the full filesystem path for the "Root Web Directory", that causes the URLs in my invoice emails to include the full file system path in the URLs. See here: http://docs.blesta.com/display/user/System+%3E+General -> "Root Web Directory The full server path to the web directory where Blesta is installed." Other searches in the forum seemed to confirm the use of the full server path. Am I alone in seeing this? If not, how has everyone else solved this? If so, any thoughts on what I might have done wrong? My Blesta setup is quite close to stock. ******************** After burning too much of a day on understanding what's going on and wrestling with mod_rewrite, I have a workaround. I'd still like to find a proper fix, but at least my clients won't be confused by being sent to my Blesta main page. Posted here so others who encounter this can save some time and headache. Add to .htaccess # Fix broken Pay Now Links RewriteCond %{Request_URI} ^<FILE SYSTEM PATH>/client/pay/method(.*)$ RewriteBase / RewriteRule ^<FILESYSTEM PATH>/client/pay/method/(.*) /client/pay/method/$1 [R=301,NC,L,NE]
×
×
  • Create New...