Jump to content
  • 0

Problema panel conectare


RespecT

Question

Nu se conecteaza panel-u am adaugat datele bine si

 

EN: Something went wrong. If you are the administrator, check error_log.
RO: Ceva nu a mers bine. Daca tu esti administratorul, verifica error_log.

imi da eroare in error_log cu 

SQLSTATE[HY000] [1045] Access denied for user 'andreir1_samp'@'5.154.240.83' (using password: YES)
SQLSTATE[HY000] [1045] Access denied for user 'andreir1_samp'@'5.154.240.83' (using password: YES)

ala nu e ip-u care este in config.. nu stiu deunde preaia ip-u ala..

Am cautat in toate folderele ip-u cu CTRL+F dar nimic.. conectarea e pusa bine uite:

<?php
class Config {
	private static $instance;
	public static $g_con;
	public static $_url = array();
	private static $_pages = array(
		'bid','donations','adminpanel','jobs','change','terms','privacy','contact','paysafecard','fcomplaints','ticketgeneral','ticketpay','tickets','checkmail','war','changemail','createcomplaint','mycomplaints','complaint','complaints','adminpanel','leader','clan','wars','staff','online','search','banlist','members','top','vehicles','houses','businesses','login','logs','profile','logout',
		'leader','admin','premium','forum','ticket','replyticket','seeticket','ban','unban','invite','leaderp','uninvite',
		'fup','fdown','rup','rdown','logleaderp','lock','del','unlock','unban','setunban','richlist','panelrestrict','deleterestrict',
		'accountsp','restrictp','lp','t','recover','mail','mysettings','factionslist','deconnect','maill','delete','wipemfactions','wipe!',
		'applications','viewapplication','apply','notifications','change_password','delnot','recover','resetare','sellhouse','helperpanel','iphone'
	);
	public static $_PAGE_URL = 'http://panel.bg-zone.tk/';
	public static $_IP = '93.114.82.211:7777';
	public static $_SITE_NAME = 'BG-ZONE PANEL';
	public static $factions = array();
	public static $logs = array();
	public static $vehColors = array();
	public static $facColors = array();
	public static $namevehicles	= array();
	public static $ccat	= array();
	public static $jobs	= array();

	private function __construct() {
		$db['mysql'] = array(
			'host' 		=>	'193.84.64.208',
			'username' 	=> 	'andreir1_samp',
			'dbname' 	=> 	'andreir1_samp',
			'password' 	=> 	'vg2TX4WNCdsfew1206'
		);

		try {
			self::$g_con = new PDO('mysql:host='.$db['mysql']['host'].';dbname='.$db['mysql']['dbname'].';charset=utf8',$db['mysql']['username'],$db['mysql']['password']);
			self::$g_con->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
			self::$g_con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
		} catch (PDOException $e) {
			@file_put_contents('error_log',@file_get_contents('error_log') . $e->getMessage() . "\n");
			die('EN: Something went wrong. If you are the administrator, check error_log.<br />RO: Ceva nu a mers bine. Daca tu esti administratorul, verifica error_log.');
		}
		self::_getUrl();
		self::arrays();
	}
	
	public static function formatName($id,$name = null,$faction = null) {
		if($name == null) {
			$data = User::getData($id,array('Member','Name'));
			$name = $data['Name'];
			$faction = $data['Member'];
		}
		$color = Arrays::$_factions[$faction]['color'];
		$name = '<a 
					href="'.Config::$_PAGE_URL.'profile/'.$id.'" 
					style="color:' . (!$faction ? '#919191' : $color ) . ';" 
					onmouseover="this.style.textDecoration = \'none\'; " 
					class="profile" 
					id="'.$id.'">' . $name . 
				'</a>';
		return $name;
	}
	
	public static function init()
	{
		if (is_null(self::$instance))
		{
			self::$instance = new self();
		}
		return self::$instance;
	}
	
	private static function _getUrl() {
		$url = isset($_GET['page']) ? $_GET['page'] : null;
        $url = rtrim($url, '/');
        $url = filter_var($url, FILTER_SANITIZE_URL);
        self::$_url = explode('/', $url);
	}
	
	public static function getContent() {
		if(isset(self::$_url[0]) && self::$_url[0] === 'signature') include_once 'inc/pages/signature.p.php'; 
		include_once 'inc/header.inc.php';

			if(self::$_url[0] === 'admin' && isset(self::$_url[1]) && file_exists('inc/pages/admin/' . self::$_url[1] . '.a.php')) 
				include 'inc/pages/admin/' . self::$_url[1] . '.a.php';
			elseif(self::$_url[0] === 'admin') 
				include 'inc/pages/admin/index.a.php';
			else
				if(in_array(self::$_url[0],self::$_pages)) 
					include 'inc/pages/' . self::$_url[0] . '.p.php';
				else 
					include_once 'inc/pages/index.p.php'; 

		include_once 'inc/footer.inc.php';	
	}
	
	public static function rows($table) {
		if(is_array($table)) {
			$rows = 0;
			foreach($table as $val) {
				$q = self::$g_con->prepare("SELECT * FROM `".$val."`");
				$q->execute();
				$rows += $q->rowCount();
			}
			return $rows;
		}
		$q = self::$g_con->prepare("SELECT * FROM `".$table."`");
		$q->execute();
		return $q->rowCount();
	}

	public static function _getPage() {
		return self::$_url[0];
	}

	public static function getPage() {
		return isset(self::$_url[2]) ? self::$_url[2] : 1;
	}

	public static function isActive($active) {
		if(is_array($active)) {
			foreach($active as $ac) {
				if($ac === self::$_url[0]) return ' class="active"';
			}
			return;
		} else return self::$_url[0] === $active ? ' class="active"' : false;
	}

	public static function message($label,$text,$custom = null) {
		if(isset($custom))
			return '<' . $custom . '><span class="label label-'.$label.'">'.$text.'</span></' . $custom . '>'; 
		else 
			return '<span class="label label-'.$label.'">'.$text.'</span>'; 
	}
	
	public static function getDate($timestamp,$time = false){
		if(!$timestamp) return 1;
		$difference = time() - $timestamp;
		if($difference < 0)
			return 'just now';
		$periods = array("second", "minute", "hour", "day", "week",
		"month", "year", "decade");
		$lengths = array("60","60","24","7","4.35","12","10");
		if ($difference > 0) {
			$ending = "ago";
		} else {
			$difference = -$difference;
			$ending = "to go";
		}
		if(!$difference) return 'just now';
		for($j = 0; $difference >= $lengths[$j]; $j++)
		$difference /= $lengths[$j];
		$difference = round($difference);
		if($difference != 1) $periods[$j].= "s";
		if($time) $text = "$difference $periods[$j]";
		else $text = "$difference $periods[$j] $ending";
		return $text;
	}
	private static function arrays() {
		self::$namevehicles = array(
			400 => "Landstalker", 401 => "Bravura", 402 => "Buffalo", 403 => "Linerunner", 404 => "Perrenial", 405 => "Sentinel", 406 => "Dumper", 407 => "Firetruck",
			408 => "Trashmaster", 409 => "Stretch", 410 => "Manana", 411 => "Infernus", 412 => "Voodoo", 413 => "Pony", 414 => "Mule", 415 => "Cheetah", 
			416 => "Ambulance", 417 => "Leviathan", 418 => "Moonbeam", 419 => "Esperanto", 420 => "Taxi", 421 => "Washington", 422 => "Bobcat", 423 => "Whoopee",
			424 => "BFInjection", 425 => "Hunter", 426 => "Premier", 427 => "Enforcer", 428 => "Securicar", 429 => "Banshee", 430 => "Predator", 431 => "Bus", 
			432 => "Rhino", 433 => "Barracks", 434 => "Hotknife", 435 => "Trailer", 436 => "Previon", 437 => "Coach", 438 => "Cabbie", 439 => "Stallion", 
			440 => "Rumpo", 441 => "RCBandit", 442 => "Romero", 443 => "Packer", 444 => "Monster", 445 => "Admiral", 446 => "Squalo", 447 => "Seasparrow",
			448 => "Pizzaboy", 449 => "Tram", 450 => "Trailer", 451 => "Turismo", 452 => "Speeder", 453 => "Reefer", 454 => "Tropic", 455 => "Flatbed", 456 => "Yankee",
			457 => "Caddy", 458 => "Solair", 459 => "Berkley\'sRCVan", 460 => "Skimmer", 461 => "PCJ-600", 462 => "Faggio", 463 => "Freeway", 464 => "RCBaron", 
			465 => "RCRaider", 466 => "Glendale", 467 => "Oceanic", 468 => "Sanchez", 469 => "Sparrow", 470 => "Patriot", 471 => "Quad", 472 => "Coastguard", 
			473 => "Dinghy", 474 => "Hermes", 475 => "Sabre", 476 => "Rustler", 477 => "ZR-350", 478 => "Walton", 479 => "Regina", 480 => "Comet", 481 => "BMX",
			482 => "Burrito", 483 => "Camper", 484 => "Marquis", 485 => "Baggage", 486 => "Dozer", 487 => "Maverick", 488 => "NewsChopper", 489 => "Rancher",
			490 => "FBIRancher", 491 => "Virgo", 492 => "Greenwood", 493 => "Jetmax", 494 => "Hotring", 495 => "Sandking", 496 => "BlistaCompact", 
			497 => "PoliceMaverick", 498 => "Boxville", 499 => "Benson", 500 => "Mesa", 501 => "RCGoblin", 502 => "HotringRacerA", 503 => "HotringRacerB", 
			504 => "BloodringBanger", 505 => "Rancher", 506 => "SuperGT", 507 => "Elegant", 508 => "Journey", 509 => "Bike", 510 => "MountainBike",	511 => "Beagle",
			512 => "Cropduster", 513 => "Stunt", 514 => "Tanker", 515 => "Roadtrain", 516 => "Nebula", 517 => "Majestic", 518 => "Buccaneer", 519 => "Shamal",
			520 => "Hydra", 521 => "FCR-900", 522 => "NRG-500", 523 => "HPV1000", 524 => "CementTruck", 525 => "TowTruck", 526 => "Fortune", 527 => "Cadrona", 
			528 => "FBITruck",529 => "Willard", 530 => "Forklift", 531 => "Tractor", 532 => "Combine", 533 => "Feltzer", 534 => "Remington", 535 => "Slamvan", 
			536 => "Blade", 537 => "Freight",538 => "Streak", 539 => "Vortex", 540 => "Vincent", 541 => "Bullet", 542 => "Clover", 543 => "Sadler", 544 => "Firetruck",
			545 => "Hustler", 546 => "Intruder", 547 => "Primo", 548 => "Cargobob", 549 => "Tampa", 550 => "Sunrise", 551 => "Merit", 552 => "Utility", 553 => "Nevada",
			554 => "Yosemite", 555 => "Windsor", 556 => "Monster", 557 => "Monster", 558 => "Uranus", 559 => "Jester", 560 => "Sultan", 561 => "Stratium", 
			562 => "Elegy", 563 => "Raindance", 564 => "RCTiger", 565 => "Flash", 566 => "Tahoma", 567 => "Savanna", 568 => "Bandito", 569 => "FreightFlat", 
			570 => "StreakCarriage", 571 => "Kart", 572 => "Mower", 573 => "Dune", 574 => "Sweeper", 575 => "Broadway", 576 => "Tornado", 577 => "AT-400", 
			578 => "DFT-30", 579 => "Huntley", 580 => "Stafford", 581 => "BF-400", 582 => "NewsVan", 583 => "Tug", 584 => "Trailer", 585 => "Emperor", 586 => "Wayfarer",
			587 => "Euros", 588 => "Hotdog", 589 => "Club", 590 => "FreightBox", 591 => "Trailer", 592 => "Andromada", 593 => "Dodo", 594 => "RCCam", 595 => "Launch", 
			596 => "PoliceCar", 597 => "PoliceCar", 598 => "PoliceCar", 599 => "PoliceRanger", 600 => "Picador", 601 => "S.W.A.T", 602 => "Alpha", 603 => "Phoenix",
			604 => "Glendale", 605 => "Sadler", 606 => "Luggage", 607 => "Luggage", 608 => "Stairs", 609 => "Boxville", 610 => "Tiller", 611 => "UtilityTrailer"
		);
		self::$ccat = array(
			0 => '',
			1 => 'Sport Vehicles',
			2 => 'Saloons',
			3 => '#1E519D',
			4 => '#FF4800',
			5 => '#8F8C47',
			6 => '#FFFF00',
			7 => '#33CCFF',
			8 => '#AA3333',
			9 => '#C2A2DA',
			10 => '#F5DEB3',
			11 => '#40863C',
			12 => '#D900D9',
			13 => '#FD7E00',
			14 => '#B4BBCF',
			15 => '#6A4444',
			16 => '#45382A',
			17 => '#E1F0E6',
			18 => '#81A383'
		);
		self::$factions = array(
			0 => 'Civilian',
			1 => 'Los Santos Police Department',
			2 => 'Federal Bureau of Investigation',
			3 => 'National Guard',
			4 => 'Los Aztecas',
			5 => 'Grove Street',
			6 => 'Los Vagos',
			//7 => 'Gov',
			8 => 'Las Venturas Police Department',
			9 => 'News Reporters',
			10 => 'Ballas',
			11 => 'Hitman Agency',
			12 => 'School Instructors',
			13 => 'Taxi LS',
			14 => 'Paramedic Department LV',
			15 => 'The Rifa',
			16 => 'The Russian Mafia',
			17 => 'Taxi LV'
		);
		self::$jobs = array(
			0 => 'Unemployed',
			1 => 'Detective',
			2 => 'Car Jacker',
			4 => 'Drugs Dealer',
			5 => 'Pizza Boy',
			6 => 'Farmer',
			7 => 'Bus Driver',
			8 => 'Mechanic',
			9 => 'Arms Dealer',
			10 => 'Garbage',
			13 => 'Fisherman',
			14 => 'Trucker'
		);		
		self::$logs = array(
			'logpolitiaromana' => 'Politia Romana',
			'logserviciulroman' => 'S.R.I',
			'logarmataromana' => 'Armata Romana',
			'logsmurd' => 'S.M.U.R.D',
			'logprimar' => 'Guvern',
			'logtaxi' => 'Taxi',
			'loginstructor' => 'School Instructor',
			'loghitman' => 'Hitman Agency',
			'logremorcari' => 'T.C.C',
			'logsadoveanu' => 'Grove Street',
			'logcorsicanu' => 'Stracci',
			'logtobosaru' => 'Ballas',
			'logcamataru' => 'Corleone',
		);

		self::$vehColors = array(
			'grey', '#CEB8F6', '#2A77A1', '#840410', '#263739', '#86446E', '#D78E10', '#4C75B7', '#BDBEC6', '#5E7072',
			'#46597A', '#656A79', '#5D7E8D', '#58595A', '#D6DAD6', '#9CA1A3', '#335F3F', '#730E1A', '#7B0A2A', '#9F9D94',
			'#3B4E78', '#732E3E', '#691E3B', '#96918C', '#515459', '#3F3E45', '#A5A9A7', '#635C5A', '#3D4A68', '#979592',
			'#421F21', '#5F272B', '#8494AB', '#767B7C', '#646464', '#5A5752', '#252527', '#2D3A35', '#93A396', '#6D7A88',
			'#221918', '#6F675F', '#7C1C2A', '#5F0A15', '#193826', '#5D1B20', '#9D9872', '#7A7560', '#989586', '#ADB0B0',
			'#848988', '#304F45', '#4D6268', '#162248', '#272F4B', '#7D6256', '#9EA4AB', '#9C8D71', '#6D1822', '#4E6881',
			'#9C9C98', '#917347', '#661C26', '#949D9F', '#A4A7A5', '#8E8C46', '#341A1E', '#6A7A8C', '#AAAD8E', '#AB988F',
			'#851F2E', '#6F8297', '#585853', '#9AA790', '#601A23', '#20202C', '#A4A096', '#AA9D84', '#78222B', '#0E316D',
			'#722A3F', '#7B715E', '#741D28', '#1E2E32', '#4D322F', '#7C1B44', '#2E5B20', '#395A83', '#6D2837', '#A7A28F',
			'#AFB1B1', '#364155', '#6D6C6E', '#0F6A89', '#204B6B', '#2B3E57', '#9B9F9D', '#6C8495', '#4D8495', '#AE9B7F',
			'#406C8F', '#1F253B', '#AB9276', '#134573', '#96816C', '#64686A', '#105082', '#A19983', '#385694', '#525661',
			'#7F6956', '#8C929A', '#596E87', '#473532', '#44624F', '#730A27', '#223457', '#640D1B', '#A3ADC6', '#695853',
			'#9B8B80', '#620B1C', '#5B5D5E', '#624428', '#731827', '#1B376D', '#EC6AAE', '#000000',
			'#177517', '#210606', '#125478', '#452A0D', '#571E1E', '#010701', '#25225A', '#2C89AA', '#8A4DBD', '#35963A',
			'#B7B7B7', '#464C8D', '#84888C', '#817867', '#817A26', '#6A506F', '#583E6F', '#8CB972', '#824F78', '#6D276A',
			'#1E1D13', '#1E1306', '#1F2518', '#2C4531', '#1E4C99', '#2E5F43', '#1E9948', '#1E9999', '#999976', '#7C8499',
			'#992E1E', '#2C1E08', '#142407', '#993E4D', '#1E4C99', '#198181', '#1A292A', '#16616F', '#1B6687', '#6C3F99',
			'#481A0E', '#7A7399', '#746D99', '#53387E', '#222407', '#3E190C', '#46210E', '#991E1E', '#8D4C8D', '#805B80',
			'#7B3E7E', '#3C1737', '#733517', '#781818', '#83341A', '#8E2F1C', '#7E3E53', '#7C6D7C', '#020C02', '#072407',
			'#163012', '#16301B', '#642B4F', '#368452', '#999590', '#818D96', '#99991E', '#7F994C', '#839292', '#788222',
			'#2B3C99', '#3A3A0B', '#8A794E', '#0E1F49', '#15371C', '#15273A', '#375775', '#060820', '#071326', '#20394B',
			'#2C5089', '#15426C', '#103250', '#241663', '#692015', '#8C8D94', '#516013', '#090F02', '#8C573A', '#52888E',
			'#995C52', '#99581E', '#993A63', '#998F4E', '#99311E', '#0D1842', '#521E1E', '#42420D', '#4C991E', '#082A1D',
			'#96821D', '#197F19', '#3B141F', '#745217', '#893F8D', '#7E1A6C', '#0B370B', '#27450D', '#071F24', '#784573',
			'#8A653A', '#732617', '#319490', '#56941D', '#59163D', '#1B8A2F', '#38160B', '#041804', '#355D8E', '#2E3F5B',
			'#561A28', '#4E0E27', '#706C67', '#3B3E42', '#2E2D33', '#7B7E7D', '#4A4442', '#28344E'
		);
		
		self::$facColors = array(
			0 => '#E8E8E8',
			1 => '#2641FE',
			2 => '#2641FE',
			3 => '#1E519D',
			4 => '#FF4800',
			5 => '#8F8C47',
			6 => '#FFFF00',
			7 => '#33CCFF',
			8 => '#AA3333',
			9 => '#C2A2DA',
			10 => '#F5DEB3',
			11 => '#40863C',
			12 => '#D900D9',
			13 => '#FD7E00',
			14 => '#B4BBCF',
			15 => '#6A4444',
			16 => '#45382A',
			17 => '#E1F0E6',
			18 => '#81A383'
		);

	}

	public static function getData($table,$data,$id) {
		$q = Config::$g_con->prepare('SELECT `'.$data.'` FROM `'.$table.'` WHERE `id` = ?');
		$q->execute(array($id));
		$r_data = $q->fetch();
		return $r_data[$data];
	}
	public static function getID($table, $data, $name) {
		$q = Config::$g_con->prepare('SELECT `'.$data.'` FROM `'.$table.'` WHERE `name` = ?');
		$q->execute(array($name));
		$r_data = $q->fetch();
		return $r_data[$data];
	}

}
?>

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

SQLSTATE[HY000] [1045] Access denied for user 'andreir1_samp'@'5.154.240.83' (using password: YES)
SQLSTATE[HY000] [1045] Access denied for user 'andreir1_samp'@'5.154.240.83' (using password: YES)

 

Eroarea asta îţi apare atunci când greşeşti parola.

Link to comment
Share on other sites

  • 0

Il ai pus pe host sau la tine in pc?

Caut un om serios cu gamemode acceptabil, cu capabilitatea de a tine un host, serviciile oferite de mine sunt de scripter (experienta de 5 ani in C/C++ limbajul folosit de SA:MP). Nu am pretentii la bani, doar un server si un parteneriat frumos. Pentru mai multe detalii accept pm-uri.

 

Universitatea de Vest din Timisoara,

Facultatea de Matematica si Informatica

Informatica aplicata, Anul I

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.