You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Version 3.5 there is a bug on line 1870, 1872 and 1874. (I suspect the bug is on version 3.x)
The line:
if ( !cachedFileExists( expandPath( defaultPath ) ) )
should be:
if ( !cachedFileExists( defaultPath ) )
Since cachedFileExists already performs an expandPath() inside the function. By doing this the cache is never created because of the double ExpandPath() being executed. After I fixed on my side, my website is running a lot faster now when "cacheFileExists = true"
The text was updated successfully, but these errors were encountered:
On Version 3.5 there is a bug on line 1870, 1872 and 1874. (I suspect the bug is on version 3.x)
The line:
if ( !cachedFileExists( expandPath( defaultPath ) ) )
should be:
if ( !cachedFileExists( defaultPath ) )
Since cachedFileExists already performs an
expandPath()
inside the function. By doing this the cache is never created because of the doubleExpandPath()
being executed. After I fixed on my side, my website is running a lot faster now when"cacheFileExists = true"
The text was updated successfully, but these errors were encountered: