Jump to content

horst

PW-Moderators
  • Posts

    4,088
  • Joined

  • Last visited

  • Days Won

    88

Everything posted by horst

  1. I try to find some snippets, but be on mobile. https://processwire.com/talk/topic/10798-how-to-import-table-of-data-into-processwire/?tab=comments#comment-101620
  2. With the diagnostics module(s) there is also one for (missing) server image feature detection.
  3. I know this behave. You need to save it 2 - 3 times during the switch process. I believe this has to do with pw core, not only that module.
  4. Welcome to ProcessWire. Maybe, that the settings for fonts is not defined in a template file, but in a css, less or scss file. (Regarding to how your agency organized your site)
  5. Hhm, sad. I send you a PM.
  6. Hi @dreerr, sorry, this is a known limitation: The test is only functional for connections with authentication. But regardless of the failing test in this case, it should be possible to send mails without authentication. Hvae you tried it? Does it work?
  7. No, PW 2.3 is no insecure software. It's only missing some tons of new features. I'm also have some PW 2.3 versions running until now, (and don't see any reason to update them).
  8. Hi @mike62, thats much at once, updating from 2.3 to the latest version. Depending on the used third party modules in that site, you may be able to update to version 2.7.3, what was the last version before changing to 3.0.x, what included a change to use PHP namespace. So, why exactly do you want to upgrade? Do you need some special module that isn't available for pw 2.3.x? With that $image thing, please check if you are using a single image field or if it is a multiimage field. If it is a multi image field (that is by default), you need to to select one image out of the collection, maybe ->first(). Also you should check if there is at least one image stored within the field: $image = $page->home_header_image->first(); if('' != $image->url) echo "<img src='{$image->url}' alt='{$image->description}' />";
  9. Done too! Its updated to 0.2.7. All in all we only used 7 minutes to react on Charles issue report! Cool!
  10. @abdus please update the version too in your PR. Thanks.
  11. Yes, please send via PM.
  12. How could I missed it? Will have a look at your module, @DaveP, and come back here, if there is something that I miss. @szabesz, with my logic, there will be nothing injected into your output, unless you have explicitly inserted a placeholder into your text-inputfield. But if you have inserted a placeholder plus other content, then only the other content will be displayed. The placeholder gets stripped out without $config->debug enabled. (Also should be a configurable setting)
  13. Maybe it would be a good idea to build something like a textformatter module, that serves the desired content via placeholders (like Hanna), but more simple. For example: {{loremipsum::w=200,p=5,s=en-nonsense}} inserts 200 words in 5 paragraphs from a textbase called "en-nonsense". This way we would be able to collect and share textbases. Optionally I would like to behave the textformatter to only insert content in $config->debug mode. Without $config->debug, it silently should extract the placeholders without injecting content. Should we start on this? edit: additionally there should be an API method to retrieve content from within template files.
  14. I don't know how the mailer services are get integrated into this new and very welcomed module, @abdus. One thing I would like to see is a modulare architecture, especially for the mailer services. They should be available as wiremail-modules, and the newsletter creator should relay on these modules, already implemented into pw. I also second @flydevto integrate @justb3a s module. We should try to make our modules modulare, that we are able to focus on our main cases and don't have to be redundant.
  15. FOr german sites I use Blindtextgenerator. The UI is perfect for my needs: Textbase selection, Number of paragraphs, optional output with p-tags!
  16. Apreciated! Send me the PR. ?
  17. I used this line, (uncommented), to hide them. But maybe this will have side-efects if you use it together with core imagefields in your pages. Better to use it the way @PWaddict said!
  18. Hi @Ivan Gretsky, thanks for the nice words. To make an image overblurred, there is only the "blur" and the "smooth" functions. But maybe you can experiment with using "pixelate" before "smooth"? pixelate(2) or pixelate(3) and then smooth(255), (regarding your desription, maybe 2-3 times smooth(255)) Or isn't that what you are asking for?
  19. @gebeer Regarding to @cstevensjr link: you can add custom headers in the modules configuration page.
  20. @hheyne the orientation problem is core related. Whereas it is no problem in all core related api image handling, it is one in CAI3. But there is no simple fix known atm. Maybe one should hook into upload and save those images rotated (with quality 100 and sharpening 'none') as original replacement?! At least as workaround until there is found a system wide solution for the orientation problem.
  21. Just in time with the new AdminThemeUiKit and RenoSkin, there is a fixed version of CroppableImage3 pushed to the repo today. Many thanks for his help goes to @tpr !!
  22. Oh, google only blocks Thunderbird, Outlook, 60% iOS apps and some more. Yes, of course, the only reason is security for users. ? @gebeer you may recherche on phpclasses.com, if the smtp class of Manuel Lemos has enhancement for this already. Im totaly behind my time schedules atm. Sorry.
  23. No, I don't know. But I see, that you have not set the sendBulk param to true. For automatic messages, you should set it to true, even if you send single emails.
  24. @flydev Do your need one more beta tester? ?
  25. @renobird the url must be written in its own line, only surrounded by <p>paragraph tags</p>. Have you checked this too?
×
×
  • Create New...