Jump to content

Featured Replies

Posted

I've been using IPB for 20 years now and my conf_global probably has unnecessary lines of code. I'm self-hosting 4.7.20.

Please let me know which lines below I can delete. Thx!

<?php

$INFO = array (

'sql_driver' => 'mysql',

'sql_host' => 'localhost',

'sql_database' => '12345678',

'sql_user' => '12345678',

'sql_pass' => '12345678@',

'sql_tbl_prefix' => '12345678',

'sql_debug' => '1',

'board_start' => '12345678',

'installed' => '1',

'php_ext' => 'php',

'safe_mode' => '0',

'board_url' => 'https://12345678.com',

'banned_group' => '5',

'admin_group' => '4',

'guest_group' => '2',

'member_group' => '3',

'auth_group' => '1',

'mysql_tbl_type' => 'MyISAM',

'sql_charset' => 'utf8mb4',

);

$INFO['sql_utf8mb4'] = true;

  • Community Expert

This is the default conf_global for a fresh 4.7 install:

<?php

$INFO = array (
  'sql_host' => 'localhost',
  'sql_database' => '12345678',
  'sql_user' => '12345678',
  'sql_pass' => '12345678@',
  'sql_tbl_prefix' => '12345678',
  'sql_utf8mb4' => true,
  'board_start' => 12345678,
  'installed' => true,
  'base_url' => 'https://12345678.com/',
  'guest_group' => 2,
  'member_group' => 3,
  'admin_group' => 4,
);

I used your same values for the entries so you can compare.

  • Author

Thx!

  • Community Expert

Back it up first :)

Of course, there isnt really any need to be removing things.

Recently Browsing 0

  • No registered users viewing this page.