Badges
Creator of Grav CMS + other things...
Recent posts
-
Admin missing in download
· 9 years ago
The official statement goes something like this: "Grav is a flat-file CMS built for speed and flexibility. Grav only requires a file editor to build and maintain sites. The admin plugin is a powerful
-
Using parallax with a modular template
· 9 years ago
better than disabling the cache completely, you should use: never_cache_twig: true : https://learn.getgrav.org/content/headers#never-cache-twig
-
Asset collections in system.yaml bug?
· 9 years ago
Confirmed its a bug, and requires a special field that is flexible enough to handle nested elements. I've replied on the github issue.
-
Best way to put small icons inline with text?
· 9 years ago
I also would recommend creating a little shortcode plugin that lets you easily use any of the fontawesome icons
-
Can't login after upgrade
· 9 years ago
How are you running it? Localhost or on some webhosting? It sounds like the permission issue is related to the ownership of files which, Grav being file-based, is very important. I suggest taking a l
-
Admin with apache reroute
· 9 years ago
Probably the simplest solution is to drop an index.php in your webroot with a redirect to 2017/: <?php header('Location: http://mydomain.org/2017/'); http://php.net/manual/en/function.header.php
-
Massive Wordpress migration to Grav
· 9 years ago
Grav is a flat-file system and as such it does not need an admin. In fact, many people don't use the admin plugin at all. Because of this Grav (and skeletons too) actually don't come with the admin
-
Infinite redirect loop on fresh installation of Grav
· 9 years ago
You seem to be missing the PHP section. You should look a the sample we include in the webserver-configs/ folder of Grav: https://github.com/getgrav/grav/blob/develop/webserver-configs/nginx.conf
-
Backend (Admin Plugin): Ability to create/clone field on the admin site
· 9 years ago
That sounds like it would require a new custom field that handles the ability to 'copy' the current field and inject a new field into the form. Something along the lines of Array or List field, but j
-
Language specific pages
· 9 years ago
If you don't want a page to show up at all for a particular language, simply create the page for the language (e.g. yourpage.de.md) and set published: false. Did you try that?