Greeting everyone
I am really grateful for this entire site and the great tutorials as it regards to building a community forum however i have encountered a challenge when it comes to uploading the whole thing online. Can anyone please help me work around the procedure of migrating my localhost site, online? I already zipped and uploaded my local site from htdocs which works pretty fine locally but cant seem to get it running online. Please
this is my code php code
<?php return array (
'debug' => true, //initially false(changed)
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'port' => 3306,
'database' => 'flarum',
'username' => 'flarumowner',
'password' => 'flarum123',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => 'flrm_',
'engine' => 'InnoDB',
'prefix_indexes' => true,
),
'url' => 'http://forum.nerokas.co.ke/',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
'headers' =>
array (
'poweredByHeader' => true,
'referrerPolicy' => 'same-origin',
),
);
thank you