It says It has something to do with this line at the first line
$connection->prepare("set session sql_mode=''")->execute();
I removed the line and it fixed it, but I cannot do anything, help!!!
"Error: Call to a member function" What's happening?!
What's your system config ? Did Flarum run before or it broken after install ? Do you have extensions installed ?
One of my guess (but it's hard to tell without the details above) would be that php-mysql
module is not enabled.
clarkwinkelmann I resolved the problem already, figured it out myself ?
inparsian maybe you can explain what it was in case somebody finds this thread in the future ? ?
clarkwinkelmann I added a .htaccess file after the installation page popped up, it fixed my issues
- Edited
inparsian if I do a same thing, like this
// If the "strict" option has been configured for the connection we will setup
// strict mode for this session. Strict mode enforces some extra rules when
// using the MySQL database system and is a quicker way to enforce them.
if (isset($config['strict'])) {
if ($config['strict']) {
$connection->prepare("set session sql_mode='STRICT_ALL_TABLES'")->execute();
} else {
//$connection->prepare("set session sql_mode=''")->execute();
}
}
and i get this error
- Edited
Haloooo every body here, hahahahah Yeeaahhh Problem solved, ?
I am very happy after several hours trying to solve my own problem, it is very simple, just delete the parameters in config.php
I will make a short tutorial in this forum with the post title "How to Upload Flarum to Shared Hosting After Managed in Localhost"
<?php return array (
'debug' => true,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'yourdb_inhost',
'username' => 'yourun_inhost',
'password' => 'yourpwd_inhost',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => false, //<---JUST REMOVE THIS PARAMETER
),
'url' => 'https://fgate.000webhostapp.com/',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
);
see the demo https://fgate.000webhostapp.com/
I've verified this tip by performed it to different host, see the demo http://forum.gatewan.com