Jump to content

update AG

Members
  • Posts

    36
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

update AG's Achievements

Jr. Member

Jr. Member (3/6)

7

Reputation

  1. Hey @FireWire Whatever you did, it's working now: Downloaded your branch, deinstalled the module first and than installed your new version. All is working fine. Configuration of the settings now all work without getting an error anymore. Great help. Thanks a lot.
  2. You can access it directly and get a JSON response, when the path is correct: {"error":"FLUENCY_METHOD_NOT_ALLOWED","message":"Fluency API Error: Method Not Allowed"} But I didn't get anything so I looked closer to the path and saw that I had a wrong path. I had /processwire/fluency-1/api/translation/ as api-path, which was probably due that I deleted the module and reinstalled it so maybe it created this new path. I changed it now and it works. Second: Still when I try to edit the settings page in the Module I get the 503. See the attached network response. I still think it is somehow a security issue, when trying to save to the database due to all this serialized data in the POST-request. DB is by the way MySQL 8.0.
  3. I managed to get the Fluency Module installed and the settings set correctly. I installed in on another server a copied the settings directly from the database. So, that is that. But the Module is still not working. It looks like the translation-api page cannot be accessed. I get an "Unrecognized path" error (see screenshot), when I access the page /processwire/fluency/api/translation/ directly. Since the whole thing is working on another server it must have to do with some server restrictions but I can't figure out what it could be. Any ideas?
  4. Does anyone has a problem with installing Fluency (1.0.7) in Processwire 3.0.229 under PHP 8.2? I can install it but when it comes to selecting the preffered engine I get a 503 error. I suspect a mod_security issue since the module wants to save a serialized string (see below) to the database, when selecting the engine. Anyone run accross this problem and knows a workaround? Maybe @FireWire can help?
  5. The following code allows us to define multiple fallbacks for multilanguage fields. But somehow it doesn't work for fields with the Fieldtype "FieldtypeTable". $wire->addHookAfter('LanguagesPageFieldValue::getStringValue', function(HookEvent $event) { $mlObj = $event->object; // LanguagesPageFieldValue object $currPage = wire('page'); $french = wire('languages')->get(1033); $german = wire('languages')->get(1130); $italian = wire('languages')->get(1131); $russian = wire('languages')->get(1132); if($currPage->template->name == "job" || $currPage->template->name == "news" || $currPage->template->name == "doctor") { // Take the first non-empty value in order of precedence: foreach(array(wire('user')->language, $french, $german, $italian, $russian, wire('languages')->getDefault()) as $lang) { $newLangValue = $mlObj->getLanguageValue($lang); if($newLangValue != "") break; } $event->return = $newLangValue; } }); Inside the table field I am using this multilanguage field. What can I do to make it also work for multilanguage fields defined inside table fields? PW Version: 3.0.229 PHP Version: 8.0 ProFields Table Version: 0.2.2 KR Orkun
  6. I am trying to hook into text inputfields to add additional markup to it. But it only adds the markup for the default language tab. How can I achieve, that it also adds to the other language tabs? public function init() { if ($this->initSettings()) { $this->addHookAfter("InputfieldText::render", $this, "markAllowedFields"); } parent::init(); } public function markAllowedFields($event) { // Get the object the event occurred on, if needed $InputfieldText = $event->object; $allowedFieldTypes = [ 'FieldtypePageTitle', 'FieldtypePageTitleLanguage', 'FieldtypeText', 'FieldtypeTextarea', 'FieldtypeTextLanguage', 'FieldtypeTextareaLanguage', ]; $currentPage = $this->wire('pages')->get($this->wire('input')->get->id); $allowedFields = []; if($currentPage && $currentPage->id) { foreach($currentPage->template->fields as $field) { if($field->type->name && in_array($field->type->name, $allowedFieldTypes)) { $allowedFields[] = $field->name; } } } $return = $event->return; if(in_array($InputfieldText->name, $allowedFields)) { $return .= '<div class="gpt-wire-helper-container"><a href="#" class="gpt-wire-helper-link" >Do Something</a></div>'; } $event->return = $return; } KR Orkun
  7. Hi @kongondo We are in the process of upgrading a website which is using MM version v.0.1.2. After upgrading somehow the "All" section doesn't return any media anymore. I figured it out, that it was because of the following part in the selector media_manager_audio|media_manager_document|media_manager_image|media_manager_video!='' which is using the OR-Operator in the MM Fields. I have changed the code in MediaManagerUtilities.php to use OR-Groups for the MM Fields instead and now it works again. Do you perhaps have an Idea what could cause the OR-Operator to fail for the mm fields here? Since it looks like it is working for the templates? KR Orkun
  8. Thank you for your interest and input. The question about JS errors was particularly helpful: apparently a script from the old ListerPro version got stuck in my browser - clearing the browser cache helped. Embarrassing beginner's mistake 🙂 Markus
  9. Just upgraded PW to V3.0.226 with all modules included ListerPro (V1.1.5). Now under «Access > Users» the user list is no longer displayed, instead a (double?) ListerPro configuration page. Editing and creating users works. Only the list does not. In other PW installations WITHOUT ListerPro I have not found this problem (only an unsightly, too narrow user table.). Has anyone also experienced this problem? And maybe even solved it? TIA for all suggestions, Markus
  10. Looks like the core module for resizing animated gifs doesn't work for PHP 8. On the Production we have PW: 3.0.194 dev and PHP: 7.3.33-10+ubuntu18.04.1+deb.sury.org+1 and it is working there. Is it normal, that a resized animated gif gets bigger? The original was 1mb, the resized one 2mb. And the resized gif also had some 'artefacts/shadows' in it, and it also doesn't changed when adjusting quality from 90 to 100. array(5) { ["filename"]=> string(88) "/home/www-data/xxxxxxxxx.net/site/assets/files/205849/xxxxxxx.gif" ["extension"]=> string(3) "gif" ["imageType"]=> int(1) ["info"]=> array(18) { ["width"]=> int(1200) ["height"]=> int(627) ["imageType"]=> int(1) ["mime"]=> string(9) "image/gif" ["orientation"]=> int(0) ["rotate"]=> int(0) ["flip"]=> int(0) ["channels"]=> int(3) ["bits"]=> int(8) ["gifversion"]=> string(6) "GIF89a" ["animated"]=> bool(true) ["delay"]=> int(4) ["trans"]=> bool(true) ["transcolor"]=> int(2) ["bgcolor"]=> int(2) ["numcolors"]=> int(256) ["interlace"]=> bool(false) ["appmarker"]=> array(0) { } } ["iptcRaw"]=> NULL } array(2) { [0]=> string(27) "ImageSizerEngineAnimatedGif" [1]=> string(18) "ImageSizerEngineGD" } string(14) "gif-trans-anim" On the Dev Enviroment we have PW: 3.0.194 and PHP: 8.0.28 and there it isn't working/resizing. array(5) { ["filename"]=> string(92) "/home/www-data/xxx.xxxxxx.net/site/assets/files/178453/xxxxxxx.gif" ["extension"]=> string(3) "gif" ["imageType"]=> int(1) ["info"]=> array(18) { ["width"]=> int(1200) ["height"]=> int(627) ["imageType"]=> int(1) ["mime"]=> string(9) "image/gif" ["orientation"]=> int(0) ["rotate"]=> int(0) ["flip"]=> int(0) ["channels"]=> int(3) ["bits"]=> int(8) ["gifversion"]=> string(6) "GIF89a" ["animated"]=> bool(true) ["delay"]=> int(4) ["trans"]=> bool(true) ["transcolor"]=> int(2) ["bgcolor"]=> int(2) ["numcolors"]=> int(256) ["interlace"]=> bool(false) ["appmarker"]=> array(0) { } } ["iptcRaw"]=> NULL } array(2) { [0]=> string(27) "ImageSizerEngineAnimatedGif" [1]=> string(18) "ImageSizerEngineGD" } string(14) "gif-trans-anim"
  11. Two issues to your useful module «EmailObfuscation»: 1. In PHP >= 8.1 a deprecated message is thrown for lines 247/248: is_nan() cannot handle NULL values 2. If a mailto link contains an "apostrophe" (’) in an RTE field (e.g. in <a href="mailto:events@saq.ch">d’annulations écrites</a>), the EMO javascript produces a strange character (see screenshots). Regards, Markus
  12. Hi @joshua Somehow the Scripts aren't loaded (the banner doesn't appear) when we access a url created with URL-Hooks https://processwire.com/blog/posts/pw-3.0.173/#introducing-url-path-hooks? Can you help? KR Orkun
  13. I honestly don't know how to really describe this. When I change a filter in «what pages to show», instead of loading the settings for that field, it seems lister pro is loading the entire filter-section again. See attached screenshots for a better explanation (I changed the field «template» to «created» for this). I deleted caches and temp-files - nothing helped. There aren't any error messages, either. Any ideas?
  14. Until now, I have set $parent_id in page selection fields (InputfieldPage) that have different root directories depending on the page being edited, with the following hook: $wire->addHookAfter('InputfieldPage::findPagesCode', function($event) { if(substr_count($event->object->name, 'select_focus_page') > 0) { $page = $event->arguments('page'); $return = $event->return; $parent_id = wire('input')->id; $event->return = wire('pages')->get($parent_id); } }); Now I see in inputfieldPage.module that the function 'findPagesCode' is deprecated. We are supposed to use the 'getSelectablePages' function instead. However: I haven't figured out how to use 'getSelectablePages' to set the $parent_id with a hook. Has anyone had more success with this? Translated with www.DeepL.com/Translator (free version)
  15. Hi all I'm trying to get a copy of an installation to run on my local machine. Copied the DB and all files from the server. Besides being painfully slow (which might just be my machine), I can't login to the backend. I get the infamous «This request was aborted because it appears to be forged»-Error. Tried EVERYTHING I was able to find in the forum (file/folder permissions in site/assets, deleting said folders, cleared the session-table in the DB and so on…) - I can't get it to work. PW 3.0.165 Heeeeeeelp ? [Edit] I also tried disabling the CSRF-Protection in the config, which gets rid of the error, but the login still doesn't work. I just get back to the login page without an error.
×
×
  • Create New...