Skip to content
Grav 2.0 is officially stable. Read the announcement →

Muut Archive Legend

@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation

Badges

✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Caching many images and responsiveness · 10 years ago

    From a ticket on Gregwar I saw there was development towards using ImageMagick where available, as this would improve speed and resource usage. That would certainly help caching large amounts of image

  • Caching many images and responsiveness · 11 years ago

    Actually this is just a limitation of GD in PHP. Any large image is first converted to a totally uncompressed bitmap. That means it will take up many magnitudes more memory than the original JPG or

  • Caching many images and responsiveness · 11 years ago

    Of course, it may be my server-configuration that is not properly set up to do the caching as efficiently as possible. I'm running a vanilla install of Bitnami Wamp locally for development.

  • Caching many images and responsiveness · 11 years ago

    One thing I've noticed using both the "regular" caching, and through the precache-plugin, is that any "excessively-sized" image (that is, raw, for example 8134x5562 6.83MB) will ostensibly crash the c

  • Caching many images and responsiveness · 11 years ago

    it's sequential, but happens in the background, so it doesn't slow your site down. And won't cause any problems sync problems because it's basically just calling the content() method on each page. G

  • Caching many images and responsiveness · 11 years ago

    The plugin solves the issue of initial caching, but is the precache-process structured for sequential or parallel loads? That is, would it still potentially fail on execution time, process limits, or

  • Caching many images and responsiveness · 11 years ago

    You might want to look at the precache plugin. This basically uses an out-of-process event to cycle through all your pages and call their content()method. This has the effect of pre-caching everythi

  • Caching many images and responsiveness · 11 years ago

    I am working on a gallery-system for a site, and am concerned about performance. Consider the following: I gather images from a multitude of posts into a gallery, and for argument's sake this currentl

  • Force SSL · 10 years ago

    osm! thx rhukster.

  • Force SSL · 10 years ago

    RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !=https RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=302,L] This is what I use on getgrav.org