Server issue Phrase cache issues.

truonglv

Well-known member
Affected version
Latest
I have created an phrase `tl_something.some_stuffs`. Then i change the value of that phrase to difference value. The page in the frontend where i used that phrase still use the old value. I have look up into addon phrase file. It's stored newest value (same for table xf_phrase).
 
That's likely a result of opcaching. Because it's using the format of <phrase_group>.<phrase_name> it will be compiled to a PHP file, so aggressive caching can cause this.

We already attempt to invalidate opcaches when writing to anything in the code-cache directory so this is really just something your server isn't letting us do.
 
Top Bottom