-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
processingInstructions, no File in fileadmin/_processed_ generated #240
Comments
@braukma Thanks for your report! I don't think it should be related to that change, but you never know, I will have to have a closer look. Apart from the |
Thanks for the very quick response! :-) OK, my longer story is told like this: I started with Typo3, V9.5, pdfviewhelpers 4.5.0 and an extension by an external developer to produce that PDF-Booklet from within the backend of Typo. For obvious reasons, I migrated to Typo3 V11. Jürgen |
Without further testing I think it could be a Fluid parsing issue because of the special syntax with the variable in the string e.g. If that doesn‘t help it would be interesting if there was some error in the log files. Because you are upgrading TYPO3 as well, there might be several other problems causing this issue. |
OK, I edited my partial an replaced the processingInstructions as suggested. Then, I killed fileadmin/processed to make sure to delete the spoilers :-), aka to be sure there is nothing left to pop up from the nonexisting and started the Export: Call to undefined method TYPO3\CMS\Core\Resource\ProcessedFile::setMissing() Again, deleting the Instructions brought relief. From the log: Is there more for me to scratch from the logs? I am a bit unexperienced with this sort of troubleshooting. Jürgen |
@braukma I just quickly tested the image processing with Does the image processing work in other parts of the installation? You could run the checks in the backend under "Admin Tools" > "Environment" > "Image Processing" to see if image processing works in general. |
Tried a bit again: Let's call it a day for now. I'll check further into that matter and pick up that thread a bit later, since I also have non Typo3 jobs on my agenda .... :-) Jürgen |
Looking at the TYPO3 core code in However the question remains why this happens with your example. It could help if you added some debug statements in the e.g. if ($isProcessedFile) {
var_dump($action);
debug_print_backtrace();
} Also debugging some more properties of the file object could help here. |
Hello,
I am facing problems using the image view helper with some processingInstructions. The PDF generation fails with an exeption:
Call to undefined method TYPO3\CMS\Core\Resource\ProcessedFile::setMissing()
This refers to an access to a non existing file in fileadmin/processed
Much testing: Reason is, the file is never generated and therefore cannot be found.
I used something like processingInstructions="{width: '{size_veroeff}c'}" in my Code, that worked well with pdfviewhelpers 2.5.0
Removing that bit of code cured my problem, I wonder wether that's related to the changes that took place with the changes to the processingInstructions, user dumbness or whatever. :-)
Environment
TYPO3 version v11.5
pdfviewhelpers version: v3.0.0
Best Regards,
Jürgen
The text was updated successfully, but these errors were encountered: