Les articles publiés sur le site
-
$nombre_de_logs
17 août 2010, par Mark — Variables and Constants for customisationThis PHP variable defines the maximum number of archives of each of SPIP's log files (mysql.log, spip.log, prive_spip.log, etc..) which are stored in the directory specified by _NOM_TEMPORAIRES_INACCESSIBLES. In fact, once any one of the log files reaches its maximum size, it is automatically (...) -
$taille_des_logs
17 août 2010, par Mark — Variables and Constants for customisationThis PHP variable defines the maximum size in KB of SPIP's log files (mysql.log, spip.log, prive_spip.log, etc..) which are stored in the directory specified by _NOM_TEMPORAIRES_INACCESSIBLES. This variable can be customised in the mes_options.php>/code> file and equals 100 by default. (...) -
_NOM_PERMANENTS_INACCESSIBLES
17 août 2010, par Mark — Variables and Constants for customisationThis is the name of the directory for the permanent files which are not accessible via HTTP. It contains the configuration file managed by SPIP during installation, and also the sqlite database and the chmod.php file (which makes it easier to manage the write access mode determined by the (...) -
_NOM_TEMPORAIRES_INACCESSIBLES
17 août 2010, par Mark — Variables and Constants for customisationThis is the name of the directory for the temporary files which are not accessible via HTTP. It chiefly contains the log files, database exports and most of the cache files. define('_NOM_TEMPORAIRES_INACCESSIBLES', "tmp/"); Application: if you want to store the files in question elsewhere than (...) -
_NOM_TEMPORAIRES_ACCESSIBLES
17 août 2010, par Mark — Variables and Constants for customisationThis is the name of the directory for the temporary files that are accessible via HTTP. This directory chiefly contains the cache for the images, stylesheets and JavaScript files which are used by SPIP. define('_NOM_TEMPORAIRES_ACCESSIBLES', "local/"); This constant can only be modified in (...)