Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted February 9Feb 9 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;
February 10Feb 10 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.
February 10Feb 10 Community Expert Back it up first :) Of course, there isnt really any need to be removing things.