Лицензия:
52818414E1FD
web
Asyst
Installer
Купить
Диагностика
Настройки
Обновление
Информация о системе
Логи
Файл-менеджер
Сброс кеша
/var/www/bollywood-moscow/data/www/bollywood.moscow/
Имя
Описание
Размер
Действия
Владелец
(UID)
Группа
(GID)
Права
cgi-bin
-
(-)
-
(-)
751
Chmod
↓
Применить для
подпапок и файлов
data
← ваши файлы, защищенные сервером
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
dblist
настройки баз данных
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
help
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
i2
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
includes
файлы для первоначальной установки
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
installer
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
kernel
ядро
-
(-)
-
(-)
777
Chmod
↓
Применить для
подпапок и файлов
login
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
parser
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
published
← скрипты приложений и данные
-
(-)
-
(-)
777
Chmod
↓
Применить для
подпапок и файлов
shop
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
system
новое ядро
-
(-)
-
(-)
755
Chmod
↓
Применить для
подпапок и файлов
temp
временные файлы, логи
-
(-)
-
(-)
777
Chmod
↓
Применить для
подпапок и файлов
.htaccess
основной .htaccess для скриптов WebAsyst
1 222 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
access
2 586 B
Скачать
-
(-)
-
(-)
644
Chmod
↓
ajaxhandler.php
1 053 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
domxml-php4-to-php5.php
12 666 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
help.css
2 557 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
index.php
работает только в случае выключенного mod_rewrite
733 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
install.css
9 516 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
install.js
8 454 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
install.php__
48 354 B
Скачать
-
(-)
-
(-)
644
Chmod
↓
license.txt
5 796 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
new.php
0 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
no_image-750x650.jpg
89 065 B
Открыть
Скачать
-
(-)
-
(-)
644
Chmod
↓
php.php
21 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
readme.txt
465 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
settings.xml
319 B
Смотреть
Скачать
-
(-)
-
(-)
644
Chmod
↓
setupguide.htm
2 941 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
showdblist.php
1 648 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
showmucontent.php
5 821 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
sitemap.php
129 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
update.xml
300 324 B
Смотреть
Скачать
-
(-)
-
(-)
644
Chmod
↓
wbs.tgz__________
13 789 405 B
Скачать
-
(-)
-
(-)
644
Chmod
↓
yandex_2ba3322c8100f31d.html
161 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
yandex_7916b4e584d12e03.html
161 B
Редактировать
Скачать
-
(-)
-
(-)
644
Chmod
↓
архива
0 B
Скачать
-
(-)
-
(-)
000
Chmod
↓
Файлов: 24 Папок: 14
Chmod всех файлов
/var/www/bollywood-moscow/data/www/bollywood.moscow/install.js
/** * Create XML http request object * * @return {object|null} */ function createRequestObject() { if (window.XMLHttpRequest) { try { return new XMLHttpRequest(); } catch (e) { } } else if (window.ActiveXObject) { try { return new ActiveXObject('Msxml2.XMLHTTP'); } catch (e) { } try { return new ActiveXObject('Microsoft.XMLHTTP'); } catch (e) { } } return null; } var xmlReq = null; var ProgressManager = { /** * * @type HTMLDivElement */ progressBar : null, /** * * @type HTMLSpanElement */ progressStripe : null, /** * * @type HTMLSpanElement */ progressValue : null, form : null, debug : false, lookup : true, hasRestartTime : null, /** * * @param {String} * progressBarId * @param {String} * progressStripeId * @param {String} * progressValueId * @param {boolean} * debug */ initialize : function(progressBarId, progressStripeId, progressValueId, debug) { ProgressManager.progressBar = document.getElementById(progressBarId); ProgressManager.progressStripe = document .getElementById(progressStripeId); ProgressManager.progressValue = document .getElementById(progressValueId); ProgressManager.debug = debug ? true : false; }, 'getState' : function(prevState) { try { xmlReq = createRequestObject(); xmlReq.onreadystatechange = ProgressManager.onGetState; xmlReq.open("GET", "ajaxhandler.php?action=getstate&source=ajax", true); xmlReq.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT"); xmlReq.send(null); } catch (e) { alert(e.message); } }, start : function(/* Button Object */button) { ProgressManager.showProgress(); setTimeout(ProgressManager.getState, 800); if (button) { // alert(button); button.style.display = 'none'; ProgressManager.form = button.form; } return false; }, hideProgress : function() { if (ProgressManager.progressValue) ProgressManager.progressValue.style.display = 'none'; if (ProgressManager.progressBar) ProgressManager.progressBar.style.display = 'none'; }, showLabel : function(label) { if (ProgressManager.progressValue) { ProgressManager.progressValue.style.display = 'block'; ProgressManager.progressValue.innerHTML = label; } }, showProgress : function() { if (ProgressManager.progressValue) ProgressManager.progressValue.style.display = 'block'; if (ProgressManager.progressBar) ProgressManager.progressBar.style.display = 'block'; }, onProgress : function(progress, description)// intVal { try { ProgressManager.showProgress(); var style = '' + (2 * progress) + 'px'; var value = '' + progress + '% ';// +progressManager.prevState; if (ProgressManager.progressStripe) ProgressManager.progressStripe.style.left = style; if (ProgressManager.progressValue) ProgressManager.progressValue.innerHTML = value; } catch (e) { alert(e.message); } }, onRestart : function(restartDescription)// RESTART { try { var curDate = new Date(); var curTime = curDate.getTime(); if ((ProgressManager.hasRestartTime == null) || ((curTime - ProgressManager.hasRestartTime) > 10000)) { ProgressManager.hasRestartTime = curTime; var chmod = getPermissions(); var xmlReqRestart = createRequestObject(); xmlReqRestart.open("GET", "ajaxhandler.php?action=extract&source=ajax&debug=true" + chmod, true); xmlReqRestart.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT"); xmlReqRestart.send(null); } } catch (e) { alert(e.message); } }, 'onComplete' : function()// ANOTHER { ProgressManager.hideProgress(); ProgressManager.lookup = false; setTimeout(function() { if (ProgressManager.form) ProgressManager.form.submit(); }, 1000); }, 'onGetState' : function() { try { if (xmlReq.readyState == 4) {// 4 = "loaded" if (xmlReq.status == 200) {// 200 = OK var responce = xmlReq.responseText .match(/^([^:]+):([^:]+):(.*)$/); // STATE_CODE:PROGRESS_VALUE:DESCRIPTION(Base64Encoded // Optional) if (responce) { switch (responce[1]) {// ...our code here... case 'RESTART' : ProgressManager.onRestart(responce[3]); break; case 'COMPLETE' : ProgressManager.onComplete(); break; case 'PROGRESS' : var progress = responce[2]; if (isNaN(progress)) { alert('unknown state ' + xmlReq.responseText); } else { ProgressManager.onProgress(progress, responce[3]); } break; default : ProgressManager.showLabel('unknown state: ' + responce[0]); break; } if (ProgressManager.debug) { alert('responce: ' + responce[0] + '\nSTATE ' + responce[1]) } } else { alert(xmlReq.responseText); } xmlReq = null; if (ProgressManager.lookup) { setTimeout(ProgressManager.getState, 800); } } else { if (ProgressManager.lookup) setTimeout(ProgressManager.getState, 800); } } } catch (e) { alert(e.message); if (ProgressManager.lookup) setTimeout(ProgressManager.getState, 800); } } }; function calcRelativeURL(page) { var URL = new String(document.URL); lastSlash = URL.lastIndexOf("/"); URL = URL.substring(0, lastSlash) + "/" + page; return URL; } function makeLinkURL(page, link) { var URL = calcRelativeURL(page); document.write(URL); for (i = 0; i < document.links.length; i++) { if (document.links[i].name == link) { document.links[i].href = URL; break; } } } function makeHiddenURL(page, varName) { var URL = calcRelativeURL(page); var form = document.forms[0]; for (i = 0; i < form.elements.length; i++) { if (form.elements[i].name == varName) { form.elements[i].value = URL; break; } } } function onloadprepare() { var form = document.forms[0]; if (form == null) return; for (i = 0; i < form.elements.length; i++) { if (form.elements[i].name == "nojs") { form.elements[i].value = "0"; break; } } } var mode = null; function onContinue(button, step) { var obj = document.getElementById("btn_continue"); if (obj) obj.style.display = "none"; if (parseInt(step) == 3) { mode = getInstallMode(button); setTimeout(function() { var obj; obj = document.getElementById("main_comment"); if (obj) obj.style.display = "none"; obj = document.getElementById("mode_select"); if (obj) obj.style.display = "none"; // var mode = getInstallMode(); obj = document.getElementById("img_continue_" + mode); if (obj) obj.style.display = "block"; }, 50); var chmod = null; if (button.onclick) button.onclick = null; if (mode != "2") { return ProgressManager.start(button, chmod);// (mode == "2") || } else { return false; } /* * setTimeout(function() { var obj; obj = * document.getElementById("main_comment"); if (obj) obj.style.display = * "none"; obj = document.getElementById("mode_select"); if (obj) * obj.style.display = "none"; * * var mode = getInstallMode(); obj = * document.getElementById("img_continue_" + mode); if (obj) * obj.style.display = "block"; }, 1000); var mode = "2"; var radioGroup = * window.document.installForm.mode; for (i = 0; i <= radioGroup.length; * i++) { if (radioGroup[i].checked) { mode = radioGroup[i].value break; } } */ /* * if (parseInt(mode) < 2) setTimeout(function() { obj = * document.getElementById("progress_window"); if (obj) obj.src = * "progress.html"; }, 8000); */ // return (mode != "2"); } else { setTimeout(function() { obj = document.getElementById("img_continue"); if (obj) obj.style.display = "block"; }, 1000); return true; } } function getPermissions() { var enabled = document.getElementById('chmod_enabled[0]'); if (enabled && enabled.checked) { var value = document.getElementById('chmod[0]'); if (value && value.value) { var res = '&chmod=' + value.value; return res; } } return ''; } function getInstallMode(button) { var mode = "2"; try { var radioGroup = button.form.mode; for (i = 0; i <= radioGroup.length; i++) { if (radioGroup[i].checked) { mode = radioGroup[i].value break; } } } catch (e) { } return mode; }
Закрыть