Digital Point Image Proxy

Digital Point Image Proxy [Paid] 1.0.4

No permission to buy ($75.00)
This is the only option this addon has right?
SbcPYRe.png
 
And also, using this addon pair with @Xon Redis Caching addon.
I have to allocate high memory for Redis Caching.
Or else setting a very low memory like 256mb for Redis instantly consume it all causing a random logout issue.
 
On my installation Eva, I track it down it's due to staticfiles.conf.
Looks like images needs PHP executed on them when you have this addon.
It doesn't need PHP run on all images, rather you shouldn't have Nginx intercept HTTP requests on files that don't exist. A better option than running all .png files through PHP would be to only do what you are doing there if it's truly a static file (and the file exists in the file system).

Blindly intercepting the request and blocking anything upstream (where it should go) purely based on the request URI is probably not a great idea. You probably want to use something like the try_files directive to make sure the file exists before you assume it's a static file. http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files
 
By the way, I have to disable this addon for now.
Still causing random logout issue even on high memory allocation for Redis :/.
Latest XenForo, PHP 7.0.4, Redis Caching of @Xon.
 
By the way, I have to disable this addon for now.
Still causing random logout issue even on high memory allocation for Redis :/.
Latest XenForo, PHP 7.0.4, Redis Caching of @Xon.
No idea what Redis is, but not sure how something to do with images will log a user out somehow. Strange...
 
Any way to disable this?
Server-Side Caching

If your installation uses a caching mechanism (for example memcached), it will be used to store images for 1 hour. This means that your server does not need to go out and retrieve images as often as they are viewed.
It's consuming a lot of our Redis Caching Server.
 
Hello, I am getting the following errors today. I am running PHP7, LiteSpeed, MariaDB, with OpCache and Memcache. I have seen repeated errors of this type on many images.

ErrorException: Fatal Error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 27836331 bytes) - library/Zend/Cache/Backend/Memcached.php:224
Generated By: Unknown Account, 5 minutes ago

#0 [internal function]: XenForo_Application::handleFatalError()
#1 {main}

Code:
array(3) {
  ["url"] => string(145) "http://www.the-mainboard.com/index.php?proxy/JnHbG88E%2BLpieIfmrV2hU5EmB95yEtCqvKVCHoGFyaPnCxHNT%2FfzdZxsRaBmLQb9rIybOazYHvv0Zf8I%2FUuL/image.png"
  ["_GET"] => array(1) {
   ["proxy/JnHbG88E+LpieIfmrV2hU5EmB95yEtCqvKVCHoGFyaPnCxHNT/fzdZxsRaBmLQb9rIybOazYHvv0Zf8I/UuL/image_png"] => string(0) ""
  }
  ["_POST"] => array(0) {
  }
}

My memcache and opcache are nowhere near full and the server has plenty of memory available, so I'm not sure why it's having memory issues. Any thoughts?
 
Top Bottom