Sabalico Support

Welcome to the Sabalico Support section. Here you will find documentation for each part of the framework, content management system and enterprise resource software. We also included several reference sections for the coding languages used to develop the software.

 

Warning: No Warranty

 

Please note we do not provide any free warranty support in setting up any of the framework, features, CMS or scripts. As it stands Sabalico is not really designed for the amateur user as there are far too many solutions out there to easily create your website online.

 

However we believe creating code to create code is redundant. Sabalico is meant for people who want to make a simple information or e-commerce site all the way up into advanced full stack coders who want to edit the software and make improvements

Sabalico Support
Frequently Asked Questions:
Framework Installation:

Option 1: Traditional

  <link rel="stylesheet" type="text/css" href="https://sabalico.dev/framework.min.css">  

Option 2: Optimized

In order to install the framework via Javascript simply include this code right before the </body> tag on every web page you wish to include it on. Using Javascript to deliver CSS can help with page speed as an alternative to the usual method.

  <script async src="https://sabalico.dev/framework.js"></script>  

To install the framework on your own server to edit as you wish simply upload the framework folder to your public_html root folder. This means it should be placed in the most top level folder that contains the admin folder, the index.php file as well as the templates folder.

Optimize Scripts:

Use this code to optimize your Javascript for delivery after the page has loaded.

  <script>window.addEventListener("DOMContentLoaded", function() {})</script>  

You can also defer Javascript using the following code for single or multiple scripts.

  <script>function parseJSAtOnload() { var element = document.createElement("script"); element.src = "script_to_be_deferred.js"; document.body.appendChild(element); } if (window.addEventListener) window.addEventListener("load", parseJSAtOnload, false); else if (window.attachEvent) window.attachEvent("onload", parseJSAtOnload); else window.onload = parseJSAtOnload;</script> 
  <script>function parseJSAtOnload() { var links = ["defer1.js", "defer2.js", "defer3.js"], headElement = document.getElementsByTagName("head")[0], linkElement, i; for (i = 0; i < links.length; i++) { linkElement = document.createElement("script"); linkElement.src = links[i]; headElement.appendChild(linkElement); } } if (window.addEventListener) window.addEventListener("load", parseJSAtOnload, false); else if (window.attachEvent) window.attachEvent("onload", parseJSAtOnload); else window.onload = parseJSAtOnload;</script> 
Framework Compression:
CSS
JS
Coding Reference:

Don't know how to code? Worry not as we will help get you up to having a working understanding of every programming language from HTML to CSS to Javascript to jQuery to PHP to mySQL and potentially beyond! If you ever wanted to make your own website but were not sure how this is the right place for you.

 

Having a working knowledge of programming languages is essential in being able to fully utilize the Sabalico system. By learning to code instead of relying on code to code you will not only be able to gain a mastery over a skill that can be quite profitable but you will probably have fun and learn quite a few things to.

 

While many other content management systems offer the ability to create a website with minimal to no coding ability, these are horribly lacking in the areas of Page-speed, SEO and other important sectors that offers no bonus to getting your site seen in the major search engine results.

 
CSS

Sabalico CMS - CSS Icon
PHP Sabalico CMS - PHP Icon
SQL Sabalico CMS - SQL Icon
 
 
Legal Information

The Sabalico framework is licensed as open-source under the Creative Commons 2.0 Attribution license which means you are free to do as you wish with them as long as you provide us some kind of credit in your project.