-
Публикаций
1587 -
Зарегистрирован
-
Посещение
-
Победитель дней
12 -
Отзывы
100%
Тип контента
Профили
Форумы
Загрузки
Магазин
Инструкции
Весь контент Energy
-
Что лучше знаешь на то и ставь, пускай это даже будет винда (хотя винда тоже довольно таки не плохо стоит на сервере)
-
Кто является клиентом люцеры, скажите какие в ней есть встроенные сервисы (гм шопы, баферы, дон шопы) Очень нужно знать)
-
на проект ставить можно?
-
нужна помощь Проблема C Gm Shop. Не Тот Шмот Что В Мультиселе.
тема ответил Energy в теме Обсуждения
а гейм сервер что говорит по этому поводу? -
в силентиуме тарас не работает, в квесте на нубл некоторых нпц нету, если проверять все то можно довольно таки не плохой баг репорт сделать
-
я сказал, что плохо знаю яву, я нормально их снять не могу
-
да, проблему нашел в этом скрипте, нужна помощь, т.к. я плохо знаю яву
-
Кто шарит, помогите починить антараса в скрипте В оригинальной сборке он тоже не работает /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package silentium.scripts.teleports; import silentium.commons.Rnd; import silentium.gameserver.GameProperties; import silentium.gameserver.data.DoorTable; import silentium.gameserver.instancemanager.GrandBossManager; import silentium.gameserver.instancemanager.QuestManager; import silentium.gameserver.model.actor.L2Npc; import silentium.gameserver.model.actor.instance.L2GrandBossInstance; import silentium.gameserver.model.actor.instance.L2PcInstance; import silentium.gameserver.model.quest.Quest; import silentium.gameserver.model.quest.QuestState; import silentium.gameserver.model.zone.type.L2BossZone; import silentium.gameserver.scripting.ScriptFile; import silentium.scripts.ai.Baium; /** * This script leads behavior of multiple bosses teleporters. * <ul> * <li>13001, Heart of Warding : Teleport into Lair of Antharas</li> * <li>29055, Teleportation Cubic : Teleport out of Baium zone</li> * <li>31859, Teleportation Cubic : Teleport out of Lair of Antharas</li> * <li>31384, Gatekeeper of Fire Dragon : Opening some doors</li> * <li>31385, Heart of Volcano : Teleport into Lair of Valakas</li> * <li>31540, Watcher of Valakas Klein : Teleport into Hall of Flames</li> * <li>31686, Gatekeeper of Fire Dragon : Opens doors to Heart of Volcano</li> * <li>31687, Gatekeeper of Fire Dragon : Opens doors to Heart of Volcano</li> * <li>31759, Teleportation Cubic : Teleport out of Lair of Valakas</li> * <li>31862, Angelic Vortex : Baium Teleport (3 different HTMs according of situation)</li> * <li>32109, Shilen's Stone Statue : Teleport to Sailren Lair</li> * </ul> * @author Plim, original python script by Emperorc */ public class GrandBossTeleporters extends Quest implements ScriptFile { private static final String qn = "GrandBossTeleporters"; private static final int VALAKAS = 29028; // private static final int ANTHARAS = 29019; // Dummy Antharas used for status updates only. public GrandBossTeleporters(int questId, String name, String descr) { super(questId, name, descr); addFirstTalkId(29055, 31862); addStartNpc(13001, 29055, 31859, 31384, 31385, 31540, 31686, 31687, 31759, 31862, 32109); addTalkId(13001, 29055, 31859, 31384, 31385, 31540, 31686, 31687, 31759, 31862, 32109); } private Quest valakasAI() { return QuestManager.getInstance().getQuest("valakas"); } private Quest antharasAI() { return QuestManager.getInstance().getQuest("antharas"); } @SuppressWarnings("unused") private Quest sailrenAI() { return QuestManager.getInstance().getQuest("sailren"); } private static int _valakasPlayersCount = 0; @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { String htmltext = ""; QuestState st = player.getQuestState(qn); if (st == null) { st = newQuestState(player); } if (event.equalsIgnoreCase("baium")) { // Player is mounted on a wyvern, cancel it. if (player.isFlying()) { htmltext = "31862-05.htm"; } else if (!st.hasQuestItems(4295)) { htmltext = "31862-03.htm"; // All is ok, take the item and teleport the player inside. } else { st.takeItems(4295, 1); // allow entry for the player for the next 30 secs. GrandBossManager.getInstance().getZone(113100, 14500, 10077).allowPlayerEntry(player, 30); player.teleToLocation(113100, 14500, 10077); } } else if (event.equalsIgnoreCase("baium_story")) { htmltext = "31862-02.htm"; } else if (event.equalsIgnoreCase("baium_exit")) { final int chance = Rnd.get(3); int x, y, z; switch (chance) { case 0: x = 108784 + Rnd.get(100); y = 16000 + Rnd.get(100); z = -4928; break; case 1: x = 113824 + Rnd.get(100); y = 10448 + Rnd.get(100); z = -5164; break; default: x = 115488 + Rnd.get(100); y = 22096 + Rnd.get(100); z = -5168; break; } player.teleToLocation(x, y, z); } else if (event.equalsIgnoreCase("31540")) { if (st.hasQuestItems(7267)) { st.takeItems(7267, 1); player.teleToLocation(183813, -115157, -3303); st.set("allowEnter", "1"); } else { htmltext = "31540-06.htm"; } } return htmltext; } @Override public String onFirstTalk(L2Npc npc, L2PcInstance player) { String htmltext = ""; QuestState st = player.getQuestState(qn); if (st == null) { st = newQuestState(player); } switch (npc.getNpcId()) { case 29055: htmltext = "29055-01.htm"; break; case 31862: final int status = GrandBossManager.getInstance().getBossStatus(29020); if (status == Baium.AWAKE) { htmltext = "31862-01.htm"; } else if (status == Baium.DEAD) { htmltext = "31862-04.htm"; } else { htmltext = "31862-00.htm"; } break; } return htmltext; } @Override public String onTalk(L2Npc npc, L2PcInstance player) { String htmltext = ""; QuestState st = player.getQuestState(getName()); if (st == null) { return null; } switch (npc.getNpcId()) { case 13001: if (antharasAI() != null) // TODO: reactive for antharas {/* * final int status = GrandBossManager.getInstance().getBossStatus(ANTHARAS); if (status == Antharas.FIGHTING) htmltext = "13001-02.htm"; else if (status == Antharas.DEAD) htmltext = "13001-01.htm"; else if (status == Antharas.DORMANT || status == Antharas.WAITING) { if * (st.hasQuestItems(3865)) { st.takeItems(3865, 1); final L2BossZone zone = GrandBossManager.getInstance().getZone(179700, 113800, -7709); if (zone != null) zone.allowPlayerEntry(player, 30); player.teleToLocation(179700 + Rnd.get(700), 113800 + Rnd.get(2100), -7709); if (status == * Antharas.DORMANT) { GrandBossManager.getInstance().setBossStatus(ANTHARAS, 1); antharasAI().startQuestTimer("beginning", GameProperties.WAIT_TIME_ANTHARAS, null, null, false); } } else htmltext = "13001-03.htm"; } */ } break; case 31859: player.teleToLocation(79800 + Rnd.get(600), 151200 + Rnd.get(1100), -3534); break; case 31385: if (valakasAI() != null) { final int status = GrandBossManager.getInstance().getBossStatus(VALAKAS); if ((status == 0) || (status == 1)) { if (_valakasPlayersCount >= 200) { htmltext = "31385-03.htm"; } else if (st.getInt("allowEnter") == 1) { st.unset("allowEnter"); final L2BossZone zone = GrandBossManager.getInstance().getZone(212852, -114842, -1632); if (zone != null) { zone.allowPlayerEntry(player, 30); } player.teleToLocation(204328 + Rnd.get(600), -111874 + Rnd.get(600), 70); _valakasPlayersCount++; if (status == 0) { L2GrandBossInstance valakas = GrandBossManager.getInstance().getBoss(VALAKAS); valakasAI().startQuestTimer("beginning", GameProperties.WAIT_TIME_VALAKAS, valakas, null, false); GrandBossManager.getInstance().setBossStatus(VALAKAS, 1); } } else { htmltext = "31385-04.htm"; } } else if (status == 2) { htmltext = "31385-02.htm"; } else { htmltext = "31385-01.htm"; } } else { htmltext = "31385-01.htm"; } break; case 31384: DoorTable.getInstance().getDoor(24210004).openMe(); break; case 31686: DoorTable.getInstance().getDoor(24210006).openMe(); break; case 31687: DoorTable.getInstance().getDoor(24210005).openMe(); break; case 31540: if (_valakasPlayersCount < 50) { htmltext = "31540-01.htm"; } else if (_valakasPlayersCount < 100) { htmltext = "31540-02.htm"; } else if (_valakasPlayersCount < 150) { htmltext = "31540-03.htm"; } else if (_valakasPlayersCount < 200) { htmltext = "31540-04.htm"; } else { htmltext = "31540-05.htm"; } break; case 31759: player.teleToLocation(150037 + Rnd.get(500), -57720 + Rnd.get(500), -2976); break; /** * TODO: handle following cases once AI exists : * <ul> * <li>weak stones -- already dead state ? (04)</li> * <li>another party is fighting it (05)</li> * </ul> */ case 32109: if (!player.isInParty()) { htmltext = "32109-03.htm"; } else if (!player.getParty().isLeader(player)) { htmltext = "32109-01.htm"; } else { if (st.hasQuestItems(8784)) { // TODO: Activate Sailren script } else { htmltext = "32109-02.htm"; } } break; } return htmltext; } public static void main(String[] args) { new GrandBossTeleporters(-1, qn, "Teleports"); } }
-
я нашел эту программу не прочитав еще этот пост, но все равно большое спасибо!!!
-
про notepad ++ я итак знаю, меня интерисовала замена <set name="price" val="100"/>Где 100 - может быть рандомное значение А программа BORDIR не устанавливается пишет: "Инсталятор Microsoft Visual C++ вернул ошибку 1603"
-
Вот у меня есть куча файлов в которых есть строчка которая выглядит примерно вот так: <set name="price" val="100"/> Вопрос: как сделать так чтобы все строчки подоброго содержания были удалены? Сборка силентиума
-
там же большинство конфигов в xml, а я не увидел.Сори, спасибо большое
-
я скоко ищу найти не могу, подскажите где?
-
есть ли в сборке silentium конфиги на заточку? скиньте название файла если таковые имеются, или их придется в ядре пилить?
-
не принимал, не качал, вроде все так-же, есть подозрения на forget систему, удалил на всякий случайДа и права были расписаны криво, я в это сильно не вникал теперь жалею))
-
проблема в том что у меня хостинг стоит на моей машине, а доступа к машине ну вот никак невозможно было получить))
-
Havij 1.10 ready! Analyzing http://www.*****.ru/index.php?f=forget Host IP: 46.146.231.89 Web Server: Apache/2.2.22 (Win32) PHP/5.3.5 Powered-by: PHP/5.3.5 Keyword Found: reload I guess injection type is Integer?! Can't find db server type! But maybe there be some chances! [-o< Findig columns count for MySQL failed! It seems that DB server is not MySQL Finding columns count(General): 28 Canceling... Cannot find column count! Job Canceled! Analyzing Host IP: 46.146.231.89 Web Server: Apache/2.2.22 (Win32) PHP/5.3.5 Powered-by: PHP/5.3.5 Keyword Found: reload I guess injection type is Integer?! Can't find db server type! But maybe there be some chances! [-o< Findig columns count for MySQL failed! It seems that DB server is not MySQL Cannot find column count! Target Not Vulnerable Analyzing http://www.****.ru/index.php?f=lk Host IP: 46.146.231.89 Web Server: Apache/2.2.22 (Win32) PHP/5.3.5 Powered-by: PHP/5.3.5 Keyword Found: reload I guess injection type is Integer?! Can't find db server type! But maybe there be some chances! [-o< Findig columns count for MySQL failed! It seems that DB server is not MySQL Cannot find column count! Target Not Vulnerable
-
Да, нул, 11 версия помоему, шелов по данным адресам я не нашел, и дырку с php mailer тоже закрывал
-
Вот логи с сайта: 212.92.233.155 - - [11/Jul/2013:15:20:39 +0400] "GET / HTTP/1.1" 200 14684 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/favicon.ico HTTP/1.1" 200 1406 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/other/ico-on.png HTTP/1.1" 200 2599 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/css/engine.css HTTP/1.1" 200 10224 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/css/style.css HTTP/1.1" 200 10792 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/js/stressweb.js HTTP/1.1" 200 2622 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/js/jquery-1.4.2.min.js HTTP/1.1" 200 71993 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/auction/bg_but.gif HTTP/1.1" 200 89 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/button.gif HTTP/1.1" 200 2126 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/background.jpg HTTP/1.1" 200 51451 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/auction/bg_mbr.gif HTTP/1.1" 200 322 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/auction/bg_mbl.gif HTTP/1.1" 200 404 212.92.233.155 - - [11/Jul/2013:15:20:40 +0400] "GET /templates/default/images/header.png HTTP/1.1" 200 404439 212.92.233.155 - - [11/Jul/2013:15:20:54 +0400] "GET /index.php?f=files HTTP/1.1" 200 10581 212.92.233.155 - - [11/Jul/2013:15:21:09 +0400] "GET /index.php HTTP/1.1" 200 14684 212.92.233.155 - - [11/Jul/2013:15:21:11 +0400] "GET /index.php?f=files HTTP/1.1" 200 10581 212.92.233.155 - - [11/Jul/2013:15:21:51 +0400] "GET /index.php?f=files HTTP/1.1" 200 10581 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/other/ico-on.png HTTP/1.1" 200 2599 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/favicon.ico HTTP/1.1" 200 1406 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/css/style.css HTTP/1.1" 200 10792 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/css/engine.css HTTP/1.1" 200 10224 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/js/stressweb.js HTTP/1.1" 200 2622 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/js/jquery-1.4.2.min.js HTTP/1.1" 200 71993 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/auction/bg_but.gif HTTP/1.1" 200 89 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/button.gif HTTP/1.1" 200 2126 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/background.jpg HTTP/1.1" 200 51451 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/auction/bg_mbl.gif HTTP/1.1" 200 404 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/auction/bg_mbr.gif HTTP/1.1" 200 322 212.92.233.155 - - [11/Jul/2013:15:21:53 +0400] "GET /templates/default/images/header.png HTTP/1.1" 200 404439 212.92.233.155 - - [11/Jul/2013:15:21:57 +0400] "GET /index.php?f=lk HTTP/1.1" 200 11480 212.92.233.155 - - [11/Jul/2013:15:21:58 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1246 212.92.233.155 - - [11/Jul/2013:15:21:59 +0400] "GET /index.php?f=forget HTTP/1.1" 200 11344 212.92.233.155 - - [11/Jul/2013:15:22:01 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1302 212.92.233.155 - - [11/Jul/2013:15:22:05 +0400] "POST /index.php?f=forget HTTP/1.1" 200 10021 212.92.233.155 - - [11/Jul/2013:15:22:09 +0400] "GET /index.php?f=register HTTP/1.1" 200 13592 212.92.233.155 - - [11/Jul/2013:15:22:10 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1266 212.92.233.155 - - [11/Jul/2013:15:22:16 +0400] "GET /inc/captcha/antibot.php?rndval=1373541743087 HTTP/1.1" 200 1264 212.92.233.155 - - [11/Jul/2013:15:22:19 +0400] "POST /index.php?f=forget HTTP/1.1" 200 10021 212.92.233.155 - - [11/Jul/2013:15:22:23 +0400] "GET /index.php HTTP/1.1" 200 14684 212.92.233.155 - - [11/Jul/2013:15:22:27 +0400] "GET /cache HTTP/1.1" 301 234 212.92.233.155 - - [11/Jul/2013:15:22:27 +0400] "GET /cache/ HTTP/1.1" 200 7190 212.92.233.155 - - [11/Jul/2013:15:22:27 +0400] "GET /favicon.ico HTTP/1.1" 404 209 212.92.233.155 - - [11/Jul/2013:15:22:51 +0400] "GET /cache/cache_l2login_asocura_l0.sw HTTP/1.1" 200 1840 212.92.233.155 - - [11/Jul/2013:15:23:18 +0400] "GET /cache/cache_l2login_bym123_l0.sw HTTP/1.1" 200 1194 212.92.233.155 - - [11/Jul/2013:15:23:24 +0400] "GET /cache/cache_l2login_cripz3566956_l0.sw HTTP/1.1" 200 1206 212.92.233.155 - - [11/Jul/2013:15:23:29 +0400] "GET /cache/cache_l2login_extazy_l0.sw HTTP/1.1" 200 1200 79.141.59.232 - - [11/Jul/2013:15:23:29 +0400] "GET /templates/default/images/header.png HTTP/1.1" 200 404439 212.92.233.155 - - [11/Jul/2013:15:23:36 +0400] "GET /cache/cache_l2login_kibo871_l0.sw HTTP/1.1" 200 1200 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/favicon.ico HTTP/1.1" 200 1406 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/css/engine.css HTTP/1.1" 200 10224 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/css/style.css HTTP/1.1" 200 10792 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/other/ico-on.png HTTP/1.1" 200 2599 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/js/stressweb.js HTTP/1.1" 200 2622 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/auction/bg_but.gif HTTP/1.1" 200 89 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/js/jquery-1.4.2.min.js HTTP/1.1" 200 71993 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/button.gif HTTP/1.1" 200 2126 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/background.jpg HTTP/1.1" 200 51451 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/auction/bg_mbr.gif HTTP/1.1" 200 322 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/auction/bg_mbl.gif HTTP/1.1" 200 404 212.92.233.155 - - [11/Jul/2013:15:24:08 +0400] "GET /index.php HTTP/1.1" 200 14684 212.92.233.155 - - [11/Jul/2013:15:24:09 +0400] "GET /templates/default/images/header.png HTTP/1.1" 200 404439 212.92.233.155 - - [11/Jul/2013:15:24:10 +0400] "GET /index.php?f=forget HTTP/1.1" 200 11344 212.92.233.155 - - [11/Jul/2013:15:24:11 +0400] "GET /templates/default/js/jquery-1.4.2.min.js HTTP/1.1" 304 - 212.92.233.155 - - [11/Jul/2013:15:24:11 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1304 212.92.233.155 - - [11/Jul/2013:15:24:16 +0400] "GET /index.php?f=lk HTTP/1.1" 200 11480 212.92.233.155 - - [11/Jul/2013:15:24:17 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1293 212.92.233.155 - - [11/Jul/2013:15:24:26 +0400] "POST /index.php?f=lk HTTP/1.1" 200 11888 212.92.233.155 - - [11/Jul/2013:15:24:27 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1288 212.92.233.155 - - [11/Jul/2013:15:24:33 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1290 212.92.233.155 - - [11/Jul/2013:15:24:39 +0400] "GET /index.php?f=forget HTTP/1.1" 200 11344 212.92.233.155 - - [11/Jul/2013:15:24:40 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1298 212.92.233.155 - - [11/Jul/2013:15:24:47 +0400] "POST /index.php?f=forget HTTP/1.1" 200 10025 212.92.233.155 - - [11/Jul/2013:15:24:51 +0400] "GET /index.php?f=register HTTP/1.1" 200 13592 212.92.233.155 - - [11/Jul/2013:15:24:53 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1267 212.92.233.155 - - [11/Jul/2013:15:25:05 +0400] "POST /index.php?f=register HTTP/1.1" 200 13831 212.92.233.155 - - [11/Jul/2013:15:25:06 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1310 212.92.233.155 - - [11/Jul/2013:15:25:08 +0400] "GET /index.php?f=register HTTP/1.1" 200 13592 212.92.233.155 - - [11/Jul/2013:15:25:09 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1298 212.92.233.155 - - [11/Jul/2013:15:25:13 +0400] "GET /index.php?f=forget HTTP/1.1" 200 11344 212.92.233.155 - - [11/Jul/2013:15:25:14 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1296 212.92.233.155 - - [11/Jul/2013:15:25:20 +0400] "POST /index.php?f=forget HTTP/1.1" 200 10664 212.92.233.155 - - [11/Jul/2013:15:25:37 +0400] "POST /index.php?f=forget HTTP/1.1" 200 10237 212.92.233.155 - - [11/Jul/2013:15:25:42 +0400] "GET /index.php?f=lk HTTP/1.1" 200 11480 212.92.233.155 - - [11/Jul/2013:15:25:43 +0400] "GET /inc/captcha/antibot.php HTTP/1.1" 200 1251 212.92.233.155 - - [11/Jul/2013:15:25:55 +0400] "POST /index.php?f=lk HTTP/1.1" 302 3 212.92.233.155 - - [11/Jul/2013:15:25:56 +0400] "GET /index.php?f=lk HTTP/1.1" 200 11821 212.92.233.155 - - [11/Jul/2013:15:26:01 +0400] "GET /index.php?f=lk&opt=chpass HTTP/1.1" 200 11522 212.92.233.155 - - [11/Jul/2013:15:26:07 +0400] "POST /index.php?f=lk&opt=chpass HTTP/1.1" 200 11667 212.92.233.155 - - [11/Jul/2013:15:27:23 +0400] "GET /index.php?f=lk&opt=chars HTTP/1.1" 200 11821 212.92.233.155 - - [11/Jul/2013:15:28:27 +0400] "GET /index.php?f=about HTTP/1.1" 200 12795 После этого появился логин на админский аккаунт, папка cache поидее была закрыта, если верить настройке файла: deny from all
-
Окей, спасибо за предложения, дальше сам посмотрю)
-
офф сайт не обслуживается написано
-
Платные, бесплатные с хорошей реализацией (желательно с почти полной, думаю за 6 лет можно было реализовать все) Желательно со ссылками на офф форумы и ценами если сборка платная P.S. нужна на классик проект х1200