-
Posts
508 -
Joined
-
Last visited
-
Days Won
1
Gideon So's Achievements
Hero Member (6/6)
319
Reputation
-
Whats possible, switching default language on existing sites
Gideon So replied to olafgleba's topic in Multi-Language Support
Hi @olafgleba If you are talking about the language when a visitor first visit the site. Take a look at the following. I have just changed the default language of my site. https://processwire.recipes/recipes/change-homepages-default-language/ Gideon -
Hi @Richard Jedlička What I think is the module extends FieldtypeFile and FieldtypeFile supports custom file. So I think fieldtypePdf would be able to add custom field to it. In fact there is section in field settings that allow me to add custom filed to it but no custom field render in the page edit screen. Gideon
-
Hi @Richard Jedlička Does this module support custom field? Gideon
-
I have a Tinymce textarea field reside in a repeater. I want to insert an image to the editor and I click the insert image button. It open a modal show images from the current repeater item page. Of course there is no images inside the page. I need to click the "change" link and then find the page I have the image, Is it possible to make the Tinymce insert image plugin to show repeater forPage? Gideon
-
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
Gideon So replied to David Karich's topic in Modules/Plugins
Hi @matjazp By the way, would you update the github repository? Gideon -
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
Gideon So replied to David Karich's topic in Modules/Plugins
Hi @matjazp Thanks for quick response. I guess the same.😊 Gideon -
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
Gideon So replied to David Karich's topic in Modules/Plugins
Hi @ I have just installed the forked version of this module. I get the below whenever I try to clear cache in the module setting page. Any hints? Fatal Error: Uncaught Error: Call to undefined method AllInOneMinify::getDirContents() in site/modules/AllInOneMinify/AllInOneMinify.module:1216 Fatal Error: Uncaught Error: Call to undefined method AllInOneMinify::getDirContents() in site/modules/AllInOneMinify/AllInOneMinify.module:1216 Thanks. Gideon -
New blog: Throttling AI bot traffic in ProcessWire
Gideon So replied to ryan's topic in News & Announcements
Hi @gebeer While I understand your concern about blocking AI bots but what I get from Ryan's post is that he doesn't completely cut off AI bots. It is because they come too often. He just want to limit their visit rate. I think it is ok because I don't think the document part changes every few seconds. Gideon -
Hi, Normally the multi-language url of ProcessWire is domain.tld/{language}/page but I have a special requirement from my client. They want the url would be like domain.tld/page1/{language}/page2. Is there any way I can achieve this? Any help is welcome/ Gideon
-
Allowed memory size exhausted after moving to XAMPP on MacOS
Gideon So replied to FlorianA's topic in General Support
Hi @FlorianA Just access your site. There should be some error messages on the screen. Gideon -
Hi @Tiberium Just a guess. Did you check the permission of the folder to see if the web server has the right to create folders / files within the logs folder? Gideon
-
Allowed memory size exhausted after moving to XAMPP on MacOS
Gideon So replied to FlorianA's topic in General Support
Hi @FlorianA Looks like there is some endless loop issue in your php that consume all the memory you allocate to PHP. The first thing I would do is enable PorcessWire debug mode. You can edit your site config.php to enable it by adding this line $config->debug = true You will have more info about what is going wrong. -