Verfasst: 14.02.2006 04:16
ALTER TABLE => Tabellenstruktur ändernCoolKetschup hat geschrieben:Was meinste damit??karstenkurt hat geschrieben:Versuch mal, den vor den Activity Mod Plus in der profile_view einzutragen.
Doch in der install steht:karstenkurt hat geschrieben:Was heisst die Tabellen angelegt? Da brauchten doch nur Felder hinzu bzw. Werte rein?Code: Alles auswählen
# #-----[ SQL ]------------------------------------------ # ALTER TABLE phpbb_users ADD user_absence TINYINT ( 1 ) DEFAULT '0' NOT NULL; ALTER TABLE phpbb_users ADD user_absence_mode MEDIUMINT ( 8 ) DEFAULT '0' NOT NULL; ALTER TABLE phpbb_users ADD user_absence_text TEXT NOT NULL; INSERT INTO phpbb_config (config_name, config_value) VALUES ('users_allow_absence', 0); INSERT INTO phpbb_config (config_name, config_value) VALUES ('mod_able_sent_absent', 0); INSERT INTO phpbb_config (config_name, config_value) VALUES ('absent_button', 1);
INSERT INTO => Datensatz einfügen
Vorher
Code: Alles auswählen
<!-- Start Activity Mod Plus -->
<!-- BEGIN profile_char -->
{profile_char.CHAR_PROFILE}
<!-- END profile_char -->
<!-- End Activity Mod Plus -->
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="center"><span class="gen"><br /><b>{L_ABSENCE}</b></span></td>
</tr>
<tr>
<td align="center"><span class="genmed"><br />{ABSENCE_MESSAGE}</span></td>
</tr>
</table>
<table width="95%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="right"><span class="nav"><br />{JUMPBOX}</span></td>
</tr>
</table>
Code: Alles auswählen
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="center"><span class="gen"><br /><b>{L_ABSENCE}</b></span></td>
</tr>
<tr>
<td align="center"><span class="genmed"><br />{ABSENCE_MESSAGE}</span></td>
</tr>
</table>
<!-- Start Activity Mod Plus -->
<!-- BEGIN profile_char -->
{profile_char.CHAR_PROFILE}
<!-- END profile_char -->
<!-- End Activity Mod Plus -->
<table width="95%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="right"><span class="nav"><br />{JUMPBOX}</span></td>
</tr>
</table>