Quote from: netProphET at Feb 22, 2011, 08:57 PM
The first part, the content modification, looks truely bizarre to me. It’s dropping the ".pdf" from the end of the filename, and adding "\"e;"!!? You absolutely sure you copied that correctly? I can’t imagine any php setting or any MODX feature or bug causing that.
I agree, it totally has me baffled. Looking at it again, the file extension isn’t being removed. the example I was looking at had spaces in the file name and was cutting everything off after the first space.
so a better example would be
<a href="assets/files/fitness_incentive_program.pdf">
turns into
<a href="\"assets/files/fitness_incentive_program.pdf\""
It looks like something is happening when it is trying to escape the characters. Not really sure what though.
Quote from: netProphET at Feb 22, 2011, 08:57 PM
The latter warnings are due to the php.ini file, by the looks of it. Are those modules specified twice?
This was very helpful, I did see multiple references to these modules in the php.ini file and once I removed them, the errors went away, thank you!