0
After installing Shop module, sma is working on following URL http://domain.com/admin/welcome. but my shop module is not working on URL http://domain.com.
received following error
This page isn’t workingmaximemonline.com is currently unable to handle this request.
HTTP ERROR 500
0
What's your error log on php and apache look like?
0
Hello,
You need to check your server php error logs to know the cause. You can enable app logs by changing the log_threshold
to 1 in the app/config/config.php
and then try to visit shop page again to produce errors. Lastly check the latest log file in the app/logs/
folder.
Thank you
0
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
ERROR - 2022-03-17 23:11:23 --> Severity: error --> Exception: syntax error, unexpected '=>' (T_DOUBLE_ARROW) /home/530186.cloudwaysapps.com/vmwpfckdxd/public_html/app/config/hybridauthlib.php 67
ERROR - 2022-03-17 23:11:26 --> Severity: error --> Exception: syntax error, unexpected '=>' (T_DOUBLE_ARROW) /home/530186.cloudwaysapps.com/vmwpfckdxd/public_html/app/config/hybridauthlib.php 67
ERROR - 2022-03-17 23:11:48 --> Severity: error --> Exception: syntax error, unexpected '=>' (T_DOUBLE_ARROW) /home/530186.cloudwaysapps.com/vmwpfckdxd/public_html/app/config/hybridauthlib.php 67
error received on my log file
0
already I have changed log_threshold to 1, but still not working
1
Hello,
Please make sure you are on php 7.4
If yes, you can replace the contents of file app/config/hybridauthlib.php
with following
<?php
defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
/* HybridAuth Guide: http://hybridauth.github.io/hybridauth/userguide.html
/* ------------------------------------------------------------------------- */
$config = [
// For godady Shared Hosting Server uncomment the line below
// Please update the callback url too
'callback' => 'social_auth/login',
'Hauth_base_url' => 'social_auth/endpoint',
// Please comment this if you have uncommented the above
// 'Hauth_base_url' => 'social_auth/endpoint',
'providers' => [
'Google' => [
'enabled' => false,
'keys' => ['id' => '', 'secret' => ''],
],
'Facebook' => [
'enabled' => false,
'keys' => ['id' => '', 'secret' => ''],
'scope' => 'email, public_profile',
],
'Twitter' => [
'enabled' => false,
'keys' => ['key' => '', 'secret' => ''],
],
'Yahoo' => [
'enabled' => false,
'keys' => ['id' => '', 'secret' => ''],
],
'Live' => [
'enabled' => false,
'keys' => ['id' => '', 'secret' => ''],
],
'MySpace' => [
'enabled' => false,
'keys' => ['key' => '', 'secret' => ''],
],
'OpenID' => [
'enabled' => false,
],
'LinkedIn' => [
'enabled' => false,
'keys' => ['key' => '', 'secret' => ''],
],
'Foursquare' => [
'enabled' => false,
'keys' => ['id' => '', 'secret' => ''],
],
'AOL' => [
'enabled' => false,
],
],
'debug_mode' => false,
'debug_file' => APPPATH . 'logs/hybridauth.php',
];
Thank you
We use Cookies
We use cookies to ensure that we give you the best experience on our website. By continuing to browse the site you are agreeing to our use of cookies.
Please visit https://tecdiary.com for purchase, support and all other tasks. If you find any bug/error there, please do inform us. Thank you