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
When Latte StringLoader is used and open_basedir is set, the editorUri() method passes the html string to the is_file() function.
This causes the following exception: Error: Latte\Bridges\Tracy\LattePanel-2
ErrorException: is_file(): open_basedir restriction in effect. File(<div>html example</div>) is not within the allowed path(s)...
Steps To Reproduce
Simply set up open_basedir, use StringLoader to render a template and add Latte panel to Tracy.
Expected Behavior
Same result as if open_basedir is not set. - No errors
Possible Solution
Add '@' to the is_file() function in the Tracy\Helpers::editorUri() method.
The text was updated successfully, but these errors were encountered:
cima-alfa
changed the title
Tracy\Helpers editorUri() is_file() error with Latte StringLoader and open_basedir
Tracy\Helpers::editorUri() is_file() error with Latte StringLoader and open_basedir
Sep 19, 2023
Version: 2.10
Bug Description
When Latte
StringLoader
is used andopen_basedir
is set, theeditorUri()
method passes the html string to theis_file()
function.This causes the following exception: Error: Latte\Bridges\Tracy\LattePanel-2
ErrorException: is_file(): open_basedir restriction in effect. File(
<div>html example</div>
) is not within the allowed path(s)...Steps To Reproduce
Simply set up
open_basedir
, useStringLoader
to render a template and add Latte panel to Tracy.Expected Behavior
Same result as if
open_basedir
is not set. - No errorsPossible Solution
Add '@' to the
is_file()
function in theTracy\Helpers::editorUri()
method.The text was updated successfully, but these errors were encountered: