Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/15/2019 in all areas

  1. 2 points
  2. So you would like to integrate Blesta into your theme but don't know how to? Why pay for expensive integrations when you have to relay on them replying in time and giving you updates when you need them when you can do it yourself. If you can't do it I highly recommend you use a third party integration company. I personally recommend ExpertIntegrations.com but you can use Blestaintegrations.com, etc. Today I will be using the theme Appy. It's a free theme if you KEEP the copyright otherwise you have to pay to have permission to do so. Meaning you are not allowed to remove footer credits for that you must purchase a License. Download the theme from: https://colorlib.com/wp/template/appy/ Extract the files to your computer and create the folder on Blesta in /app/views/client/ In this tutorial we're calling it appy. You'll need to copy the files from the default bootstrap folder to the new one appy. After you want to upload the files from Appy to the custom theme folder you are creating. /css /fonts /images /js /style.css Next we need to add the images to the root of Blesta so the CMS can use them straight away. So simply copy the images folder to the root of blesta like so: Back to the theme let's rename it to Appy. In the folder: /app/views/client/appy/ Find the following: config.json with: { "version": "1.0.0", "name": "Bootstrap", "description": "Built on Bootstrap 3.1.", "authors": [ { "name": "Phillips Data, Inc.", "url": "http://www.blesta.com" } ], "require": { "blesta": ">=3.2.0" } } Rename the name to anything you like. I'm going with Appy. So mine looks like: { "version": "1.0.0", "name": "Appy", "description": "Built on Bootstrap 3.1.", "authors": [ { "name": "Phillips Data, Inc.", "url": "http://www.blesta.com" } ], "require": { "blesta": ">=3.2.0" } } Finally go to Blesta and enable the theme so we can start integrating the theme. Go to: Settings > Company > Look and Feel Click on Template on the left and click Appy (or your chosen name).
    1 point
  3. Jono

    Blesta TCAdmin problem

    Would you mind updating components/modules/tcadmin/api/tcadminapi.php line 68 from: if ($host_name_output != false) { to if ($host_name_output != "<?xml version='1.0'?><document></document>") { The visit the page again and post the log. It looks like the module has an bug with logging errors properly, I've created a task on github to fix this.
    1 point
  4. 1 point
  5. You'll need to escape characters for JSON when entering them manually. In your example, the backslashes should be escaped: /((?=.*\\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[\\W_]).{6,18})/i
    1 point
  6. Not working in blesta with the following regex: "rule":["matches", "/((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[\W_]).{6,18})/i"], requires at least 1 lower case character, 1 upper case character, 1 number, 1 special character. length between 6 and 18 character. But it works when tried through Regex testing https://www.regextester.com/
    1 point
  7. That's weird regarding your email, I see you're registered with that currently. Maybe the IPBoard Spam service had an issue with the address, because the email/domain is NOT blocked internally by us. We do block a lot of free email domains, but not yours. I'd like to build a Lightsail module, a few people have asked for it but it hasn't risen to the level of demand we need to move forward with it yet. Anyone want to sponsor?
    1 point
  8. hey whats up mate so many reserved posts and you said about integration but nothing in here
    1 point
  9. There you go, you've now integrated your first Blesta theme. Customers for the Premium CMS or have a Blesta license can download this integration already completed. https://blesta.store/client/plugin/download_manager/client_main/download/42/appy-cms.zip This post is reserved for any Questions you may have: 1. How to use the default Blesta logo but in white? Find: <?php } elseif (!empty($blesta_logo)) { ?> <img class="blesta" src="<?php $this->Html->_($blesta_logo);?>" alt="Blesta" /> Replace with: <?php } elseif (!empty($blesta_logo)) { ?> <img class="blesta" src="<?php echo $this->view_dir;?>images/logo.svg" alt="Blesta" />
    1 point
×
×
  • Create New...