photocrati_ajax 404
-
Finally got uploads working. I found this blog post in german https://www.netengine.at/de/hilfe/wiki/wiki-detail/?wid=87
I changed it a bit different. The commented lines is the original code.
function get_request_uri($with_params=TRUE) { #if (isset($_SERVER['PATH_INFO'])) # $retval = $_SERVER['PATH_INFO']; #elseif (isset($_SERVER['ORIG_REQUEST_URI'])) if (isset($_SERVER['ORIG_REQUEST_URI'])) $retval = $_SERVER['ORIG_REQUEST_URI']; else $retval = $_SERVER['REQUEST_URI'];
I also changed wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_data/class.gallerystorage_driver_base.php This was because I have a bunch of images missing that are broken and it kept trying to create thumbnails for them.
if (!file_exists($image_path)) { error_log($image_path); } else { $size = getimagesize($image_path, $detailed_size);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘photocrati_ajax 404’ is closed to new replies.