Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 05-03-2011, 01:02 PM   #1
MyCamProfile
Confirmed User
 
MyCamProfile's Avatar
 
Industry Role:
Join Date: Jan 2011
Posts: 354
Help.. site error

I tryed to log into the admin zone of my site and I receive this error when I go into my management area. Nothing has been changed.


Warning: include_once(/home/mycampro/public_html/siteadmin/Data/Members/class.MembersData.php) [function.include-once]: failed to open stream: No such file or directory in /home/mycampro/public_html/siteadmin/Modules/Members/class.Members.php on line 5

Warning: include_once() [function.include]: Failed opening '/home/mycampro/public_html/siteadmin/Data/Members/class.MembersData.php' for inclusion (include_path='.:/home/proevote/public_html/domains/foodymoody.com/system') in /home/mycampro/public_html/siteadmin/Modules/Members/class.Members.php on line 5

Fatal error: Class 'MembersData' not found in /home/mycampro/public_html/siteadmin/Modules/Members/class.Members.php on line 7

Does anyone know what this could be?
__________________
MyCamProfile is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-03-2011, 01:03 PM   #2
CurrentlySober
Too lazy to wipe my ass
 
CurrentlySober's Avatar
 
Industry Role:
Join Date: Aug 2002
Location: A Public Bathroom
Posts: 38,510
i like poo
__________________


👁️ 👍️ 💩
CurrentlySober is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-03-2011, 01:12 PM   #3
B.Barnato
So Fucking Banned
 
Industry Role:
Join Date: Nov 2010
Posts: 3,618
hi and welcome back
B.Barnato is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-03-2011, 01:13 PM   #4
Dejan
Confirmed User
 
Industry Role:
Join Date: Apr 2006
Posts: 8,776
Didn't you leave GFY?

your class.Members.php file is fucked up, check out lines 5 and 7..
Dejan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-03-2011, 01:19 PM   #5
MyCamProfile
Confirmed User
 
MyCamProfile's Avatar
 
Industry Role:
Join Date: Jan 2011
Posts: 354
Quote:
Originally Posted by B.Barnato View Post
hi and welcome back
Thanks

Quote:
Originally Posted by Dejan View Post
Didn't you leave GFY?

your class.Members.php file is fucked up, check out lines 5 and 7..
Well I was banned for awhile. I don't know why it could be fucked up when I haven't touched anything. Here is that file. Tell me if you see anything unusual please.

<?
define("CURRENTTEMPLATES_FOLDER",MAIN_ADMINTEMPLAT ES_PATH);
define("MEMBER_TEMPLATES_FOLDER",MAIN_ADMINTEMPLAT ES_PATH."Members/");

include_once(MAIN_ADMINDATACLASS_PATH."Members/class.MembersData.php");
include_once(ADMINABSOLUTE_PATH."Config/inc.LeftMenu.php");
class Members extends MembersData {
function Members($MemberId=''){
global $global_config,$_SESSION,$LeftMenu;
$this->Common();
$this->MembersData();
$SideMenu = $LeftMenu["members"];
$this->setVariable("LeftMenu_Title","Members");
$this->setVariable("LeftMenu",$SideMenu);
}

function UpdateStatus($objArray){
global $_SESSION,$_COOKIE,$global_config;
if($objArray == "")
$objArray = $this->Request;
$Ids="";
if($objArray["Ids"]!=""){
foreach($objArray["Ids"] as $key=>$value){
if($Ids=="")
$Ids = "'".$value."'";
else
$Ids .= ",'".$value."'";
}
$this->UpdateMemberStatus($Ids,$objArray["Status"]);
}

}


function UpdateModelStatus($objArray){
global $_SESSION,$_COOKIE,$global_config;
if($objArray == "")
$objArray = $this->Request;
$Ids="";
if($objArray["Ids"]!=""){
foreach($objArray["Ids"] as $key=>$value){
if($Ids=="")
$Ids = "'".$value."'";
else
$Ids .= ",'".$value."'";
}
$this->UpdateModelActiveStatus($Ids,$objArray["Status"]);
}

}

function MembersListPage($objArray){
global $_SESSION,$_COOKIE,$global_config;
if($objArray == "")
$objArray = $this->Request;

if($objArray["fAction"] == "updatestatus"){
$this->UpdateStatus($objArray);
$this->setVariable("SuccessMessage","Profile status updated successfully.");
}
if($objArray["fAction"] == "updatemodelstatus"){
$this->UpdateModelStatus($objArray);
$this->setVariable("SuccessMessage","Profile status updated successfully.");
}
$intTotal = $this->getMembersData('COUNT','','',$objArray);
$intLimit = 20;
$intPage = ($objArray["p"] == "" || $objArray["p"] == "0")? 1 : $objArray["p"];
if($intPage == 1)
$intStart = 0;
else
$intStart = ($intPage-1) * $intLimit;
if($intStart > $intTotal)
{
$intStart = $intTotal-$intLimit -1;
$intPage = ceil($intTotal/$intLimit);
}
$intDisplayed=$intLimit+$intStart;
if($intDisplayed>$intTotal)
$intDisplayed=$intTotal;
if($intStart<0)
$intStart='0';

$rsMembers = $this->getMembersData("*",$intStart,$intLimit,$objArray) ;
$this->setPerPage($intTotal,$intLimit,count($rsMembers), $intPage);
$this->prePopulateForm();
$this->setVariable("Start",$intStart);
$this->setVariable("IntTotal",$intTotal);
$this->setVariable("IntStart",$intStart+1);
$this->setVariable("IntLimit",$intDisplayed);
$this->setVariable("MemberList",$rsMembers);
$this->setVariable("Include",MEMBER_TEMPLATES_FOLDER."Li st.tpl");
}


function doProcess($objArray) {
$this->loadJS("siteadmin/javascript/member.js");
$this->ProcessArray = $this->parseProcess($objArray["op"]);
if($this->ProcessArray[2]!= '')
$this->Process = $this->ProcessArray[2];
else if($this->ProcessArray[1]!= '')
$this->Process = $this->ProcessArray[1];
else
$this->Process = $this->ProcessArray["0"];
switch($this->Process) {
default:
$this->MembersListPage($objArray);
break;
}
}
}
?>
__________________
MyCamProfile is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-03-2011, 01:22 PM   #6
Tom_PM
Porn Meister
 
Industry Role:
Join Date: Feb 2005
Posts: 16,443
If nothing has been changed (meaning by you) then if it were ME, I'd be asking my host if they'd updated anything at all in the last couple of days. Maybe they did a security update and now your paths are eff'd up.
__________________
43-922-863 Shut up and play your guitar.
Tom_PM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-03-2011, 01:26 PM   #7
MyCamProfile
Confirmed User
 
MyCamProfile's Avatar
 
Industry Role:
Join Date: Jan 2011
Posts: 354
Ok well I just opened a ticket. Hopefully they can fix it.
__________________
MyCamProfile is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.