eroare phpbb3!

Discutii despre tot ce nu se incadreaza in celelalte categorii.

Moderators: Moderatori ajutatori, Moderatori

Post Reply
Extreme
Fost moderator
Fost moderator
Posts: 742
Joined: 11 Jun 2011, 18:09
Detinator Steam: Nu
SteamID: L'am pierdut
Reputatie: Membru Club eXtreamCS: (3 luni)
Fost Moderator
Location: ITALIA
Has thanked: 55 times
Been thanked: 61 times

02 Feb 2014, 16:05

Am o eroare in phpbb3 in setari forum(acp) imi da eroarea asta:

Code: Select all

Parse error: syntax error, unexpected ''legend3'' (T_CONSTANT_ENCAPSED_STRING), expecting ')' in /home/warsro/public_html/forum/includes/acp/acp_board.php on line 69
linea este asta:

Code: Select all

'legend3'					=> 'ACP_SUBMIT_CHANGES',
RoyalServer
User avatar
zet_rzone
Membru, skill +1
Membru, skill +1
Posts: 142
Joined: 01 Feb 2014, 22:25
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Has thanked: 10 times
Been thanked: 11 times
Contact:

02 Feb 2014, 16:16

Salut, pune alt fisier..
http://suport-phpbb.com - Suport phpBB gratis
http://suport-phpbb.com/stiluri/demo - Baza de date a temelor phpBB
Extreme
Fost moderator
Fost moderator
Posts: 742
Joined: 11 Jun 2011, 18:09
Detinator Steam: Nu
SteamID: L'am pierdut
Reputatie: Membru Club eXtreamCS: (3 luni)
Fost Moderator
Location: ITALIA
Has thanked: 55 times
Been thanked: 61 times

02 Feb 2014, 16:17

Am pus altu si pagina dupaia este alba ....
User avatar
zet_rzone
Membru, skill +1
Membru, skill +1
Posts: 142
Joined: 01 Feb 2014, 22:25
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Has thanked: 10 times
Been thanked: 11 times
Contact:

02 Feb 2014, 22:46

Ce mod ai instalat?
http://suport-phpbb.com - Suport phpBB gratis
http://suport-phpbb.com/stiluri/demo - Baza de date a temelor phpBB
Extreme
Fost moderator
Fost moderator
Posts: 742
Joined: 11 Jun 2011, 18:09
Detinator Steam: Nu
SteamID: L'am pierdut
Reputatie: Membru Club eXtreamCS: (3 luni)
Fost Moderator
Location: ITALIA
Has thanked: 55 times
Been thanked: 61 times

02 Feb 2014, 22:47

modu de warn dar manual.Daca ma poti ajuta add adyantoniello te rog!!
User avatar
zet_rzone
Membru, skill +1
Membru, skill +1
Posts: 142
Joined: 01 Feb 2014, 22:25
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Has thanked: 10 times
Been thanked: 11 times
Contact:

02 Feb 2014, 22:50

Pai cel mai propabil nu ai instalat corect mod-ul.. Apropo.. ti-ai atins de modul care schimba legenda?
PS: posteaza aici install.xml de la acel mod "warn"
http://suport-phpbb.com - Suport phpBB gratis
http://suport-phpbb.com/stiluri/demo - Baza de date a temelor phpBB
Extreme
Fost moderator
Fost moderator
Posts: 742
Joined: 11 Jun 2011, 18:09
Detinator Steam: Nu
SteamID: L'am pierdut
Reputatie: Membru Club eXtreamCS: (3 luni)
Fost Moderator
Location: ITALIA
Has thanked: 55 times
Been thanked: 61 times

02 Feb 2014, 22:53

Open: includes/acp/acp_board.php



Find

Tip: This may be a partial find and not the whole line.


Code:Select all

Code: Select all

'warnings_expire_days'
Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.


Code:Select all

Code: Select all

						'warnings_ban'			=> array('lang'	=> 'WARNINGS_BAN',			'validate' => 'int',	'type' => 'text:3:4', 'explain'	=> true, 'append' => ' ' . $user->lang['WARNINGS']),
						'warnings_ban_expire'	=> array('lang'	=> 'WARNINGS_BAN_EXPIRE',	'validate' => 'int',	'type' => 'text:3:4', 'explain'	=> true, 'append' => ' ' . $user->lang['MINUTES']),
<< Hide


Open: includes/mcp/mcp_warn.php



Find

Tip: This may be a partial find and not the whole line.


Code:Select all

Code: Select all

add_log('mod', $row['forum_id'], $row['topic_id'], 'LOG_USER_WARNING', $user_row['username']);
Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.


Code:Select all

Code: Select all

	$user_row['user_warnings']++;
	
	if ($user_row['user_warnings'] >= $config['warnings_ban'])
	{
		//User has reached maximum number of warnings, and will be banned.
		if(!function_exists('user_ban'))
		{
			include("{$phpbb_root_path}includes/functions_user.$phpEx");
		}

		user_ban('user', array($user_row['username']), $config['warnings_ban_expire'], false, 0, $user->lang['AUTO_WARN_BAN']);
	}
<< Hide


Open: language/en/mcp.php



Find

Tip: This may be a partial find and not the whole line.


Code:Select all

Code: Select all

'APPROVE_POSTS_CONFIRM'	=> '
Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.


Code:Select all

Code: Select all

'AUTO_WARN_BAN'	=> 'User has reached maximum warnings, and has been automaticly banned.',
<< Hide


Open: language/en/acp/board.php



Find

Tip: This may be a partial find and not the whole line.


Code:Select all

Code: Select all

'WARNINGS_EXPIRE_EXPLAIN'		=> '
Add before

Tip: Add these lines on a new blank line before the preceding line(s) to find.


Code:Select all

Code: Select all

	'WARNINGS_BAN'					=> 'Numbers of warnings before users will be banned',
	'WARNINGS_BAN_EXPLAIN'			=> 'Numbers of warnings before users will be automatically banned.',
	'WARNINGS_BAN_EXPIRE'			=> 'Expire time for automatic bans',
	'WARNINGS_BAN_EXPIRE_EXPLAIN'	=> 'The time (In minutes) that the automatic ban by x warnings expires.',
User avatar
zet_rzone
Membru, skill +1
Membru, skill +1
Posts: 142
Joined: 01 Feb 2014, 22:25
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Has thanked: 10 times
Been thanked: 11 times
Contact:

02 Feb 2014, 22:57

Schimba toate fisierele modificate. Si la sfarsit un cod de instalare nu exista? de exemplu http://forumultau.com/forum/mode=install.php asa ceva nu exista?

Si la intrebarea de mai sus.. ti-ai legat de acel mod? care schimba grupurile in legenda?
http://suport-phpbb.com - Suport phpBB gratis
http://suport-phpbb.com/stiluri/demo - Baza de date a temelor phpBB
Extreme
Fost moderator
Fost moderator
Posts: 742
Joined: 11 Jun 2011, 18:09
Detinator Steam: Nu
SteamID: L'am pierdut
Reputatie: Membru Club eXtreamCS: (3 luni)
Fost Moderator
Location: ITALIA
Has thanked: 55 times
Been thanked: 61 times

02 Feb 2014, 23:04

Am facut cum ai zis si nu, nu exista un url cu instal.php cum zici tu

Si nu m am legat de grupuri .

edit: am rezolvat puteti da tc.
Post Reply

Return to “Discutii generale”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 352 guests