Peršokti į turinį
  • ŽAIDIMAI
  • , ŽAIDIMAI
  • ŽAIDIMAI

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 109 dienas (-ų). Patariame sukurti naują temą, o ne rašyti naują pranešimą.

Už neaktyvių temų prikėlimą galite sulaukti įspėjimo ir pranešimo pašalinimo!

Recommended Posts

pasijungimo klaida su ip adresu 

<html><head><title>MySQL Plugin log</title><style>table {border: 1px solid black; border-collapse: collapse; line-height: 23px; table-layout: fixed; width: 863px;}th, td {border: 1px solid black; word-wrap: break-word;}thead {background-color: #C0C0C0;}		tbody {text-align: center;}		table.left1 {position: relative; left: 36px;}		table.left2 {position: relative; left: 72px;}		.time {width: 80px;}		.func {width: 200px;}		.stat {width: 75px;}		.msg {width: 400px;}	</style>	<script>		var 			LOG_ERROR = 1,			LOG_WARNING = 2,			LOG_DEBUG = 4;				var			FirstRun = true,			IsCallbackActive = false,			IsTableOpen = false,			IsThreadActive = false;				function StartCB(cbname) {			StartTable(1, 0, cbname);		}		function EndCB() {			EndTable();			IsCallbackActive = false;		}		function StartTable(iscallback, isthreaded, cbname) {			if(IsTableOpen == true || isthreaded != IsThreadActive)				EndTable();						if(iscallback == true) {				document.write(					"<table class=left2>" +						"<th bgcolor=#C0C0C0 >In callback \""+cbname+"\"</th>" +					"</table>"				);			}						document.write("<table");			if(iscallback == true || (isthreaded != IsThreadActive && isthreaded == false && IsCallbackActive == true) ) {				document.write(" class=left2");				IsCallbackActive = true;			}			else if(isthreaded == true) 				document.write(" class=left1");						IsThreadActive = isthreaded;			document.write(">");						if(FirstRun == true) {				FirstRun = false;				document.write("<thead><th class=time>Time</th><th class=func>Function</th><th class=stat>Status</th><th class=msg>Message</th></thead>");			}			document.write("<tbody>");			IsTableOpen = true;		}				function EndTable() {			document.write("</tbody></table>");			IsTableOpen = false;		}						function Log(time, func, status, msg, isthreaded) {			isthreaded = typeof isthreaded !== 'undefined' ? isthreaded : 0;			if(IsTableOpen == false || isthreaded != IsThreadActive)				StartTable(false, isthreaded, "");			var StatColor, StatText;			switch(status) {			case LOG_ERROR:				StatColor = "RED";				StatText = "ERROR";				break;			case LOG_WARNING:				StatColor = "#FF9900";				StatText = "WARNING";				break;			case LOG_DEBUG:				StatColor = "#00DD00";				StatText = "OK";				break;			}			document.write(				"<tr bgcolor="+StatColor+">" + 					"<td class=time>"+time+"</td>" + 					"<td class=func>"+func+"</td>" + 					"<td class=stat>"+StatText+"</td>" + 					"<td class=msg>"+msg+"</td>" + 				"</tr>"			);		}	</script></head><body bgcolor=grey>	<h2>Logging started at 12:58, 30.12.2024</h2><script>
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",0);
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",1);
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",1);
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",1);

o cia klaida kai pajungtas ant http://localhost/ 

<html><head><title>MySQL Plugin log</title><style>table {border: 1px solid black; border-collapse: collapse; line-height: 23px; table-layout: fixed; width: 863px;}th, td {border: 1px solid black; word-wrap: break-word;}thead {background-color: #C0C0C0;}		tbody {text-align: center;}		table.left1 {position: relative; left: 36px;}		table.left2 {position: relative; left: 72px;}		.time {width: 80px;}		.func {width: 200px;}		.stat {width: 75px;}		.msg {width: 400px;}	</style>	<script>		var 			LOG_ERROR = 1,			LOG_WARNING = 2,			LOG_DEBUG = 4;				var			FirstRun = true,			IsCallbackActive = false,			IsTableOpen = false,			IsThreadActive = false;				function StartCB(cbname) {			StartTable(1, 0, cbname);		}		function EndCB() {			EndTable();			IsCallbackActive = false;		}		function StartTable(iscallback, isthreaded, cbname) {			if(IsTableOpen == true || isthreaded != IsThreadActive)				EndTable();						if(iscallback == true) {				document.write(					"<table class=left2>" +						"<th bgcolor=#C0C0C0 >In callback \""+cbname+"\"</th>" +					"</table>"				);			}						document.write("<table");			if(iscallback == true || (isthreaded != IsThreadActive && isthreaded == false && IsCallbackActive == true) ) {				document.write(" class=left2");				IsCallbackActive = true;			}			else if(isthreaded == true) 				document.write(" class=left1");						IsThreadActive = isthreaded;			document.write(">");						if(FirstRun == true) {				FirstRun = false;				document.write("<thead><th class=time>Time</th><th class=func>Function</th><th class=stat>Status</th><th class=msg>Message</th></thead>");			}			document.write("<tbody>");			IsTableOpen = true;		}				function EndTable() {			document.write("</tbody></table>");			IsTableOpen = false;		}						function Log(time, func, status, msg, isthreaded) {			isthreaded = typeof isthreaded !== 'undefined' ? isthreaded : 0;			if(IsTableOpen == false || isthreaded != IsThreadActive)				StartTable(false, isthreaded, "");			var StatColor, StatText;			switch(status) {			case LOG_ERROR:				StatColor = "RED";				StatText = "ERROR";				break;			case LOG_WARNING:				StatColor = "#FF9900";				StatText = "WARNING";				break;			case LOG_DEBUG:				StatColor = "#00DD00";				StatText = "OK";				break;			}			document.write(				"<tr bgcolor="+StatColor+">" + 					"<td class=time>"+time+"</td>" + 					"<td class=func>"+func+"</td>" + 					"<td class=stat>"+StatText+"</td>" + 					"<td class=msg>"+msg+"</td>" + 				"</tr>"			);		}	</script></head><body bgcolor=grey>	<h2>Logging started at 13:08, 30.12.2024</h2><script>
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",0);
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",1);
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",1);
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",1);
</script>

 

prieš 5 valandas(-ų), Elektrinis parašė:

pasijungimo klaida su ip adresu 

<html><head><title>MySQL Plugin log</title><style>table {border: 1px solid black; border-collapse: collapse; line-height: 23px; table-layout: fixed; width: 863px;}th, td {border: 1px solid black; word-wrap: break-word;}thead {background-color: #C0C0C0;}		tbody {text-align: center;}		table.left1 {position: relative; left: 36px;}		table.left2 {position: relative; left: 72px;}		.time {width: 80px;}		.func {width: 200px;}		.stat {width: 75px;}		.msg {width: 400px;}	</style>	<script>		var 			LOG_ERROR = 1,			LOG_WARNING = 2,			LOG_DEBUG = 4;				var			FirstRun = true,			IsCallbackActive = false,			IsTableOpen = false,			IsThreadActive = false;				function StartCB(cbname) {			StartTable(1, 0, cbname);		}		function EndCB() {			EndTable();			IsCallbackActive = false;		}		function StartTable(iscallback, isthreaded, cbname) {			if(IsTableOpen == true || isthreaded != IsThreadActive)				EndTable();						if(iscallback == true) {				document.write(					"<table class=left2>" +						"<th bgcolor=#C0C0C0 >In callback \""+cbname+"\"</th>" +					"</table>"				);			}						document.write("<table");			if(iscallback == true || (isthreaded != IsThreadActive && isthreaded == false && IsCallbackActive == true) ) {				document.write(" class=left2");				IsCallbackActive = true;			}			else if(isthreaded == true) 				document.write(" class=left1");						IsThreadActive = isthreaded;			document.write(">");						if(FirstRun == true) {				FirstRun = false;				document.write("<thead><th class=time>Time</th><th class=func>Function</th><th class=stat>Status</th><th class=msg>Message</th></thead>");			}			document.write("<tbody>");			IsTableOpen = true;		}				function EndTable() {			document.write("</tbody></table>");			IsTableOpen = false;		}						function Log(time, func, status, msg, isthreaded) {			isthreaded = typeof isthreaded !== 'undefined' ? isthreaded : 0;			if(IsTableOpen == false || isthreaded != IsThreadActive)				StartTable(false, isthreaded, "");			var StatColor, StatText;			switch(status) {			case LOG_ERROR:				StatColor = "RED";				StatText = "ERROR";				break;			case LOG_WARNING:				StatColor = "#FF9900";				StatText = "WARNING";				break;			case LOG_DEBUG:				StatColor = "#00DD00";				StatText = "OK";				break;			}			document.write(				"<tr bgcolor="+StatColor+">" + 					"<td class=time>"+time+"</td>" + 					"<td class=func>"+func+"</td>" + 					"<td class=stat>"+StatText+"</td>" + 					"<td class=msg>"+msg+"</td>" + 				"</tr>"			);		}	</script></head><body bgcolor=grey>	<h2>Logging started at 12:58, 30.12.2024</h2><script>
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",0);
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",1);
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",1);
Log("12:58:07","CMySQLConnection::Connect",1,"(error #2003) Can't connect to MySQL server on '185.80.128.227' (111)",1);

o cia klaida kai pajungtas ant http://localhost/ 

<html><head><title>MySQL Plugin log</title><style>table {border: 1px solid black; border-collapse: collapse; line-height: 23px; table-layout: fixed; width: 863px;}th, td {border: 1px solid black; word-wrap: break-word;}thead {background-color: #C0C0C0;}		tbody {text-align: center;}		table.left1 {position: relative; left: 36px;}		table.left2 {position: relative; left: 72px;}		.time {width: 80px;}		.func {width: 200px;}		.stat {width: 75px;}		.msg {width: 400px;}	</style>	<script>		var 			LOG_ERROR = 1,			LOG_WARNING = 2,			LOG_DEBUG = 4;				var			FirstRun = true,			IsCallbackActive = false,			IsTableOpen = false,			IsThreadActive = false;				function StartCB(cbname) {			StartTable(1, 0, cbname);		}		function EndCB() {			EndTable();			IsCallbackActive = false;		}		function StartTable(iscallback, isthreaded, cbname) {			if(IsTableOpen == true || isthreaded != IsThreadActive)				EndTable();						if(iscallback == true) {				document.write(					"<table class=left2>" +						"<th bgcolor=#C0C0C0 >In callback \""+cbname+"\"</th>" +					"</table>"				);			}						document.write("<table");			if(iscallback == true || (isthreaded != IsThreadActive && isthreaded == false && IsCallbackActive == true) ) {				document.write(" class=left2");				IsCallbackActive = true;			}			else if(isthreaded == true) 				document.write(" class=left1");						IsThreadActive = isthreaded;			document.write(">");						if(FirstRun == true) {				FirstRun = false;				document.write("<thead><th class=time>Time</th><th class=func>Function</th><th class=stat>Status</th><th class=msg>Message</th></thead>");			}			document.write("<tbody>");			IsTableOpen = true;		}				function EndTable() {			document.write("</tbody></table>");			IsTableOpen = false;		}						function Log(time, func, status, msg, isthreaded) {			isthreaded = typeof isthreaded !== 'undefined' ? isthreaded : 0;			if(IsTableOpen == false || isthreaded != IsThreadActive)				StartTable(false, isthreaded, "");			var StatColor, StatText;			switch(status) {			case LOG_ERROR:				StatColor = "RED";				StatText = "ERROR";				break;			case LOG_WARNING:				StatColor = "#FF9900";				StatText = "WARNING";				break;			case LOG_DEBUG:				StatColor = "#00DD00";				StatText = "OK";				break;			}			document.write(				"<tr bgcolor="+StatColor+">" + 					"<td class=time>"+time+"</td>" + 					"<td class=func>"+func+"</td>" + 					"<td class=stat>"+StatText+"</td>" + 					"<td class=msg>"+msg+"</td>" + 				"</tr>"			);		}	</script></head><body bgcolor=grey>	<h2>Logging started at 13:08, 30.12.2024</h2><script>
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",0);
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",1);
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",1);
Log("13:08:57","CMySQLConnection::Connect",1,"(error #2002) Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)",1);
</script>

 

Kaip ir minėjo aukščiau reik log'u nes čia nieko nepasako daug.

Citata


----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team

[18:29:06] filterscripts = ""  (string)
[2024-12-30 18:29:06] 
[2024-12-30 18:29:06] Server Plugins
[2024-12-30 18:29:06] --------------
[2024-12-30 18:29:06]  Loading plugin: crashdetect.so
[2024-12-30 18:29:06]   CrashDetect v4.15.1 is OK.
[2024-12-30 18:29:06]   Loaded.
[2024-12-30 18:29:06]  Loading plugin: streamer.so
[2024-12-30 18:29:06] 

*** Streamer Plugin v2.6.1 by Incognito loaded ***

[2024-12-30 18:29:06]   Loaded.
[2024-12-30 18:29:06]  Loading plugin: sscanf.so
[2024-12-30 18:29:06] 

[2024-12-30 18:29:06]  ===============================

[2024-12-30 18:29:06]       sscanf plugin loaded.     

[2024-12-30 18:29:06]          Version:  2.8.1        

[2024-12-30 18:29:06]    (c) 2012 Alex "Y_Less" Cole  

[2024-12-30 18:29:06]  ===============================

[2024-12-30 18:29:06]   Loaded.
[2024-12-30 18:29:06]  Loading plugin: mysql_static.so
[2024-12-30 18:29:06]  >> plugin.mysql: R38 successfully loaded.
[2024-12-30 18:29:06]   Loaded.
[2024-12-30 18:29:06]  Loaded 4 plugins.

[2024-12-30 18:29:06] 
[2024-12-30 18:29:06] Filterscripts
[2024-12-30 18:29:06] ---------------
[2024-12-30 18:29:06]   Loaded 0 filterscripts.

[2024-12-30 18:29:06]  
[2024-12-30 18:29:06]  
[2024-12-30 18:29:06]  
[2024-12-30 18:29:06]  ======================================= 
[2024-12-30 18:29:06]  |                                     | 
[2024-12-30 18:29:06]  |        YSI version 3.09.0684        | 
[2024-12-30 18:29:06]  |        By Alex "Y_Less" Cole        | 
[2024-12-30 18:29:06]  |                                     | 
[2024-12-30 18:29:06]  ======================================= 
[2024-12-30 18:29:06]  
[2024-12-30 18:29:06]  
[2024-12-30 18:29:06]  
[2024-12-30 18:29:07] ________________________________________
|             TGP-LIFE.LT              |
|______________________________________|
|Gamemode pradėtas kurti: 2024.12.29  |
|Kūrėjas: kRego (Tony_Bass)           |
|Svetainė: TGP-LIFE.LT                 |
|______________________________________|
|                 @2014                |
|______________________________________|
________________________________________


[2024-12-30 18:29:07] Number of vehicle models: 35
 

 

prieš 3 minutes , louis parašė:

Tada kita išeitis - Vartotojo vardas arba slaptažodis. Pasitikrink ar gerai irašei, ir pasistenk naudoti ne root, o susikurk papildoma vartotoją.

Kiek supratau nei vienas variantas nepades nes sita modifikacija prašo pačio phpmyadmin ip kaip tokio 127.0.0.1 o toki reik pačiam instaliuoti i kiek per vpsnet.com bandžiau irasyti visada duoda vartotoja phpmyadmin ir paskui password koki buvau rašeis i putty krc daug darbo 

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 109 dienas (-ų). Patariame sukurti naują temą, o ne rašyti naują pranešimą.

Už neaktyvių temų prikėlimą galite sulaukti įspėjimo ir pranešimo pašalinimo!

Prisijungti prie diskusijos

Palikti atsakymą galite iš karto, o užsiregistruoti vėliau. Jeigu jau turite paskyrą mūsų forume, Prisijunkite.

Svečias
Atsakyti šioje temoje...

×   Įklijuotas tekstas turi teksto formatavimą.   Pašalinti teksto formatavimą

  Galimi tik 75 veidukai.

×   Nuoroda buvo automatiškai įterpta.   Įterpti nuorodą paprastai

×   Jūsų ankstesnis pranešimas buvo atkurtas.   Išvalyti redaktorių

×   Jūs negalite įkelti nuotraukas tiesiogiai.Įkelkite arba įdėkite nuotraukas iš URL.

  • Šiame puslapyje naršo:   0 nariai

    • Nėra registruotų narių peržiūrinčių šį forumą.

Skelbimai



×
×
  • Sukurti naują...