Status
Not open for further replies.

AnimeHaxor

Retro-NulledTeam
Registered
Joined
8 year 4 month 27 day
Messages
6,522
Reaction score
40,575
Points
113
Site Script
XenForo
https://www.cloudflare.com/a/network/YourSite.com

1. WebSockets: enabled

2. Pseudo IPv4: Overwrite headers

3. IP Geolocation: enabled

Login to your FTP Access /var/www/ or /home/YourUsername/public_html/ - /library/config.php edit / notepad++ ONLY. Do not use notepad original.

Add code line
Code:
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP']; }

Save it & exit. Try login to your Admin Panel.
 

DavidMcCl

Registered
Joined
7 year 6 month 1 day
Messages
38
Reaction score
2
Points
8
Age
35
i edited the config file and it still says it
 

DavidMcCl

Registered
Joined
7 year 6 month 1 day
Messages
38
Reaction score
2
Points
8
Age
35
The only thing i see in the config file is my DB username and PW
Code:
<?php
 
$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = 'MyUSERNAME';
$config['db']['password'] = 'MYPASSWORD';
$config['db']['dbname'] = 'DBNAME';
 
 
$config['superAdmins'] = '1';

Code:
 /public_html/library
 
http://prntscr.com/ft7hiu
 

AnimeHaxor

Retro-NulledTeam
Registered
Joined
8 year 4 month 27 day
Messages
6,522
Reaction score
40,575
Points
113
Site Script
XenForo
Before
Code:
<?php

$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = 'MyUSERNAME';
$config['db']['password'] = 'MYPASSWORD';
$config['db']['dbname'] = 'DBNAME';


$config['superAdmins'] = '1';

After
Code:
<?php

$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = 'MyUSERNAME';
$config['db']['password'] = 'MYPASSWORD';
$config['db']['dbname'] = 'DBNAME';


$config['superAdmins'] = '1';
$config['enableListeners'] = false;

Save & Exit.
 

DavidMcCl

Registered
Joined
7 year 6 month 1 day
Messages
38
Reaction score
2
Points
8
Age
35
Actually that worked thanks !!
now i got to install that file
 

DavidMcCl

Registered
Joined
7 year 6 month 1 day
Messages
38
Reaction score
2
Points
8
Age
35
OKay i go in now im in and Addon is installed do if i remove the code from the config file it kicks me again with the same error
what do i do in here>?
http://prntscr.com/ft7n0y


and do i change the

Code:
Do i change $config['enableListeners'] = false;
 
 
 
to //$config['enableListeners'] = false; or to this $config['enableListeners'] = true;
 

AnimeHaxor

Retro-NulledTeam
Registered
Joined
8 year 4 month 27 day
Messages
6,522
Reaction score
40,575
Points
113
Site Script
XenForo
Code:
//$config['enableListeners'] = false;
 
Status
Not open for further replies.