Jump to content

matjazp

Members
  • Posts

    687
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by matjazp

  1. To be honest I don't have enough knowledge on what's really going on in the source files, I just included fixes and PR's from others, hoping that it might help them. But it's not a problem for me to maintain this fork with PR's of other contributors, if that helps.
  2. I have a forked version at https://github.com/matjazpotocnik/ProcessWire-AIOM-All-In-One-Minify that includes a lot of pull requests and fixes from several contributors. Test on dev site first!!!
  3. @suntrop put setlocale() in /site/init.php There is also $languages->setLocale(); https://processwire.com/api/ref/languages/set-locale/
  4. https://unicode-table.com/en/ but I guess not enough options...
  5. Of course. And I can do it even without AOS ;-)
  6. Thx for info and for legacy link. I must be lucky since I drive like 5 mins to work
  7. Based on https://processwire.com/about/requirements/ PW does not require iconv, but installer does check for it.
  8. Do you have iconv support enabled? Check with phpinfo();
  9. @Martijn Geerts I upgraded from 0.8.7 to 0.9.4 and I get: Warning: Invalid argument supplied for foreach() in C:\inetpub\wwwroot\site\modules\AdminCustomFiles\AdminCustomFiles.module on line 249 $files = NULL $dependencies = string(41) "ProcessPageEdit AdminCustomFiles/test.css" Also, AdminCustomFiles.js fails at line 19. I see that you dropped support for PW 2. Any reason for that?
  10. Maybe this can help? //https://github.com/FlipZoomMedia/ProcessWire-AIOM-All-In-One-Minify/issues/64 $_timestamp = ((int)$_timestamp + $file['last_modified'] + hexdec(md5(basename($file['absolute_path']))));
  11. Can't tell for sure, but it looks like... its minified, but files are equal. @dreerr are you sure you installed "clean", that is you are not overwriting wire folder but instead create a new wire folder? Just to be sure... <ul class="PageListActions actions" style="display: none; opacity: 0;">...</ul> This is triggered on hover, I can "see" the style is changed to display: inline; opacity: 1 but after that it is hidden by Jquery hide()...
  12. He did. It look like ProcessPageList.js is hiding it in SetTimeout. But I can't find out why. And, I can't reproduce on my install...
  13. It has to be something along this, as after I login, I don't get page tree, just header. I also get no content on Pages, Setup, Modules, Access...
  14. Done, please check v1.6.8 on GH.
  15. Thanks for PR. Bumped to v1.6.7: - Control for line endings - Extend directory start list with a scan of the templates subfolder - Change icon to pencil-square-o - CodeMirror update to 5.30.0
  16. This is known bug/inconvenience/annoyance: https://github.com/ryancramerdesign/ProcessWire/issues/1854
  17. Could this: else if ($type instanceof FieldtypeRepeater) { $items = $page->{$f->name}; if (!$items) continue; if ($items instanceof PageArray) { foreach ($page->$f as $item) $tagged = array_merge($tagged, findTaggedImages($item, $tag)); } // FieldtypeFieldsetPage returns a single page instead of a PageArray elseif ($items instanceof Page) { $tagged = array_merge($tagged, findTaggedImages($items, $tag)); } } be like this? else if ($type instanceof FieldtypeRepeater) { $items = $page->{$f->name}; if ($items instanceof Page) $items = array($items); if ($items) foreach ($page->$f as $item) $tagged = array_merge($tagged, findTaggedImages($item, $tag)); } I'm not a programmer at all and haven't tested this so I might be completely wrong
  18. I saw the change in ProcessPageEditImageSelect.module: - if($field->type instanceof FieldtypeRepeater) { + if(wireInstanceOf($field->type, 'FieldtypeRepeater')) {
  19. Shouldn't that be: } else if ($type instanceof FieldtypeRepeater || $type instanceof FieldtypeFieldsetPage) { or perhaps: } else if(wireInstanceOf($type, 'FieldtypeRepeater')) { to support FieldtypeFieldsetPage?
  20. Can you tell more about that?
  21. I would love to see that hack/hooks I admire this PW community, showing their work, coming up with great ideas and helping other.
  22. I think a lot of us would like to contribute, some way or another, depending on skils and available time. But at the end it's Ryan who must alocate time and other resources for this project and take a lead.
  23. Maybe this is related https://github.com/processwire/processwire/commit/d427b7f563f3024c1030265463ecaf79ab92d070
  24. @MacruraI tried that and css is applied to .ImageData but it doesn't help in my case... Didn't try your module ...
×
×
  • Create New...