I’m still quite new to PHP so this may be a common issue I’m unfamiliar with.
I’ve created a form which includes a PHP file that generates an email. This has always worked fine, never had any issues with updates etc. But today I’ve amended the php file and uploaded it but when a new email is generated it is as though it is using the older php file, the new changes aren’t being displayed. It’s definitely on the server, I’ve checked and I thought it may be a caching issue on the server but I added these headers:
[php] header(“Cache-Control: no-cache, must-revalidate”); // HTTP/1.1
header(“Expires: Sat, 26 Jul 1997 05:00:00 GMT”); // Date in the past[/php]
and still the emails generated are using the older php file.
Any ideas?