Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.222.191.57
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
templates /
Delete
Unzip
Name
Size
Permission
Date
Action
columns_definitions
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
components
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
config
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
console
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
database
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
display
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
encoding
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
error
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
export
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
home
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
import
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
javascript
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
login
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
menu
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
navigation
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
plugins
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
preferences
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
relation
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
server
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
setup
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
sql
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
table
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
test
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
changelog.twig
475
B
-rw-r--r--
2021-06-04 04:20
create_tracking_version.twig
3.7
KB
-rw-r--r--
2021-06-04 04:20
export.twig
15.85
KB
-rw-r--r--
2021-06-04 04:20
file_select_options.twig
152
B
-rw-r--r--
2021-06-04 04:20
filter.twig
374
B
-rw-r--r--
2021-06-04 04:20
footer.twig
388
B
-rw-r--r--
2021-06-04 04:20
gis_data_editor_form.twig
12.21
KB
-rw-r--r--
2021-06-04 04:20
header.twig
2.45
KB
-rw-r--r--
2021-06-04 04:20
header_location.twig
652
B
-rw-r--r--
2021-06-04 04:20
import.twig
10.46
KB
-rw-r--r--
2021-06-04 04:20
import_status.twig
99
B
-rw-r--r--
2021-06-04 04:20
indexes.twig
4.05
KB
-rw-r--r--
2021-06-04 04:20
message.twig
80
B
-rw-r--r--
2021-06-04 04:20
preview_sql.twig
301
B
-rw-r--r--
2021-06-04 04:20
scripts.twig
802
B
-rw-r--r--
2021-06-04 04:20
select_all.twig
385
B
-rw-r--r--
2021-06-04 04:20
select_lang.twig
900
B
-rw-r--r--
2021-06-04 04:20
start_and_number_of_rows_panel.twig
808
B
-rw-r--r--
2021-06-04 04:20
theme_preview.twig
502
B
-rw-r--r--
2021-06-04 04:20
themes.twig
233
B
-rw-r--r--
2021-06-04 04:20
top_menu.twig
1.05
KB
-rw-r--r--
2021-06-04 04:20
transformation_overview.twig
1.26
KB
-rw-r--r--
2021-06-04 04:20
user_password.twig
83
B
-rw-r--r--
2021-06-04 04:20
view_create.twig
4.71
KB
-rw-r--r--
2021-06-04 04:20
Save
Rename
<div id="div_create_version"> <form method="post" action="{{ url(route, url_params) }}"> {{ get_hidden_inputs(db) }} {% for selected_table in selected %} <input type="hidden" name="selected[]" value="{{ selected_table }}"> {% endfor %} <fieldset> <legend> {% if selected|length == 1 %} {{ 'Create version %1$s of %2$s'|trans|format( last_version + 1, db ~ '.' ~ selected[0] ) }} {% else %} {{ 'Create version %1$s'|trans|format(last_version + 1) }} {% endif %} </legend> <input type="hidden" name="version" value="{{ last_version + 1 }}"> <p>{% trans 'Track these data definition statements:' %}</p> {% if type == 'both' or type == 'table' %} <input type="checkbox" name="alter_table" value="true" {{- 'ALTER TABLE' in default_statements ? ' checked="checked"' }}> ALTER TABLE<br> <input type="checkbox" name="rename_table" value="true" {{- 'RENAME TABLE' in default_statements ? ' checked="checked"' }}> RENAME TABLE<br> <input type="checkbox" name="create_table" value="true" {{- 'CREATE TABLE' in default_statements ? ' checked="checked"' }}> CREATE TABLE<br> <input type="checkbox" name="drop_table" value="true" {{- 'DROP TABLE' in default_statements ? ' checked="checked"' }}> DROP TABLE<br> {% endif %} {% if type == 'both' %} <br> {% endif %} {% if type == 'both' or type == 'view' %} <input type="checkbox" name="alter_view" value="true" {{- 'ALTER VIEW' in default_statements ? ' checked="checked"' }}> ALTER VIEW<br> <input type="checkbox" name="create_view" value="true" {{- 'CREATE VIEW' in default_statements ? ' checked="checked"' }}> CREATE VIEW<br> <input type="checkbox" name="drop_view" value="true" {{- 'DROP VIEW' in default_statements ? ' checked="checked"' }}> DROP VIEW<br> {% endif %} <br> <input type="checkbox" name="create_index" value="true" {{- 'CREATE INDEX' in default_statements ? ' checked="checked"' }}> CREATE INDEX<br> <input type="checkbox" name="drop_index" value="true" {{- 'DROP INDEX' in default_statements ? ' checked="checked"' }}> DROP INDEX<br> <p>{% trans 'Track these data manipulation statements:' %}</p> <input type="checkbox" name="insert" value="true" {{- 'INSERT' in default_statements ? ' checked="checked"' }}> INSERT<br> <input type="checkbox" name="update" value="true" {{- 'UPDATE' in default_statements ? ' checked="checked"' }}> UPDATE<br> <input type="checkbox" name="delete" value="true" {{- 'DELETE' in default_statements ? ' checked="checked"' }}> DELETE<br> <input type="checkbox" name="truncate" value="true" {{- 'TRUNCATE' in default_statements ? ' checked="checked"' }}> TRUNCATE<br> </fieldset> <fieldset class="tblFooters"> <input type="hidden" name="submit_create_version" value="1"> <input class="btn btn-primary" type="submit" value="{% trans 'Create version' %}"> </fieldset> </form> </div>