Seite 1 von 2
Unzufrieden mit der Signatur!!
Verfasst: 13.10.2006 23:53
von Zeri
Hi!
Es ist ja so, das man erst die neue Signatur sieht nachdem man was gepostet hat.
Ich finde das richtig doof und wollte fragen ob es einen Mod dafür gibt?
Also nehmen wir an ich hab Bild 1 und poste damit was, dann steht in diesem Post unten das Bild 1.
Wenn ich aber im Profil nun Bild 2 mache, werden alle Posts mit Bild 1 nicht auf Bild 2 aktualisiert.
Bitte um Hilfe!
Verfasst: 14.10.2006 07:15
von Luckyze
moin moin
würde es dir was ausmachen, dich etwas präzieser auszudrücken?
greetz Luckyze
Verfasst: 14.10.2006 09:18
von SoLo1905
Luckyze hat geschrieben:...würde es dir was ausmachen, dich etwas präzieser auszudrücken?...
Er meint, dass wenn man z.B: jetzt in der Sigi "abc" stehen hat und einen Beitrag postet, ist es ja so, dass bei Beitrag 1 seine Sigi "abc" sichtbar ist. Wenn er dannach mal "abc" in "def" umändert, werden bei den alten posts, wo in der Sigi "abc" steht nicht nach "def" aktuallisiert

Verfasst: 14.10.2006 14:10
von Zeri
Genau!
Und das find ich echt doof.
Gibts da nicht was?
Verfasst: 14.10.2006 14:18
von habbi
also bei mir ist das glaub automatisch??
Verfasst: 14.10.2006 14:20
von Tobi91
habbi hat geschrieben:also bei mir ist das glaub automatisch??
normal wird das direkt aktualisiert... schau mal nach deinen Browser-Einstellungen...
-Tobi91

Verfasst: 14.10.2006 14:27
von Luckyze
hi
also, ich habe es mal getestet. wenn die signi geändert wurde, wird diese nach erstellen eines post aktuallisiert.
ka, warum es bei euch nicht so ist.
greetz Luckyze
Verfasst: 14.10.2006 15:38
von Zeri
Hi!
Aber das kann doch nicht am Browser liegen,oder??
Also is das nur bei mir so?
Verfasst: 14.10.2006 16:54
von carpe:diem
hab mal das gefunden weiß aber nicht ob das damals auch ging und ob das ne hilfe zu deinem Problem ist:
Code: Alles auswählen
##############################################################
## MOD Title: Retroactive Signature
## MOD Version: 1.0.2
## Author: ErDrRon < ErDrRon@aol.com >
##
## Description: Allows users, when they edit their profile, to attach their signature to
## their previous posts when adding or changing their current signature.
## Currently, signature updates are applied only to future posts by
## default in phpBB.
##
## Installation Level: easy
## Installation Time: 10 minutes
## Files To Edit(3): /includes/usercp_register.php
## /language/lang_english/lang_main.php
## /templates/subSilver/profile_add_body.tpl
##
## Included Files(3): retro_sig_install_102.txt
## update_100_to_102.txt
## update_101_to_102.txt
##
##############################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## Authors Notes:
##
## The checkbox for "Attach my signature to my prior posts:" on the Edit Profile
## page will always be unchecked each time a user visits the 'Edit Profile' page.
## This way users that don't wish to retroactively attach their signatures
## to previous posts can leave them unsigned when they update their profile.
##
## N.B. Only use this file (retro_sig_install_102.txt) for a new install of the
## Retroactive Signature MOD. If a previous version of the
## Retroactive Signature MOD is already installed, please refer to the
## appropriate update_10x_to_102.txt for upgrade instructions.
##
## Plans for new features: Awaiting suggestions.
##
##############################################################
## Revision History:
##
## v1.0.2 9/13/2002
## - removed unnecessary code that interfered with selecting avatars from avatar gallery
##
## v1.0.1 9/12/2002
## - changed selection interface from Yes/No radio buttons to a checkbox
##
## v1.0.0 9/10/2002
## - initial release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]--------------------------------------------
#
/includes/usercp_register.php
#
#-----[ FIND ]--------------------------------------------
#
# (around line 135)
#
else
{
$attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : 0;
#
#-----[ AFTER, ADD ]--------------------------------------
#
$retrosig = ( isset($HTTP_POST_VARS['retrosig']) ) ? ( ($HTTP_POST_VARS['retrosig']) ? TRUE : 0 ) : 0;
#
#-----[ FIND ]--------------------------------------------
#
# (around line 441)
#
message_die(GENERAL_ERROR, 'Could not update users table', '', __LINE__, __FILE__, $sql);
}
#
#-----[ AFTER, ADD ]--------------------------------------
#
// Retroactive Signature MOD
if ( $retrosig )
{
$sql = "UPDATE " . POSTS_TABLE .
" SET enable_sig = 1" .
" WHERE poster_id = $user_id";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not update users table (Retro Sig)', '', __LINE__, __FILE__, $sql);
}
}
// End Retro Sig MOD
#
#-----[ FIND ]--------------------------------------------
#
# (around line 874)
#
'L_HIDE_USER' => $lang['Hide_user'],
'L_ALWAYS_ADD_SIGNATURE' => $lang['Always_add_sig'],
#
#-----[ AFTER, ADD ]--------------------------------------
#
// Retroactive Signature MOD
'L_RETRO_SIG' => $lang['Retro_sig'],
'L_RETRO_SIG_EXPLAIN' => $lang['Retro_sig_explain'],
'L_RETRO_SIG_CHECKBOX' => $lang['Retro_sig_checkbox'],
// End Retro Sig MOD
#
#-----[ OPEN ]--------------------------------------------
#
/language/lang_english/lang_main.php
#
#-----[ FIND ]--------------------------------------------
#
# (around line 1004)
#
//
// That's all Folks!
// -------------------------------------------------
#
#-----[ BEFORE, ADD ]-----------------------------------
#
// Retroactive Signature MOD
$lang['Retro_sig'] = 'Attach my signature to my prior posts';
$lang['Retro_sig_explain'] = 'If adding/editing your signature, phpBB normally applies this only to future posts';
$lang['Retro_sig_checkbox'] = 'Check here to attach your signature to your previous posts as well';
// End Retro Sig MOD
#
#-----[ OPEN ]--------------------------------------------
#
/templates/subSilver/profile_add_body.tpl
#
#-----[ FIND ]--------------------------------------------
#
# (around line 165)
#
<input type="radio" name="attachsig" value="0" {ALWAYS_ADD_SIGNATURE_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
#
#-----[ AFTER, ADD ]--------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_RETRO_SIG}:</span><br /><span class="gensmall">{L_RETRO_SIG_EXPLAIN}</span></td>
<td class="row2">
<input type="checkbox" name="retrosig" />
<span class="gensmall">{L_RETRO_SIG_CHECKBOX}</span></td>
</tr>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Verfasst: 14.10.2006 21:01
von Zeri
Kann mir das bitte bitte jemand machen?
Will nix falsch machen
