A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Untitled - Stikked
From Harmless Tern, 9 Years ago, written in PHP.
Embed
  1. * APPLICATION DIRECTORY NAME
  2.  *---------------------------------------------------------------
  3.  *
  4.  * If you want this front controller to use a different "application"
  5.  * directory than the default one you can set its name here. The directory
  6.  * can also be renamed or relocated anywhere on your server. If you do,
  7.  * use an absolute (full) server path.
  8.  * For more info please see the user guide:
  9.  *
  10.  * https://codeigniter.com/user_guide/general/managing_apps.html
  11.  *
  12.  * NO TRAILING SLASH!
  13.  */
  14.         $application_folder = 'application';
  15. /*
  16.  *---------------------------------------------------------------
  17.  * VIEW DIRECTORY NAME
  18.  *---------------------------------------------------------------
  19.  *
  20.  * If you want to move the view directory out of the application
  21.  * directory, set the path to it here. The directory can be renamed
  22.  * and relocated anywhere on your server. If blank, it will default
  23.  * to the standard location inside your application directory.
  24.  * If you do move this, use an absolute (full) server path.
  25.  *
  26.  * NO TRAILING SLASH!
  27.  */
  28.         $view_folder = 'themes/default/views';
  29. /*
  30.  * --------------------------------------------------------------------
  31.  * DEFAULT CONTROLLER
  32.  * --------------------------------------------------------------------
  33.  *
  34.  * Normally you will set your default controller in the routes.php file.
  35.  * You can, however, force a custom routing by hard-coding a
  36.  * specific controller class/function here. For most applications, you
  37.  * WILL NOT set your routing here, but it's an option for those
  38.  * special instances where you might want to override the standard
  39.  * routing in a specific front controller that shares a common CI installation.
  40.  *
  41.  * IMPORTANT: If you set the routing here, NO OTHER controller will be
  42.  * callable. In essence, this preference limits your application to ONE
  43.  * specific controller. Leave the function name blank if you need
  44.  * to call functions dynamically via the URI.
  45.  *
  46.  * Un-comment the $routing array below to use this feature
  47.  */
  48.         // The directory name, relative to the "controllers" directory.  Leave blank
  49.         // if your controller is not in a sub-directory within the "controllers" one
  50.         // $routing['directory'] = '';
  51.         // The controller class file name.  Example:  mycontroller
  52.         // $routing['controller'] = '';
  53.         // The controller function you wish to be called.
  54.         // $routing['function'] = '';
  55. /*
  56.  * -------------------------------------------------------------------
  57.  *  CUSTOM CONFIG VALUES
  58.  * -------------------------------------------------------------------
  59.  *
  60.  * The $assign_to_config array below will be passed dynamically to the
  61.  * config class when initialized. This allows you to set custom config
  62.  * items or override any default config values found in the config.php file.
  63.  * This can be handy as it permits you to share one application between
  64.  * multiple front controller files, with each file containing different
  65.  * config values.
  66.  *
  67.  * Un-comment the $assign_to_config array below to use this feature
  68.  */
  69.         // $assign_to_config['name_of_config_item'] = 'value of config item';
  70. // --------------------------------------------------------------------
  71. // END OF USER CONFIGURABLE SETTINGS.  DO NOT EDIT BELOW THIS LINE
  72. // --------------------------------------------------------------------
  73. /*
  74.  * ---------------------------------------------------------------
  75.  *  Resolve the system path for increased reliability
  76.  * ---------------------------------------------------------------
  77.  */
  78.         // Set the current directory correctly for CLI requests
  79.         if (defined('STDIN'))
  80.         {
  81.                 chdir(dirname(__FILE__));
  82.         }
  83.         if (($_temp = realpath($system_path)) !== FALSE)
  84.         {
  85.                 $system_path = $_temp.DIRECTORY_SEPARATOR;
  86.         }
  87.         else
  88.         {
  89.                 // Ensure there's a trailing slash
  90.                 $system_path = strtr(
  91.                         rtrim($system_path, '/\\'),
  92.                         '/\\',
  93.                         DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR
  94.                 ).DIRECTORY_SEPARATOR;
  95.         }

Replies to Untitled rss

Title Name Language When
Re: Untitled Speedy Octupus php 9 Years ago.