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
The text was updated successfully, but these errors were encountered:
eHtmlu
changed the title
Static file creation fail if the requested url have url encoded parts
Static file creation fails if the requested url have url encoded parts
Mar 29, 2020
eHtmlu
changed the title
Static file creation fails if the requested url have url encoded parts
Static file creation fails if the requested url has url encoded parts
Mar 29, 2020
Usually an URL like
/1467084520/b=path/to/minify&f=quick-test.js
could also be written as
/1467084520/b%3Dpath%2Fto%2Fminify%26f%3Dquick-test.js
Such a request works fine as long as the static file is already created. But it fails for file creation.
My suggestion is to urldecode the $query part as shown below:
/static/gen.php (lines 50 - 56)
currently:
suggestion:
The text was updated successfully, but these errors were encountered: