Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
In debug mode email password in plain text
· 9 years ago
or for plugin/theme dev field option like hideDebuger --- yaml header.mailchimp_key: type: text label: Your Mailchimp API KEY hideDebuger: true
-
In debug mode email password in plain text
· 9 years ago
hello When i switch to debugger mode, site already online, i notice that if you have enabled Email plugin, in the email array you see the mail password in plain text, in my case the gmail, but could b
-
PHP GPM Problem
· 9 years ago
Curl is something commonly included with PHP, see this page in the docs to verify that it is enabled. Generally you'd only need to un-comment it in php.ini.
-
PHP GPM Problem
· 9 years ago
Thanks. php bin/grav now works fine. However php bin/gpm gives me the following error:- FATAL: GPM requires PHP Curl module to be installed I'm assuming that this would be a separate download and inst
-
PHP GPM Problem
· 9 years ago
Note, that when in the right directory in the console, the command is php bin/gpm or php bin/grav. There is no subfolder of Grav called Grav which contains the GPM.
-
PHP GPM Problem
· 9 years ago
Hello, I'm very new to this, so I apologise if this is something simple. I have downloaded SoraArticle skeleton and have it running in :- C:\xampp\htdocs\grav-sora This works fine. I now want to add s
-
The Array Field in blueprints.yaml
· 9 years ago
Thanks! Just a little misunderstood. I got this: <ul> {% for key, doctor in service.doctors %} <li>{{ key }} - {{ doctor }}</li> {% endfor %} </ul> ---
-
The Array Field in blueprints.yaml
· 9 years ago
{% for doc in service.doctors %} {{ loop.index }}: {{ doc }} {% endfor %}
-
The Array Field in blueprints.yaml
· 9 years ago
Maybe I'm not making myself clear? Here in this example: https://learn.getgrav.org/forms/blueprints/fields-available#the-array-field How to using tags get words: Test and Blog?
-
The Array Field in blueprints.yaml
· 9 years ago
Should be something like metadata. For example: {% for meta in page.metadata %} <meta {% if meta.name %}name="{{ meta.name }}" {% endif %} {% if meta.content %}content="{{ meta.content }}" {% endif