mapcache
mapcache copied to clipboard
MapCache source code directory. Please submit pull requests to the 'main' branch.
I'm going to throw this out here and see what people think of the idea. If MapCache forwards a request to a WMS service for a single tile (256x256 /...
The experimental mapserver source in MapCache 1.4 fails to build with MapServer 7.0.0 with the following error: `error: 'mapcache_context' has no member named 'process_pool'` It looks like this source hasn't...
At present mapcache uses every source to complete a GetCapabilities request. We have some layers that require authentication (we have a auth proxy in front of mapcache), it would be...
To fix this issue we should replace target_link_libraries(mapcache ${PNG_LIBRARY}) with target_link_libraries(mapcache ${PNG_LIBRARIES})
**Reporter: rdewit** **Date: 2011/10/10 - 08:38** Currently and are set in seconds after tile creation. Sometimes it can be useful to set the expires value to a fixed point in...
When i set empty_img in mapcache configuration file and when tile is not present in cache, mapcache return an error on request. Normaly, I think the normal issue is send...
**Hi! i'm having some issues at cmake with geos path:** cmake .. **give me:** -- The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check...
When configuring mapcache CGI in IIS I'm getting truncated results for the demo requests. Actually the in the CGI response output stream (stdout) every \n is replaced with \r\n so...
if(getenv("HTTPS")) { ... } should be replaced with: char *https = getenv("HTTPS"); if(https && !strcmp(https,"on")) { ... }
When using mapcache in IIS setting IIS environment variables per application is fairly challenging and setting the system wide MAPCACHE_CONFIG_FILE is not always sufficient during deployment. I'd suggest to set...