I was just made aware that the routers firmware cannot handle an apostrophe in a device name.
See Here and here
I have traced it to a function call "get_folder_tree()" in /www/aidisk/getfolderarray.asp:
where this is returned:
Is there a way to update the code in the function: get_folder_tree()
I searched all the files under /www but could not find the file containing the function.
Is it part of the web server??
What can we do??
See Here and here
I have traced it to a function call "get_folder_tree()" in /www/aidisk/getfolderarray.asp:
where this is returned:
Code:
var result = [<% get_folder_tree(); %>];
var result = ['WD easystore 25FB#0#1', 'SanDisk' Cruzer Fit#1#2'];
Is there a way to update the code in the function: get_folder_tree()
I searched all the files under /www but could not find the file containing the function.
Code:
admn@router:/tmp/home/root# grep -rn '/www/' -e 'get_folder_tree'
/www/aidisk/getfolderarray.asp:10:var result = [<% get_folder_tree(); %>];
/www/aidisk/getfolderarray.asp:13:function get_folder_tree_success(){
/www/aidisk/getfolderarray.asp:18:<body onload="get_folder_tree_success();">
/www/getfoldertree.asp:1:<% get_folder_tree(); %>
/www/gettree.asp:1:treeitems = [<% get_folder_tree(); %>];
Is it part of the web server??
What can we do??