Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.3.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
public /
myadmin /
templates /
Delete
Unzip
Name
Size
Permission
Date
Action
columns_definitions
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
components
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
config
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
console
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
database
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
display
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
encoding
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
error
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
export
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
home
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
javascript
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
list
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
login
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
navigation
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
preferences
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
rte
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
server
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
setup
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
sql
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
table
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
test
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
changelog.twig
475
B
-rw-r--r--
2021-02-05 18:27
checkbox.twig
367
B
-rw-r--r--
2021-02-05 18:27
create_tracking_version.twig
3.69
KB
-rw-r--r--
2021-02-05 18:27
div_for_slider_effect.twig
694
B
-rw-r--r--
2021-02-05 18:27
dropdown.twig
502
B
-rw-r--r--
2021-02-05 18:27
filter.twig
303
B
-rw-r--r--
2021-02-05 18:27
fk_checkbox.twig
218
B
-rw-r--r--
2021-02-05 18:27
footer.twig
388
B
-rw-r--r--
2021-02-05 18:27
gis_data_editor_form.twig
12.2
KB
-rw-r--r--
2021-02-05 18:27
header.twig
2.54
KB
-rw-r--r--
2021-02-05 18:27
header_location.twig
652
B
-rw-r--r--
2021-02-05 18:27
preview_sql.twig
301
B
-rw-r--r--
2021-02-05 18:28
radio_fields.twig
397
B
-rw-r--r--
2021-02-05 18:28
scripts.twig
673
B
-rw-r--r--
2021-02-05 18:28
secondary_tabs.twig
147
B
-rw-r--r--
2021-02-05 18:28
select_all.twig
384
B
-rw-r--r--
2021-02-05 18:28
select_lang.twig
872
B
-rw-r--r--
2021-02-05 18:28
start_and_number_of_rows_panel.twig
808
B
-rw-r--r--
2021-02-05 18:28
theme_preview.twig
504
B
-rw-r--r--
2021-02-05 18:28
themes.twig
233
B
-rw-r--r--
2021-02-05 18:28
toggle_button.twig
1014
B
-rw-r--r--
2021-02-05 18:28
transformation_overview.twig
1.25
KB
-rw-r--r--
2021-02-05 18:28
view_create.twig
4.69
KB
-rw-r--r--
2021-02-05 18:28
Save
Rename
<!-- CREATE VIEW options --> <div id="div_view_options"> <form method="post" action="view_create.php"> {{ get_hidden_inputs(url_params) }} <fieldset> <legend> {% if ajax_dialog %} {% trans 'Details' %} {% else %} {% if view['operation'] == 'create' %} {% trans 'Create view' %} {% else %} {% trans 'Edit view' %} {% endif %} {% endif %} </legend> <table class="rte_table"> {% if view['operation'] == 'create' %} <tr> <td class="nowrap"><label for="or_replace">OR REPLACE</label></td> <td> <input type="checkbox" name="view[or_replace]" id="or_replace" {% if (view['or_replace']) %} checked="checked" {% endif %} value="1"> </td> </tr> {% endif %} <tr> <td class="nowrap"><label for="algorithm">ALGORITHM</label></td> <td> <select name="view[algorithm]" id="algorithm"> {% for option in view_algorithm_options %} <option value="{{ option }}" {% if view['algorithm'] == option %} selected="selected" {% endif %} >{{ option }}</option> {% endfor %} </select> </td> </tr> <tr> <td class="nowrap">{% trans 'Definer' %}</td> <td><input type="text" maxlength="100" size="50" name="view[definer]" value="{{ view['definer'] }}"></td> </tr> <tr> <td class="nowrap">SQL SECURITY</td> <td> <select name="view[sql_security]"> <option value=""></option> {% for option in view_security_options %} <option value="{{ option }}" {% if option == view['sql_security'] %} selected="selected" {% endif %} >{{ option }}</option> {% endfor %} </select> </td> </tr> {% if view['operation'] == 'create' %} <tr> <td class="nowrap">{% trans 'VIEW name' %}</td> <td> <input type="text" size="20" name="view[name]" onfocus="this.select()" maxlength="64" value="{{ view['name'] }}"> </td> </tr> {% else %} <tr> <td> <input type="hidden" name="view[name]" value="{{ view['name'] }}"> </td> </tr> {% endif %} <tr> <td class="nowrap">{% trans 'Column names' %}</td> <td> <input type="text" maxlength="100" size="50" name="view[column_names]" onfocus="this.select()" value="{{ view['column_names'] }}"> </td> </tr> <tr> <td class="nowrap">AS</td> <td> <textarea name="view[as]" rows="15" cols="40" dir="{{ text_dir }}" onclick="Functions.selectContent(this, sqlBoxLocked, true)">{{ view['as'] }}</textarea><br> <input type="button" value="Format" id="format" class="btn btn-secondary button sqlbutton"> <span id="querymessage"></span> </td> </tr> <tr> <td class="nowrap">WITH CHECK OPTION</td> <td> <select name="view[with]"> <option value=""></option> {% for option in view_with_options %} <option value="{{ option }}" {% if option == view['with'] %} selected="selected" {% endif %} >{{ option }}</option> {% endfor %} </select> </td> </tr> </table> </fieldset> <input type="hidden" name="ajax_request" value="1" /> <input type="hidden" name="{{ (view['operation'] == 'create') ? 'createview' : 'alterview' }}" value="1" /> {% if ajax_dialog == false %} <input type="hidden" name="ajax_dialog" value="1" /> <input type="submit" class="btn btn-primary" name="" value="{% trans 'Go' %}" /> {% endif %} </form> </div>