I am wondering how autoprepend works with php and httpd.
Does the file download once or download it every time the script is called apache?
If I have a file that reads files from disk and loads them using auto_prepend, they remain in memory or are loaded with every call.
I am trying to download a file and remain in memory and reboot only after restarting apache.
<Directory> php_value auto_prepend_file /path/to/file </Directory>
source share