Загрузка...

Помогите с ошибкой

Тема в разделе Backend создана пользователем EroxCf 25 ноя 2022. 232 просмотра

  1. EroxCf
    EroxCf Автор темы 25 ноя 2022 14 22 янв 2019
    An Error Was Encountered
    The Encrypt library requires the Mcrypt extension.
    вот
     
  2. milfix
    milfix 25 ноя 2022 Заблокирован(а) 2281 31 окт 2018
    мб код покажешь не?
     
    1. EroxCf Автор темы
      milfix,
      Код
      <?php error_reporting(0);

      if (is_dir(dirname(__FILE__).'/install') == true)
      {
      header('Location: /install');
      exit;
      }


      function is_admin(){
      global $_COOKIE;
      if(empty($_COOKIE['administrator']))
      return false;
      elseif($_COOKIE['administrator']!=='1594849')
      return false;
      else
      return true;
      }

      $starttime = time()+microtime();

      if(is_admin())
      define('ENVIRONMENT', 'development');
      else
      define('ENVIRONMENT', 'production');


      if (defined('ENVIRONMENT'))
      {
      switch (ENVIRONMENT)
      {
      case 'development':
      error_reporting(E_ALL);
      ini_set("display_errors", 1);
      define('BR', "<br />\n");
      break;

      case 'testing':
      case 'production':
      error_reporting(0);
      break;

      default:
      exit('The application environment is not set correctly.');
      }
      }


      $system_path = 'system';

      $application_folder = 'application';

      if (defined('STDIN'))
      {
      chdir(dirname(__FILE__));
      }

      if (realpath($system_path) !== FALSE)
      {
      $system_path = realpath($system_path).'/';
      }

      // ensure there's a trailing slash
      $system_path = rtrim($system_path, '/').'/';

      // Is the system path correct?
      if ( ! is_dir($system_path))
      {
      if(is_admin()){
      print_r($system_path);
      }
      exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
      }

      /*
      * -------------------------------------------------------------------
      * Now that we know the path, set the main path constants
      * -------------------------------------------------------------------
      */
      // The name of THIS file
      define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));

      // The PHP file extension
      // this global constant is deprecated.
      define('EXT', '.php');

      // Path to the system folder
      define('BASEPATH', str_replace("\\", "/", $system_path));

      // Path to the front controller (this file)
      define('FCPATH', str_replace(SELF, '', __FILE__));

      // Name of the "system folder"
      define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));


      // The path to the "application" folder
      if (is_dir($application_folder))
      {
      define('APPPATH', $application_folder.'/');
      }
      else
      {
      if ( ! is_dir(BASEPATH.$application_folder.'/'))
      {
      exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
      }

      define('APPPATH', BASEPATH.$application_folder.'/');
      }

      /*
      * --------------------------------------------------------------------
      * LOAD THE BOOTSTRAP FILE
      * --------------------------------------------------------------------
      *
      * And away we go...
      *
      */
      require_once BASEPATH.'core/CodeIgniter.php';

      $stoptime = time()+microtime();
      $gentime = round($stoptime-$starttime, 5);

      // if()"<!--- $gentime sec. --->";

      /* End of file index.php */
      /* Location: ./index.php */
  3. EroxCf
    EroxCf Автор темы 25 ноя 2022 14 22 янв 2019
    а чего именно?)индекса?
     
  4. bog
    bog 25 ноя 2022 УШЕЛ В АРМИЮ, ПРИДУ ПРИМЕРНО В МАЕ 2026 :pwalk:
    гуглить пробовал?
     
    1. EroxCf Автор темы
      bog, Да, там что-то на программном
  5. EroxCf
    EroxCf Автор темы 25 ноя 2022 14 22 янв 2019
    я так понял Mcript надо поставить?
     
    25 ноя 2022 Изменено
    1. milfix
    2. milfix
      EroxCf, это же библиотека
  6. milfix
    milfix 25 ноя 2022 Заблокирован(а) 2281 31 окт 2018
    У тебя в пхп.ини

    extension=php_mcrypt.dll эта строка есть?
     
    1. Посмотреть предыдущие комментарии (3)
    2. milfix
      EroxCf, пхаха, ну а что ты удивляешься тогда. Сначало скачай
    3. EroxCf Автор темы
      milfix, тоесть надо энкрипт установить и по идее готово?
    4. milfix
      EroxCf, Надо его установить, проверить инфу по пхп, в пхп ини должна быть строка которую я указал выше, её раскоментируешь и можешь работать
    5. Посмотреть следующие комментарии (5)
Загрузка...
Top