Jump to content

markus_blue_tomato

Members
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by markus_blue_tomato

  1. 1. Currently the data URIs are not cached or saved somewhere. They are generated on the fly - I did not see huge performance issues yet - we use ProCache for caching the whole HTML. 2. Yes we used "SVG Primitives". But the setup for this was too much work to maintain. Primitive itself was only written in Golang and the generation of the images took a huge amount of server resources.
  2. All tests done on my side - I pushed a new Release to Github. Thanks to @androbey for finding the fix
  3. There was one problem, that the Hook was sometimes executed before the entry was saved to the database. So the blurhash query did not found the entry. And the second problem was an encoding issue with some characters int he blurhash. Strange... this undefinded offset did never happen in my side. But I will check if $calcHeight and $calcWidth works on my side and will change this in the repo
  4. Hi @androbey, The whole SQL thing let me rethink how I store the blurhashs. I discovered the Pagefile->fildedata API and refactored the module to use this instead of the custom SQL column in the image field table. At the first try it looks that everything works well. Please test again ? https://github.com/blue-tomato/ImageBlurhash/releases/tag/2.0.0
  5. Hi @androbey, Now I can confirm the db issue, it appears also on my dev env. I will take a deeper look into it tomorrow.
  6. Hi @androbey, Hm, sounds strange. What does the createBlurhash return before insertBlurhash is executed? I think the second issue depends on the first issue. Something is wrong with the creation of the blurhash - I guess it makes an corrupt image. Do you have an example image for me? Maybe I could reproduce it on my system. FYI: currently in runs on our production server with php 7.4, mysql 5.7 and latest processwire dev version on an debian buster machine
  7. Hi, I am working on a module which uploads my images to Adobe Scene7 (some kind of image hosting service...). Is there some method to change the path from the filename via API? $file->rename("/my/path/to/file.jpg"); only changes the basename of the file and does not save the path in the database.
  8. We have created a module to create BlurHash strings for images while uploading in ProcessWire. This blurry images will be saved in the database because they are very small (20-30 characters) and can be used for Data-URL's as placeholders for image-lazy loading. https://github.com/blue-tomato/ImageBlurhash E.g. where we use this in production: https://www.blue-tomato.com/en-INT/blue-world/ https://www.blue-tomato.com/en-INT/blue-world/products/girls-are-awesome/ https://www.blue-tomato.com/en-INT/buyers-guides/skateboard/skateboard-decks/ https://www.blue-tomato.com/en-INT/team/anna-gasser/
  9. Hi, @mn-martin, @snobjorn, @zoeck we've build some kind of fork of this module: https://modules.processwire.com/modules/elasticsearch-feeder/
  10. TemplateEngineFactory with TemplateEngineSmarty SeoMaestro AdminOnSteroids FieldtypeSelectExtOption ProCache ListerPro
  11. Hi! Nice thank you. Currently I have the need for this but I got an error: UID: ATU73390813 Is UID wrong or is the API down?
  12. production is on the same as dev (newest dev branche) production connects via IP, dev via docker-hosts. so my host ist "db" because my mysql-container has this as name (https://docs.docker.com/network/network-tutorial-host/) No errors in the logs I found now the real issue. It's not the commit above - I don't know why it worked yesterday while testing all the commits. Yesterday I imported also a new db dump copy from the production server into dev. I make this sometimes. After importing an older dump into dev it worked again. Something in the new dump makes my dev system running into timeouts...
  13. Hi folks, I have a really strange problem and don't know how to solve it or how to find the exact problem. Since this commit: https://github.com/processwire/processwire/commit/ca8e779402c4911aac2a0ad884cb2ee23f30dd62 my local dev setup based on Docker with PHP 7.4.5 and MySQL 5.7.29 are really slow. It happens on nearly 99% of the request in the Frontend and also on the Admin Panel. The are so slow, that the page runs into timeout after 5 minutes (my local php timeouts are high ? ) But on my stage/production server which is nearly the same setup, database and code works fine. How can I find out what is happening?
  14. Maybe this can also help you. I wanted to make the Smarty Files translatable, but endend up into building an converter (build with node.js) which generates .php files which can be translated in the pw admin panel
  15. I was looking for Pages::added but didn't found it (only Page::setupNew, which didn't do that in the way I want) ?Sure, maybe I'll change that soon.
  16. We had the need, that the URL of some pages should only be some kind of ID. I know that there are Modules like https://modules.processwire.com/modules/process-redirect-ids/, but since we have a kind of ProCache based Static Page Generator this modules doesn't work for us. So we created this module, which hides the name filed on pages with specific templates and which replaces the $page->name with the $page->id. https://github.com/blue-tomato/PageUseIdAsName
  17. I felt it in the morning about 150 km away from ZG ... it was creepy
  18. At Blue Tomato we use Logstash/Kibana to monitore nearly every application. Now we use it also for our ProcessWire Logs. For this reason we created this module to send the logs to the Logstash HTTP-Input Plugin: https://github.com/blue-tomato/ProcessLogstash
  19. Ah - after describing the problem I found the solution quick I'll check if there is a template with "field-" and current image field name. $customImageFieldTemplate = wire('templates')->get("field-$fieldName"); After this I can iterate over $customImageFieldTemplate->fields
  20. How can I get from an image field all custom image fields dynamically? E.g. $page->image->alt and $page->image->credits but how can I get this fields like $page->image->getCustomImagesFields or $page->image->getCustomImagesFieldsTemplate (where I can use the $template API methods $template->fields...
  21. Below 1% with a functional health system. In italy the health system collapsed and the death rate there is about 3-5%
  22. Starting tomorrow everybody in austria should be in self isolation: This is good but TESTING is still TO LESS. In Austria you get only testet if you have symptoms and had contact to someone how as testet covid-19. Really, my daughter and her mother had fever and has very strong cough. But no contact - no test. It's really stupid.
×
×
  • Create New...