Grav – Server Error ”; Previous Next Server error occurs due to misconfiguration of Grav. When server has encountered an internal error or something happened unexpectedly, then Grav is unable to serve and recover the page. If the server is running in production mode, to hide the information from the user, a server error message occurs. All the error messages are logged in Grav.log file present under the folder <your_folder_name>/logs/Grav.log. Following are some of the reasons that may cause server error − Out-of-date configuration Incorrect file permission Invalid formatted configuration files Changes in file system not known to the Grav Out-of-date configuration You can flush the cache to check whether the configuration is up to-date or not. Use the following command to flush the cache. bin/Grav clear-cache Installation and configuration issues The issues for installation and configuration are − Configuration Issues Installation Issues System Requirement File Permissions Print Page Previous Next Advertisements ”;
Category: grav
Grav – Debugging & Logging
Grav – Debugging & Logging ”; Previous Next Debugging & logging information is very necessary while developing the themes and plugins. Grav uses the debugging information by using some features as described below. PHP Debug Bar Grav comes with a tool called the Debug Bar to display debugging information. By default, this feature is disabled. You can turn it on globally or use system.yaml for your development environment. debugger: enabled: true twig: true shutdown: close_connection: true After enabling the debugger true, you can view the following debug bar as shown below. Click on the G symbol which is present at the left side of the corner. In the debug bar, you can view the overall memory usage and the time used for processing at the corner on the right side. It also consists several tabs that provide information in detail. In the Messages tab, you can view the messages which will help you to debug your Grav development process and the information will get post to this tab from the code via $Grav[”debugger”]→addMessage($my_var). In Timeline tab, you can view the breakdown of Grav timing. Error Display It displays the error messages regarding the block or page at a runtime. In Grav, you can easily identify the error and resolve the errors very quickly. Following are the error messages that will get displayed on your screen as shown in the following screenshot. In the user/config/system.yaml file, you can disable the error page by setting it to false. errors: display: false log: true Logging Logging is used for reporting errors and status information from libraries and application. In Grav, there are a few important logging features as specified below. $Grav[”log”]->info(”My informational message”); $Grav[”log”]->notice(”My notice message”); $Grav[”log”]->debug(”My debug message”); $Grav[”log”]->warning(”My warning message”); $Grav[”log”]->error(”My error message”); $Grav[”log”]->critical(”My critical message”); $Grav[”log”]->alert(”My alert message”); $Grav[”log”]->emergency(”Emergency, emergency, there is an emergency here!”); All logging messages will get displayed in the Grav.log file which is present under the folder <your_folder_name>/logs/Grav.log Print Page Previous Next Advertisements ”;
Grav – Event Hooks
Grav – Event Hooks ”; Previous Next In this chapter, we will study about Event Hooks in Grav. In Plugins chapter you will see, the logic of plugin was included in two methods. The methods are onPluginsInitialized and onPageInitialized; these methods are similar to event hooks. To know more and control the power of Grav plugins, you need to check the availability of event hooks. The event hooks have a direct relationship with Grav from beginning to end. You must be aware of the order in which the hooks are called and what is usable at the time of these calls. The following table lists out the core Grav event hooks that are activated during the processing of a page. Sr.No. Event & Description 1 onFatalException You can fire this event at any moment, if PHP gives a fatal exception. The Problem plugin uses this to manage displaying a list of full explanation, for why the Grav delivers the fatal error. 2 onPluginsInitialized This is the first plugin event that is usable in Grav. The following objects have been introduced as mentioned below − Uri Config Debugger Cache Plugins 3 onAssetsInitialized This specifies that the assets manager is loaded and ready to use and manage. 4 onPageNotFound If you found an unexpected page, you can dismiss this event. Presently, the error plugin is used to specify a 404 error page. 5 onPageInitialized This specifies the requested page by a URL which is loaded into the Page object. 6 onOutputGenerated This specifies the output process by the Twig templating engine. Presently, it is just a string of HTML. 7 onOutputRendered This is an output process, which is sent to the display. 8 onShutdown This is a new and very powerful event that allows you to perform actions. This is done after Grav has completed processing and the connection to the client is closed. This individual action does not require any interaction with the user, in result can affect the performance. It includes the user tracking and jobs processing. 9 onBeforeDownload This is a new event which passes into the event object that contains a file. It allows the users to perform logging, grant and ignore permission to download the mentioned file. Twig Event Hooks Twig has its own collection of event hooks to use as mentioned below. Sr.No. Event & Description 1 onTwigTemplatePaths The template path”s base location is set on the Twig object. This event is used to add other locations where Twig will search for template paths. 2 onTwiglnitialized It initialize the Twig templating engine. 3 onTwigExtensions It specifies the core twig extensions is ready to use. This event hook allows you to add your own Twig extension. 4 onTwigPageVariables This Twig process permits you a page directly, i.e. you can locate process:twig:tru in a page of YAML headers. Here you can add any variables to Twig and should accessible to twig during this process. 5 onTwigSiteVariables In this process, you will see the full site template in order wise by Twig methods. Further, you can add any variable to Twig during this process. Collection Event Hooks The following table lists out a collection event hook. Sr.No. Event & Description 1 onCollectionProcessed In this section, once the process is completed you can control a collection. Page Event Hooks The following table lists out a collection of page event hooks. Sr.No. Event & Description 1 onBuildPagesInitialized This event is useful for plugins to control the content and cache the results. Once this event is activated the pages will be recycled. This occurs, when the cache has expired or needs refreshing. 2 onBlueprintCreated This event helps in processing and managing forms. 3 onPageContentRaw In this process, when a page is found, headers are fixed, but content will not be fixed. You will see every page is fired in the Grav system. If you have cleared the cache or clearing the cache this event occurs. 4 onPageProcessed Once a page is tested and fixed, every page is dismissed in the Grav system. Performance doesn”t matter in this case, since it will not play on a cached page. 5 onPageContentProcessed You can see this event is dismissed, once the page”s content() technique has fixed the page content. This event is useful in case, you want to perform actions on the post-fixed content but make sure that the results are cached. 6 onFolderProcessed Once a folder is tested and fixed, every folder is dismissed in the Grav system. Performance doesn”t matter in this case, since it will not play on a cached page. Print Page Previous Next Advertisements ”;
Grav – Plugin Basics
Grav – Plugin Basics ”; Previous Next In this chapter, we will understand how a plugin works as an additional functionality in Grav. Plugin is a piece of software that provides additional functionality which was not originally completed by Grav”s core functionality. Grav Plugin can be uploaded to expand the functionality of the site. Plugins are used to make your work easier. The Dependency Injection Container helps access the key objects in Grav. In the entire life cycle with the help of Grav”s event hooks, we can manipulate Grav as per our need and can also access whatever the Grav knows. We will study in detail about the Grav event hooks in the Chapter Grav – Event Hooks. Dependency Injection is a software design pattern in which components are given their dependencies instead of hard coding them within the component. There are many free plugins available for Grav which are used for displaying blog archive, sitemap, search engine, form, light slider and many more. You can download the plugins from here. In the Plugin folder, you can store the plugins with a unique name; the name should be related to the function of the plugin and it should not contain any capital letter, underscore or space. We will study about how to use plugin in the Chapter Grav – Plugin Tutorials . Powerful Plugins are easy to write, flexible and powerful. There are 46 plugins, and have the features that include displaying a sitemap, provides breadcrumbs, display blog archives etc. Essentials When Grav is installed on your system, you can see there are two plugins inside the <your_folder_name>/user/plugins folder. Error plugin Problem plugin Error Plugin − It is used to display the HTTP errors i.e. 404 Page Not Found when there is no request page available for the given URI. Problem Plugin − It is used for detecting issues regarding the permissions, hosting setup and missing folders. It is useful when you install new Grav for identifying such issues. Print Page Previous Next Advertisements ”;
Grav – Overview
Grav – Overview ”; Previous Next Grav is a flat-file based content management system. This system does not use database to store the content, instead it uses a text (.txt) file or a markdown (.md) file to store the content. The flat-file part refers to the readable text and it handles the content in an easy way which can be simple for a developer. Grav was developed by the Rocket Theme team. It runs on PHP and is an open-source CMS like Joomla, WordPress or Drupal. Why Grav? Grav is now the fastest flat-file content management system. It is easier to publish and manage content with Grav. It allows a developer to handle content very easily by storing content in files (such as text or markdown files) rather than in database. Grav helps you build a simple, manageable and a quick site. It costs less than the database driven CMS and is useful with I/O for file handling, when you don”t have enough resources. Features of Grav It is a fast, easy and powerful flat-file web platform. It is used to build websites with no extra tools or html knowledge. It uses text file or markdown file to store the content. It doesn”t use database, so this mitigates the instances of bottlenecking. It uses PHP based template provided by Twig which is parsed directly into PHP that makes it fast. Advantages It is not based on database CMS, so it”s very easy to install and will be ready to use when you upload the files to the server. It uses Markdown text files to make things easy. Using this, the content is dynamically converted to HTML and displayed in the browser. In case of security, Grav doesn”t have admin area and database. So there is no chance of hacking into account or in the database to access the important data. You can easily backup all the files to keep the backup copy of your website, since there is no database to backup. It is a piece of software which doesn”t require more time to learn. Disadvantages You might come across instances where unauthorized users may access your content from the files directly as there is no database for the files. It is difficult to build complex websites using Grav CMS. Print Page Previous Next Advertisements ”;
Grav – Useful Resources
Grav – Useful Resources ”; Previous Next The following resources contain additional information on Grav. Please use them to get more in-depth knowledge on this. Gravitation 20 Lectures 3 hours Tutorialspoint More Detail Class 9th – Gravitation 31 Lectures 4 hours Tutorialspoint More Detail How to Develop Gravitas: Be the Voice of Wisdom & Influence 25 Lectures 1 hours Mike Clayton More Detail Print Page Previous Next Advertisements ”;
Grav – Quick Guide
Grav – Quick Guide ”; Previous Next Grav – Overview Grav is a flat-file based content management system. This system does not use database to store the content, instead it uses a text (.txt) file or a markdown (.md) file to store the content. The flat-file part refers to the readable text and it handles the content in an easy way which can be simple for a developer. Grav was developed by the Rocket Theme team. It runs on PHP and is an open-source CMS like Joomla, WordPress or Drupal. Why Grav? Grav is now the fastest flat-file content management system. It is easier to publish and manage content with Grav. It allows a developer to handle content very easily by storing content in files (such as text or markdown files) rather than in database. Grav helps you build a simple, manageable and a quick site. It costs less than the database driven CMS and is useful with I/O for file handling, when you don”t have enough resources. Features of Grav It is a fast, easy and powerful flat-file web platform. It is used to build websites with no extra tools or html knowledge. It uses text file or markdown file to store the content. It doesn”t use database, so this mitigates the instances of bottlenecking. It uses PHP based template provided by Twig which is parsed directly into PHP that makes it fast. Advantages It is not based on database CMS, so it”s very easy to install and will be ready to use when you upload the files to the server. It uses Markdown text files to make things easy. Using this, the content is dynamically converted to HTML and displayed in the browser. In case of security, Grav doesn”t have admin area and database. So there is no chance of hacking into account or in the database to access the important data. You can easily backup all the files to keep the backup copy of your website, since there is no database to backup. It is a piece of software which doesn”t require more time to learn. Disadvantages You might come across instances where unauthorized users may access your content from the files directly as there is no database for the files. It is difficult to build complex websites using Grav CMS. Grav – Installation In this chapter, we will understand the installation of Grav. We will discuss the software requirements for Grav and also how to download it. Software Requirements for Grav Let us now understand the software requirements for Grav. Web Server WAMP (Windows) LAMP (Linux) XAMP (Multi-platform) MAMP (Macintosh) Nginx Microsoft IIS Operating System − Cross-platform Browser Support − IE (Internet Explorer 8+), Firefox, Google Chrome, Safari, Opera PHP Compatibility − PHP 5.4 or higher Text Editors Sublime Text (Mac / Windows/ Linux) Atom (Mac / Windows) Notepad ++ (Windows) Bluefish (Mac / Windows/ Linux) Download Grav Click on this link https://getgrav.org/downloads and follow the steps as shown in the screenshot given below to download Grav. Unzip the downloaded Grav file into your web server. Setup Wizard Installation of Grav is a very simple process. Follow the steps given below for Grav setup. Download the zip file and extract it to your web server or local host. Rename the folder from its current name that you want to use to refer to your site. Open your browser and navigate to localhost/<your_folder_name>, you will be redirected to a screen which shows you have installed Grav successfully as in the following screenshot. Grav comes with a sample page that helps you get started. In the above screenshot, you can see the home link which has displayed a sample page. Grav – Pages In this chapter, let us study about Grav Pages. Pages can be defined as building blocks of the site. Pages combine contents and navigations; this makes work easier even for the inexperienced users. To begin with, let us know how to create a simple page. All user contents will be stored under user/pages/ folder. There will be only one folder called 01.home. The numeric portion of the folder is optional; it expresses the order of your pages (for example, 01 will come before 02) and explicitly informs Grav that this page should be visible in menu. Let us now see how to create a new page. Step 1 − Create a folder under /user/pages/; for example, 02.about as shown in the following screenshot. Step 2 − Create a file called default.md inside the newly created 02.about folder with the following content. — title: About Us — # About Us Page! This is the body of **about us page**. The above code uses some Markdown syntax explained briefly below. You can study in detail about Markdown in Markdown chapter. The content between the — indicators are the Page Headers. # or hashes syntax in Markdown indicates a title which will be converted to <h1> header in HTML. ** markers indicates bold text or <b> in HTML. Step 3 − Reload your browser and you can see new page in menu as shown in the following screenshot. Page Types Grav Pages supports 3 types of pages − Standard Page. Listing Page. Modular Page. Standard Page Standard Pages are most basic type of pages such as blog post, contact form, error page etc. By default, a page is considered as a Standard Page. You are welcomed by a Standard Page as soon as you download and install the Base Grav package. You will see the following page when you install Base Grav package. Listing Page Listing Page is an extension of a standard page which has a reference to a collection of pages. The easiest way to set up the listing page is to create child pages below the listing page. A blog listing page is a fine example for this. A sample Blog Skeleton with Listing Page can be found in the Grav Downloads. A sample one is shown in the following screenshot.
Grav – Web Hostings
Grav – Web Hosting ”; Previous Next Hosting, also known as website hosting, is a process of maintaining and organizing a website and provides access to the websites via the World Wide Web. In simple words you can say, it is a service providing platform for web sites on the Internet. Grav supports different types of hosting services − Rochen Web Hosting WireNine Crucial Web Hosting Arvixe SiteGround Dreamhost Rochen Web Hosting It can be used for both GetGrav.org and RocketTheme.com as long-term hosting provider. It uses SSD drives, Litespeed web servers along with Intel XEON processors to enhance Grav performance. It provides two types of options; one is Shared hosting and the other one is Burst hosting. For more information on Rochen Web Hosting, click this link. WireNine WireNine provides reliable web hosting services for the customers in over 665 countries. It uses Intel Xeon E5 v3 CPUs, DDR4 ECC ram, and redundant RAID SSD storage for enhancing server”s functionality. It provides maximum reliability and stability to ensure 100% uptime. It includes optimized software”s such as CloudLinux, Litespeed, MariaDB, PHP, Ruby, Python, Perl etc. Visit this link for information on WireNine hosting. Crucial Web Hosting It is another web hosting type that focuses more on speed and support. It uses SSD drives, Litespeed web servers along with Intel XEON processors to enhance Grav performance. You can get more information on Crucial Web Hosting in this link. Arvixe Arvixe is a web hosting type, which provides web hosting with a combination of unmatched reliability, quality and affordability. It has won numerous web hosting awards for providing good functionalities in the web hosting field. For more information on Arvixe Web Hosting, click this link. SiteGround It provides hosting solutions for Joomla, WordPress, Magento and other web applications. It has tagline as Web Hosting Crafted With Care which handles web hosting plans carefully and provides new techniques that make your website run faster. Just visit this link for information on SiteGround hosting. Dreamhost It provides list of features by providing more functionalities to your personal or business related web hosting needs. It has ultra-fast SSDs and new dedicated servers with up to 64GB RAM. For more information on Dreamhost Web Hosting, click this link. Print Page Previous Next Advertisements ”;
Grav – Interview Questions
Grav – Interview Questions ”; Previous Next Dear readers, these Grav Interview Questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of Grav. As per my experience good interviewers hardly plan to ask any particular question during your interview, normally questions start with some basic concept of the subject and later they continue based on further discussion and what you answer − What is Grav? Grav is a flat-file based content management system which doesn”t use database to store the content instead it uses text file (.txt) or markdown (.md) file to store the content. Why to use Grav? Grav is a new type of fastest flat-file content management system which is easier to publish and manage content. It allows developer to handle content very easily by storing content in files (such as text or markdown files) rather than in database. If you want to build simple, manageable and quick site, it”s better to select the Grav flat-file CMS. It costs less than the database driven CMS and is useful with I/O for file handling, when you don”t have enough resources to handle database. List out some features of Grav? The Features of Grav are − It is fast, easy and powerful flat-file web platform. It is used to build website with no extra tools or html knowledge. It uses text file or markdown file to store the content. It doesn”t use database, so it eliminates the cause of bottlenecking. It uses PHP based template provided by Twig which is parsed directly into PHP that makes it fast. What are advantages of Grav? The advantages of Grav are − It is not based on database CMS, so it”s very easy to install and will be ready to use when you upload the files to the server. It uses Markdown text files to make things easy. Using this, the content will be dynamically converted to HTML and displayed in the browser. In case of security, Grav doesn”t have admin area and database. So there is no chance of hacking into account or in the database to access the important data. You can easily backup all the files to keep backup copy of your website, since there is no database to backup. It is a piece of software which doesn”t require more time to learn. What are disadvantages of Grav? The disadvantages of Grav are − Sometimes unauthorized users may access your content from the files directly as there is no database for the files. It is difficult to build complex websites using Grav CMS. Which PHP version is compatible for Grav? PHP 5.4 or higher What are Grav pages? Pages can be defined as building blocks of the site. Pages combine contents and navigations which makes easy even for inexperienced users. What does Hash(#) syntax indicates in Grav? # or hashes syntax in Markdown indicates a title which will be converted to <h1> header in HTML. What does **(asterisks) indicates in Grav? ** markers indicates bold text or <b> in HTML. Mention the types of pages? Grav Pages supports 3 types of pages − Standard Page. Listing Page. Modular Page. What is Grav markdown syntax? Markdown syntax is defined as writing plain text in an easy to read and easy to write format, which is later converted into HTML code. Symbols like (*) or (”) are used in markdown syntax. These symbols are used to bold, creating headers and organize your content. Mention the benefits of using Markdown syntax? The benefits of using Markdown syntax are − It is easy to learn and has minimum characters. When you use markdown there are very few chances of having errors. Valid XHTML output. Your content and visual display is kept separate so that it does not affect your website look. You can use any text editor or markdown application. What is Emphasis in Grav? Emphasis is the writing formats in markdown syntax that are used to bold, italicize or strikethrough. Bold − Text can be made bold using two (**) signs at either side of the texts. Italics − Use underscores( _ ) sign at either sides of the word to italicize the text. Strikethrough − Use two tildes(~~) on either side of the word to strikethrough the word. Mention the 4 types of page linking used in the content? There are 4 types of links used in the content are − Slug Relative Directory Relative Absolute Remote What is remote link? Remote links allows you to link directly to any file or document through its URL. There is no need to include your own site”s content. Mention the media file types that are supported by Grav? Following are the media file types that are supported by Grav − Image − jpg, jpeg, png. Animated Image − gif. Vectorized Image − svg. Video − mp4, mov, m4v, swf. Data/information − txt, doc, pdf, html, zip, gz. What is the use of sepia action on images? Sepia filter is added to give a vintage look on images. What is Grav Modular Pages? Modular Pages enables to create a single page from its child pages. It is used to set as non-routable because they cannot be reached directly through an URL. They are identified by _ (underscore) before the folder name. It is a collection of pages that are displayed one above each to get a single page. What is Grav Twig Filters & Functions? Filters are used to format the data the way you want and output. Functions are used to generate contents. Twig templates are text files that contain expressions and variables replaced by values. Mention the three types of tags used by Twig? Twig uses three types of tags i.e. Output tags Action Tags Comment tags Mention the options to pass array of assets for CSS? There are few options to pass array of assets for CSS − priority − It takes an integer
Grav – Performance & Caching
Grav – Performance & Caching ”; Previous Next In this chapter, we will understand the concepts of performance and caching in Grav. Performance The term performance refers to the system performance in such a way that whether it can handle higher load on system and modify the system to handle a higher load. Consider the following points relating to the performance of Grav − To have better performance of Grav, you can use PHP opcache and usercache. The opcache works well with PHP 5.4 and usercache works faster with PHP 5.5, PHP 5.6 and Zend opcache. The SSD (Solid State Drive) which uses flash memory and has no moving parts. Sometimes cache will be stored in user cache or stored as files. So SSD drives can give better performance. Virtual machines are the best way of hosting providers under the cloud computing technology. You can specify the resources without interacting with physical equipment. Native hosting is faster than virtual machine. Grav runs better on virtual machines, but for optimal performance you can make use of the native hosting option. Grav has faster memory in which its cache uses heavy memory that provides better performance on your server. Compared to other platforms, it uses less amount of memory. Grav uses shared hosting on the shared server to share the things. Sharing hosting is available in a low cost and sometimes it may lead to slow the things on the server. Multi core processors are used for handling multiple tasks faster. The advanced processors are better than these processors which helps the user to accomplish the task. Caching In general, cache is a stored data in a cache memory. Cache mechanism makes Grav faster in which browser can get files from cache rather than the original server, saving time and additional network traffic. Grav uses Doctrine Cache library which supports the following − Auto (Default) − It uses default option automatically. File − It specifies cache files present in the cache/ folder. APC XCache Memcache Redis WinCache By default, Grav uses the auto setting. It will try for APC, then for WinCache, XCache and lastly it uses File. Caching Types There are 5 types of caching − YAML configuration caching into PHP. Core Grav caching for page objects. Twig caching of template files as PHP classes. Image caching for media resources. Asset caching of CSS and jQuery with pipelining. The caching of YAML configuration stored in the /cache folder. The image caching stores its images in the /images folder. The configuration option for core Grav caching is stored in user/config/system.yml file as shown below − cache: enabled: true check: method: file driver: auto prefix: ”g” The enabled option enables the caching by setting it to true. The method option checks for the updates in pages such as files or folder. The driver option specifies different types of caching options such as Auto, File, APC, XCache, Memcache, Redis or WinCache. The prefix option defines cache prefix string. Memcache Options If you are using the memcached server, then you need to add some extra configuration options by using the memcache driver in the user/config/system.yml file. These options can be defined under the cache: group. cache: … … memcache: server:localhost port: 8080 Redis Options If you are using redis, then you need to add some extra configuration options by using redis driver in the user/config/system.yml file. These options can be defined under the cache: group. cache: … … redis: server:localhost port: 8080 The Twig template uses its own caching mechanism by using twig driver in the user/config/system.yml file. twig: cache: true debug: true auto_reload: true autoescape: false It has some options such as − cache option enables the twig caching by setting it to true. debug option enables the twig debug. auto_reload option is used to reload the changes by setting it to true. autoescape option is used to auto escape the twig variables. Caching and Events Events can be used when caching is enabled. This can be enabled for all events except for OnPageContentRaw, OnPageProcessed, OnPageContentProcessed, OnTwigPageVariables and OnFolderProcessed events. These events can be used on all pages and folders and can run only when the events are processing. These events cannot be run after the page has been cached. Print Page Previous Next Advertisements ”;