Prasath Mani
Prasath Mani
```$use_auth = false;```
check this, it may help you https://www.youtube.com/watch?v=KEX2xenQENc
@kc9ryt , check this #583
fixed path traversal vulnerability #718, by @joaogmauricio
are you trying in localhost, pdf/word preview is not supported in localhost. or in case if you change the `$root_path` then you need to adjust the `$root_url` accordingly
if your modified the $root_path, then you have to configure $root_url correctly. i.e: ```php $root_path = $_SERVER['DOCUMENT_ROOT'].'/test'; ``` then root url should be like bellow ```php $root_url = 'test'; ```
@ingluislamas , try this, ```php $root_path = $_SERVER['DOCUMENT_ROOT'].'proyectos/testproj/Files'; $root_url = 'proyectos/testproj/Files'; $directories_users = array(); //no change required as path is same as root ```
can you attached console.log error as well
#273, #754
try this, add condition checks if needed ```php // always use ?p= if (!isset($_GET['p']) && empty($_FILES)) { fm_redirect(FM_SELF_URL . '?p=&subdir='.$_GET['subdir']); } ```