- πΊπΈUnited States Chris Burge
@SomebodySysop are you seeing anything in the logs?
Just looking through the code,
TextExtractorPluginBase::getRealpath()
is of interest to me:/** * Helper method to get the real path from an uri. * * @param string $uri * The URI of the file, e.g. public://directory/file.jpg. * * @return mixed * The real path to the file if it is a local file. An URL otherwise. */ public function getRealpath($uri) { $wrapper = $this->streamWrapperManager->getViaUri($uri); if($wrapper != FALSE){ $scheme = $this->streamWrapperManager->getScheme($uri); $local_wrappers = $this->streamWrapperManager->getWrappers(StreamWrapperInterface::LOCAL); if (in_array($scheme, array_keys($local_wrappers))) { return $wrapper->realpath(); } else { return $wrapper->getExternalUrl(); } } }
I'm wondering if the method is failing to return a usable value here.
- πΊπΈUnited States somebodysysop
Thanks for the response. I have not looked at it in over a year since I don't know enough about the module to develop a patch. It was my hope that someone with much more knowledge would stumble upon this and figure out a solution.