Post la link

Pentru întrebări legate de facilităţile forumului phpBB 2.0.x, acest loc este cel mai potrivit.
Avatar utilizator
Plutonium
Utilizator înregistrat
Mesaje: 321
Membru din: 06-Sep-2006, 22:54:11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Contact:

Post la link

Mesaj de Plutonium »

Deci la vbulletin este o chestie, care daca este postat un program de exemplu adica e linkul catre el, ca sa il poti vedea tre sa ai minim 1 post in thread-ul ala, as vrea sa pun asa ceva si pe phpbb2, se poate?!
Avatar utilizator
seelview
Fost coleg
Mesaje: 2146
Membru din: 13-Apr-2005, 21:24:50
Versiune: 3.x
Ext: Da
Server: UNIX/Linux
Nivel phpBB: Foarte experimentat
Localitate: Cu curu' pe scaun
Contact:

Mesaj de seelview »

Hide BBcode
E bun, il folosesc si eu.
"Don't have fear, I is here"
Seelview Photography / Blog this
Avatar utilizator
Plutonium
Utilizator înregistrat
Mesaje: 321
Membru din: 06-Sep-2006, 22:54:11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Contact:

Mesaj de Plutonium »

thx, seelview
Avatar utilizator
Plutonium
Utilizator înregistrat
Mesaje: 321
Membru din: 06-Sep-2006, 22:54:11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Contact:

Mesaj de Plutonium »

Deja intampinai o problema, cam ciudat mod-ul
Ajunsei la un pas al instalari unde zice asa:
*Before* this text

/**
* Does second-pass bbencoding. This should be used before displaying the message in
* a thread. Assumes the message is already first-pass encoded, and we are given the
* correct UID as used in first-pass encoding.
*/


Add this functions

function hide_in_quote($text)
{
$text = preg_replace("#\[hide\](.*?)\[\/hide\]#si","--- phpBB : The Protected Message is not copied in this quote ---", $text);
return $text;
}

function bbencode_third_pass($text, $uid, $deprotect)
{
global $bbcode_tpl;

// pad it with a space so we can distinguish between FALSE and matching the 1st char (index 0).
// This is important; bbencode_quote(), bbencode_list(), and bbencode_code() all depend on it.
$text = " " . $text;

// First: If there isn't a "[" and a "]" in the message, don't bother.
if (! (strpos($text, "[") && strpos($text, "]")) )
{
// Remove padding, return.
$text = substr($text, 1);
return $text;
}
// Patterns and replacements for URL and email tags..
$patterns = array();
$replacements = array();

if ( $deprotect ) {
$patterns[0] = "#\[hide:$uid\](.*?)\[/hide:$uid\]#si";
$replacements[0] = $bbcode_tpl['show'];
}
else
{
$patterns[0] = "#\[hide:$uid\](.*?)\[/hide:$uid\]#si";
$replacements[0] = $bbcode_tpl['hide'];
}

$text = preg_replace($patterns, $replacements, $text);

// Remove our padding from the string..
$text = substr($text, 1);

return $text;
}


Find in function "bbencode_first_pass"

// [img]image_url_here[/img] code..
$text = preg_replace("#\[img\](([a-z]+?)://([^ \"\n\r]+?))\[/img\]#si", "[img:$uid]\\1[/img:$uid]", $text);

Add Below

//[hide]message[/hide]
$text = preg_replace("#\[hide\](.*?)\[\/hide\]#si","[hide:$uid]\\1[/hide:$uid]", $text);
nu inteleg unde sa fac asta :|
sorelsorel
Utilizator înregistrat
Mesaje: 490
Membru din: 08-Iun-2006, 21:26:52
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Localitate: Hateg
Contact:

Mesaj de sorelsorel »

Cred ca in head (inainte de </head>)
Avatar utilizator
Plutonium
Utilizator înregistrat
Mesaje: 321
Membru din: 06-Sep-2006, 22:54:11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Contact:

Mesaj de Plutonium »

man eu zic in ce fisier?:|
sorelsorel
Utilizator înregistrat
Mesaje: 490
Membru din: 08-Iun-2006, 21:26:52
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Localitate: Hateg
Contact:

Mesaj de sorelsorel »

In Overeal_Header, cauti linia </head> si inainte de ea adaugi script-ul...
Avatar utilizator
Plutonium
Utilizator înregistrat
Mesaje: 321
Membru din: 06-Sep-2006, 22:54:11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Contact:

Mesaj de Plutonium »

imi da o eroare zice asa:
Parse error: syntax error, unexpected '<' in /home2/atomnorg/public_html/forum/includes/bbcode.php on line 21
linia 21 contine:
<BEGIN>







Later Edited:
si ala de il adaugai in overal_header.php inainte de </head> apare pe pagina sus asa:
function hide_in_quote($text) { $text = preg_replace("#\[hide\](.*?)\[\/hide\]#si","--- phpBB : The Protected Message is not copied in this quote ---", $text); return $text; } function bbencode_third_pass($text, $uid, $deprotect) { global $bbcode_tpl; // pad it with a space so we can distinguish between FALSE and matching the 1st char (index 0). // This is important; bbencode_quote(), bbencode_list(), and bbencode_code() all depend on it. $text = " " . $text; // First: If there isn't a "[" and a "]" in the message, don't bother. if (! (strpos($text, "[") && strpos($text, "]")) ) { // Remove padding, return. $text = substr($text, 1); return $text; } // Patterns and replacements for URL and email tags.. $patterns = array(); $replacements = array(); if ( $deprotect ) { $patterns[0] = "#\[hide:$uid\](.*?)\[/hide:$uid\]#si"; $replacements[0] = $bbcode_tpl['show']; } else { $patterns[0] = "#\[hide:$uid\](.*?)\[/hide:$uid\]#si"; $replacements[0] = $bbcode_tpl['hide']; } $text = preg_replace($patterns, $replacements, $text); // Remove our padding from the string.. $text = substr($text, 1); return $text; } Find in function "bbencode_first_pass" // [img]image_url_here[/img] code.. $text = preg_replace("#\[img\](([a-z]+?)://([^ \"\n\r]+?))\[/img\]#si", "[img:$uid]\\1[/img:$uid]", $text);
Avatar utilizator
seelview
Fost coleg
Mesaje: 2146
Membru din: 13-Apr-2005, 21:24:50
Versiune: 3.x
Ext: Da
Server: UNIX/Linux
Nivel phpBB: Foarte experimentat
Localitate: Cu curu' pe scaun
Contact:

Mesaj de seelview »

Plutonium scrie:Deja intampinai o problema, cam ciudat mod-ul...
in fisierul includes/bbcode.php trebuie sa faci editarea, daca nu ai inteles in ce fisier.
"Don't have fear, I is here"
Seelview Photography / Blog this
Avatar utilizator
Plutonium
Utilizator înregistrat
Mesaje: 321
Membru din: 06-Sep-2006, 22:54:11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Mediu
Contact:

Mesaj de Plutonium »

da dar acum este problema din bbcode.php
Închis

Înapoi la “2.0.x Cum pot să...?”

Cine este conectat

Utilizatori ce ce navighează pe acest forum: Niciun utilizator înregistrat și 5 vizitatori