ma_am

انتقال به سايت ديگر

12 پست در این موضوع

سلام

داخل فايل index.php سايتم كد انتقال سايت اضافه شده البته نميدونم چطوري.

حالا چطور بايد اين كد رو حذف كنم و دوباره به سايت خودم دايركت بشم؟

كل محتويات فايل index.php من اينه:

<html>

<head>

</head>

<META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://idblogg.com/">

<body><center>website maintenance</center></body>

</html>

آدرس سايتمو كه ميزنم ريدايركت ميشه به سايت idblogg.com

Share this post


Link to post
Share on other sites
آموزش ووکامرس قالب جوملا قالب وردپرس قالب رایگان وردپرس قالب رایگان جوملا هاست نامحدود هاست جوملا هاست لاراول هاست وردپرس هاست ارزان هاست ربات تلگرام خرید دامنه آموزش ساخت ربات تلگرام با php آموزش html و css آموزش لاراول آموزش cPanel آموزش php آموزش سئو وردپرس آموزش امنیت وردپرس آموزش وردپرس آموزش فرم ساز RSform آموزش سئو جوملا آموزش فروشگاه ساز Hikashop آموزش فروشگاه ساز ویرچومارت آموزش طراحی سایت آگهی تبلیغاتی آموزش امنیت جوملا آموزش طراحی سایت فروش فایل آموزش طراحی قالب ریسپانسیو با Helix آموزش جوملا 3 آموزش ساخت ربات دکمه ی شیشه ای آموزش ساخت ربات همکاری در فروش آموزش ساخت ربات جذب ممبر آموزش ساخت ربات ضد اسپم آموزش ساخت ربات پیوست فایل سورس ربات مدیر گروه | ربات مدیر گروه همسریابی

عجیبه

این کد را بردار

<META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://idblogg.com/">

<body><center>website maintenance</center>

Share this post


Link to post
Share on other sites

خب اگه اين كد رو بردارم كه چيزي توي فايل index باقي نميمونه و فقط يه صفحه سفيد بعد از لود شدن سايت نشون ميده!!!

Share this post


Link to post
Share on other sites

عزیزم . یک دمو بده ببینیم

شما روی سایتت قالب نصب کردین؟ یا خودتون طراحی کردین؟

این فایل را قبلا ویرایش کرده بودین؟

Share this post


Link to post
Share on other sites

توی همون کد به جای idblogg.com آدرس سایت خودتون رو بذارید ببینید درست میشه....

Share this post


Link to post
Share on other sites

از قالب آماده استفاده کردم. قبلا هم این فایل رو ویرایش نکردم

از کدوم قسمت سایت دمو بدم

به جای idblogg آدرس سایت خودم رو گداشتم ولی حل نشد چون باعث شد سایت پشت سرهم رفرش بشه . چیزی باز نشه!!

Share this post


Link to post
Share on other sites

به نظر سایت شما هک شده و ایندکس روت شما به این ایندکس که محتویاتش رو قرار دادید تبدیل شده ..

از یک نسخه سالم جوملا فایل index.php رو جایگزین کنید درست میشه

Share this post


Link to post
Share on other sites

دوست گرامی یک دمو بزاری جای دوری نمیره بچه ها بهتر میتونن راهنمایی کنن؛ دومو میتونه شامل یک تصویر باشه یا اصلا از همه بهتر آدرس سایت رو بزار، نمیخوریمش که:37::hehe:

Share this post


Link to post
Share on other sites

کاری که ابولافضل ( تارانتینو) گفت رو انجام بده حله... من محتویات رو میذارم ، توی ایندکست کپی پیست کن .. بعد دسترسی ایندکس رو روی 644 بذار .

برای 1.5


<?php
/**
* @version        $Id: index.php 14401 2010-01-26 14:10:00Z louis $
* @package        Joomla
* @copyright    Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license        GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// Set flag that this is a parent file
define( '_JEXEC', 1 );

define('JPATH_BASE', dirname(__FILE__) );

define( 'DS', DIRECTORY_SEPARATOR );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

JDEBUG ? $_PROFILER->mark( 'afterLoad' ) : null;

/**
* CREATE THE APPLICATION
*
* NOTE :
*/
$mainframe =& JFactory::getApplication('site');

/**
* INITIALISE THE APPLICATION
*
* NOTE :
*/
// set the language
$mainframe->initialise();

JPluginHelper::importPlugin('system');

// trigger the onAfterInitialise events
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;
$mainframe->triggerEvent('onAfterInitialise');

/**
* ROUTE THE APPLICATION
*
* NOTE :
*/
$mainframe->route();

// authorization
$Itemid = JRequest::getInt( 'Itemid');
$mainframe->authorize($Itemid);

// trigger the onAfterRoute events
JDEBUG ? $_PROFILER->mark('afterRoute') : null;
$mainframe->triggerEvent('onAfterRoute');

/**
* DISPATCH THE APPLICATION
*
* NOTE :
*/
$option = JRequest::getCmd('option');
$mainframe->dispatch($option);

// trigger the onAfterDispatch events
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;
$mainframe->triggerEvent('onAfterDispatch');

/**
* RENDER  THE APPLICATION
*
* NOTE :
*/
$mainframe->render();

// trigger the onAfterRender events
JDEBUG ? $_PROFILER->mark('afterRender') : null;
$mainframe->triggerEvent('onAfterRender');

/**
* RETURN THE RESPONSE
*/
echo JResponse::toString($mainframe->getCfg('gzip'));



برای 2.5


<?php
/**
* @package        Joomla.Site
* @copyright    Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license        GNU General Public License version 2 or later; see LICENSE.txt
*/

// Set flag that this is a parent file.
define('_JEXEC', 1);
define('DS', DIRECTORY_SEPARATOR);

if (file_exists(dirname(__FILE__) . '/defines.php')) {
   include_once dirname(__FILE__) . '/defines.php';
}

if (!defined('_JDEFINES')) {
   define('JPATH_BASE', dirname(__FILE__));
   require_once JPATH_BASE.'/includes/defines.php';
}

require_once JPATH_BASE.'/includes/framework.php';

// Mark afterLoad in the profiler.
JDEBUG ? $_PROFILER->mark('afterLoad') : null;

// Instantiate the application.
$app = JFactory::getApplication('site');

// Initialise the application.
$app->initialise();

// Mark afterIntialise in the profiler.
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;

// Route the application.
$app->route();

// Mark afterRoute in the profiler.
JDEBUG ? $_PROFILER->mark('afterRoute') : null;

// Dispatch the application.
$app->dispatch();

// Mark afterDispatch in the profiler.
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;

// Render the application.
$app->render();

// Mark afterRender in the profiler.
JDEBUG ? $_PROFILER->mark('afterRender') : null;

// Return the response.
echo $app;


Share this post


Link to post
Share on other sites

من فکر میکنم که یه فایل index.php از یه بسته ی جوملای سالم جایگزین این ایندکس کنید.

خطوط دیگه ای هم تو این فایل هست که در فایل سالم میتونید ببینید

Share this post


Link to post
Share on other sites

برای ارسال نظر یک حساب کاربری ایجاد کنید یا وارد حساب خود شوید

برای اینکه بتوانید نظر ارسال کنید نیاز دارید که کاربر سایت شوید

ایجاد یک حساب کاربری

برای حساب کاربری جدید در انجمن ما ثبت نام کنید. عضویت خیلی ساده است !


ثبت نام یک حساب کاربری جدید

ورود به حساب کاربری

دارای حساب کاربری هستید؟ از اینجا وارد شوید


ورود به حساب کاربری