-
Posts
175 -
Joined
-
Last visited
-
Days Won
3
Everything posted by markus_blue_tomato
-
@dadish I've created a PR to support $page->references: https://github.com/dadish/ProcessGraphQL/pull/33 It works in my side and was very quick to implement. Kudos for such good structured module ๐ EDIT: Just saw there is an other PR with implementation of this. Maybe you can check both...
-
Thanks works!
-
Hi @dadish, I am struggling now with Page Reference Fields. I don't get my custom Text Fields and also not title. Both of them are in legalFields and having the correct access rights. Any ideas? If I get this running I will try to make support for $page->references support via PR ๐ https://processwire.com/api/ref/page/references/
-
Yes this was the problem. I had this option on "No". I changed it to "yes" and gave the role "guest" view-access. Thank you! I thought the fields are vissible also to guests if this option is on "No"
-
Aaah, I added to the page the correct Process Module. Now I see the fields here but still not in Insomnia Client...
-
Thanks for your help! No I get an "This page has no process asigned" Page in the Result
-
Hi @dadish, I played a little bit with the module but can't get my fields into GraphQL. I only use some FieldtypeText and FieldtypeTextLanguage fields but the don't appear in the schema. Any ideas why? I use the Insomnia client here because on the default GraphiQl I get this "Syntax Error: Unexpected <EOF>" error. Any i
-
Weekly update โย 8 January 2021
markus_blue_tomato replied to ryan's topic in News & Announcements
-
ElasticsearchFeeder saves the document-ID returned by ElasticSearch and the time of the last sync to the correspondending page.
-
@ryan Maybe also some Point to start: The Open Pull Requests: https://github.com/processwire/processwire/pulls
-
Currently I am developing a new very small and simple ProcessWire Website with PHP 8 (and I try also enabled JIT) - planned go live Jan/Feb 2021. But for some older bigger Project with many modules and code which is on 7.4 I'll wait some month to upgrade since I had some troubles with php-redis and imagemagick with php8, which I use in this project
-
Sure you can :-)
- 34 replies
-
- image
- lazy loading
-
(and 2 more)
Tagged with:
-
Ah! I had problems because to owner of the files was root not www-data ๐ฌ
-
Hi @elabx, Currently I do the same in Digital Ocean. But I use in my Droplet a Docker image. Did you have problems with file permissions? 755 for directories did not work, only 777 ๐
-
Module: Smarty for the TemplateEngineFactory
markus_blue_tomato replied to Wanze's topic in Modules/Plugins
Hm, not yet... Maybe @Wanze has an idea? -
Thanks! I have created a PR with a fix: https://github.com/wanze/SeoMaestro/pull/27
-
I use also Docker and it is fast, but when the FileCompiler has to compile a module it is very slow... over > 1 Minute for compilation of 1 module. I did not found a solution yet...
-
Sure, didn't find yet where the output happens of the meta data. How do you add the meta property to the Page? I only know this way: https://processwire.com/api/ref/wire/add-hook-property/ but did not found it in the code
-
Hello! I have a problem with the display of getModuleConfigInputfields. With this code, the Inputfields are not shown. When I remove "namespace ProcessWire" it works, but then the first request needs 1.5 minutes for the compilation. Does anybody knows what the .... is going on here? I am getting a little bit crazy ๐ <?php namespace ProcessWire; class ElasticsearchFeeder extends WireData implements Module, ConfigurableModule { public static function getModuleInfo() { return array( 'title' => 'ElasticsearchFeeder', 'class' => 'ElasticsearchFeeder', 'version' => 134, 'summary' => 'Schema-flexible module for getting your page into ElasticSearch', 'href' => 'https://github.com/blue-tomato/ElasticsearchFeeder/', 'singular' => true, 'autoload' => 'template=admin', 'requires' => [ 'PHP>=7.0.0', 'ProcessWire>=3.0.133' ] ); } public function init() { } public static function getModuleConfigInputfields(array $data) { $inputfields = new InputfieldWrapper(); $field = wire('modules')->get('InputfieldText'); $field->name = 'headline_default'; $field->label = "Please enter the promo headline:"; $inputfields->add($field); return $inputfields; } }
-
This module requires https://github.com/kornrunner/php-blurhash. The best way to install ImageBlurhash is to install it via composer: composer require blue-tomato/image-blurhash This install also all dependencies
- 34 replies
-
- image
- lazy loading
-
(and 2 more)
Tagged with:
-
Haha great, and sorry - I completely forgot the issue due some spontaneous new ProcessWire side project for the guest registration in Vienna/Lower Austria: https://www.heute.at/s/cowirtat-hilft-bei-der-registrierung-im-gasthaus-100106087
- 34 replies
-
- 3
-
-
- image
- lazy loading
-
(and 2 more)
Tagged with:
-
Hi @Wanze, I saw, that the SeoMaestro Fields have no fallback to default language, like other processwire fields, if the current language value is not set. Is this possible?