eigenartige WYSIWYG-Editor Probleme

Hier können Probleme und alles andere in Deutscher Sprache gelöst werden.
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

eigenartige WYSIWYG-Editor Probleme

Post by ritman »

Hallo liebe S9Y Gemeinde.

Ich benutze für meinen Gemeinschaftsblog ( http://www.gedankenblase.de ) mittlerweile seit fast einem Jahr Serendipity hab mit der Version 0.85 angefangen und hab mittlerweile eine 1.1 Beta auf den Server hochgeladen.

Nun wollte ich meine WYSIWYG Editor zum laufen bekommen aber es funktioniert nicht. Ich hab alle möglichen Editoren probiert, egal ob FCKeditor Xinha oder TinyMCE (oder so ähnlich) keiner funktioniert, wenn ich normale Blog einträge schreiben möchte. Aber sie funktionieren, z.B. wenn ich einen Html Klotz bearbeite. Wie kann das sein? In den eigenen Einstellungen hab ich auch alles auf WYSIWYG umgestellt. Kann mir jemand dieses Problem erklären? Hätte schon gerne die möglich für meine Mitschreiber, ihren Text einfach zu konvertieren. Da nach dem 1.0. Update auch die normalen Buttons für FETT KURSIV WWW usw. nicht mehr funktionieren.

Im übrigen bekomm bei der Entry-Schreib-Seite folgende Fehlermeldung:

Notice: xml_rpc_client: Connection to RPC server :80 failed. Success in /www/htdocs/gedanke/blogz/bundled-libs/PEAR.php on line 848
xml_rpc_client: Connection to RPC server :80 failed. Success (Problem besteht seit der 1.0 Version)

Würde mich über eure Hilfe freuen und bedank mich schonmal.

Hab alles mögliche getestet und hab das gefühl das es im grunde vielleicht nur eine einfache Einstellungssache ist.

Bye

Martin
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: eigenartige WYSIWYG-Editor Probleme

Post by garvinhicking »

Hi!

Du hast also in deinen persönlichen Einstellungen "WYSIWYG" aktiviert?

Wenn Du den Firefox benutzt, kannst Du sehen ob Du JavaScript-Fehler bekommst? Ansonsten mal in den HTML-Quelltext der admin-seite schauen und gucken wo per <script src> der WYSISYG editor aufgerufen wird; diese URL dann im Browser manuell aufrufen und schauen ob dort fehler kommen.
Notice: xml_rpc_client: Connection to RPC server :80 failed. Success in /www/htdocs/gedanke/blogz/bundled-libs/PEAR.php on line 848
xml_rpc_client: Connection to RPC server :80 failed. Success (Problem besteht seit der 1.0 Version)
Welche Services pingst Du denn alle? Es kann sein dass einer der Server einfach down ist, ganz unabhängig von der s9y version...

Viele Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

http://ping.blogstart.de
http://www.moreover.com/ping
http://blogmatcher.com/u.php
http://www.bitacoles.net/ping.php
http://ping.feedburner.com
http://ping.wordblog.de
http://coreblog.org/ping
http://ping.amagle.com
http://xmlrpc.blogg.de
http://blogoole.com/ping/
http://www.mod-pubsub.org/kn_apps/blogchatter/ping.php

Ping ich an..

HTML Code sagt folgendes:
<script type="text/javascript" language="JavaScript">

function toggle_extended(setCookie) {
var textarea = document.getElementById('serendipity[extended]');
var button = document.getElementById('option_extended');
var tools = document.getElementById('tools_extended');
if ( textarea.style.display == 'none' ) {
textarea.style.display = '';
tools.style.display = '';
button.src = '/blogz/templates/default/img/minus.png';
if (setCookie == true) {
document.cookie = 'serendipity[toggle_extended]=true;';
}
} else {
textarea.style.display = 'none';
tools.style.display = 'none';
button.src = '/blogz/templates/default/img/plus.png';
if (setCookie == true) {
document.cookie = 'serendipity[toggle_extended]=;';
}
}
}

var selector_toggle = new Array();
var selector_store = new Array();
var selector_restore = new Array();

function showItem(id) {
var selected = 0;
if (typeof(id) == 'undefined' || typeof(id) == 'object') {
id = 'categoryselector';
}

if (document.getElementById) {
el = document.getElementById(id);
if (selector_toggle[id] && selector_toggle[id] == 'off') {
selector_restore[id] = new Array();
selector_toggle[id] = 'on';

/* Hack to make sure that when the single dropdown is shown, don't have multiple selections */
last = 0;

for (i=0; i < el.options.length; i++) {
if (el.options.selected == true) {
selected++;
last = i;
selector_restore[id][last] = 'on';
}

if (selected > 1) {
/* If there is more than one selected, we reset all those to false
This is because otherwise the label will say 'No Category', but the categories will still be selected */
for (j=0; j < el.options.length; j++) {
/* Save selection in array to later restore them */
if (el.options[j].selected == true) {
el.options[j].selected = false;
selector_restore[id][j] = 'on';
last = j;
} else {
selector_restore[id][j] = false;
}
}
break;
}
}

el.selectedIndex = null;
if (last > 0) {
el.selectedIndex = last;
}

el.size = 1;

/* Show a normal dropdown */
if (el.multiple) {
el.multiple = false;
}

document.getElementById('option_' + id).src = '/blogz/templates/default/img/plus.png';
} else {
selector_store[id] = el.size;
if (selector_store[id] == 0) {
selector_store[id] = 5;
}

last = 0;
if (el.selectedIndex > 0) {
if (!selector_restore[id]) {
selector_restore[id] = new Array();
}

for (j=0; j < el.options.length; j++) {
/* Save selection in array to later restore them */
if (el.options[j].selected == true) {
selector_restore[id][j] = 'on';
last = j;
}
}
}
el.selectedIndex = -1;
el.size = 4;
selector_toggle[id] = 'off';

/* Show multiple items */
el.multiple = true;

/* Restore previously selected items? */
last = 0;
for (i = 0; i < el.options.length; i++) {
if (selector_restore && selector_restore[id] && selector_restore[id] && selector_restore[id] == 'on') {
val = el.options.value;
if (el.options.selected != true) {
el.options.selected = true;
last = i;
// [TODO] IE Bug: Don't ask me why, but this restoring only works in Internet Explorer if you put this:
// alert('it doesnt matter what, just the alert is important');
}
}
}

document.getElementById('option_' + id).src = '/blogz/templates/default/img/minus.png';
}
}
}

function checkSave() {
return true;
}

selector_toggle['categoryselector'] = 'off';
addLoadEvent(showItem);
</script>
</td>
</tr


Was ich jedoch nicht verstehe, er zeigt nirgends eine Fehlermeldung an, egal ob unter Opera 8.5 oder 9.0 oder Firefox.. Auf jeweils Mac oder Win PC getestet.. Keine Fehlermeldung, es kommt einfach ein nur folgender Bildschirm: Image

:( oh man, ich kapier das einfach nicht..
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

leider ist in dem Codeausschnitt den du gepostet hast nicht das <script src> Element das ich meinte, welches erscheinen müsste wen WYSIWYG geladen wird. Da müsste dann was mit "htmlarea" oder "fckedit" oder so stehen. Dein Screenshot zeigt, dass WYSIWYG eigentlich aktiviert sein müsste weil die Buttons über dem Eintragseditor fehlen - und die fehlen nur im WYSIWYG-Modus, weil dies dann der WYSIWYG-Editor ausgeben müsste.

Was di eliste der RPC-Pings angeht: Die meisten davon kenne ich nicht, hast du mal einzeln probiert diese jeweils zu pingen um zu sehen, welcher von denen das problem verursachen könnte`?

Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

Hi,
<tr>
<td colspan="2"><b>Eintrag</b></td>
<td>
</td>
</tr>

<tr>
<td colspan="3">
<textarea style="width: 100%" name="serendipity[body]" id="serendipity[body]" cols="80" rows="20"></textarea>

</td>
</tr>

<tr>
<td colspan="3">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td align="left" width="70%">
<input id="checkbox_allow_comments" type="checkbox" name="serendipity[allow_comments]" value="true" checked="checked" /><label for="checkbox_allow_comments">Kommentare für diesen Eintrag zulassen</label><br />

<input id="checkbox_moderate_comments" type="checkbox" name="serendipity[moderate_comments]" value="true" /><label for="checkbox_moderate_comments">Kommentare und Trackbacks dieses Eintrags werden moderiert</label>
</td>
<td align="right" rowspan="2" valign="middle" width="30%">
<input accesskey="p" type="submit" value="- Vorschau -" class="serendipityPrettyButton" style="width: 150px" onclick="document.forms['serendipityEntry'].elements['serendipity[preview]'].value='true';" /><br />
<input accesskey="s" type="submit" onclick="return checkSave();" value="- Speichern -" class="serendipityPrettyButton" style="width: 150px" />
</td>
</tr>
</table>

<br />
</td>
</tr>

<tr>
<td colspan="2">
<b>Erweiterter Eintrag</b></td>
<td align="right">
</td>

</tr>

<tr>
<td colspan="3">
<textarea style="width: 100%;" name="serendipity[extended]" id="serendipity[extended]" cols="80" rows="20"></textarea>
</td>
</tr>

<tr>
<td colspan="3">

<br />
es gibt eben keine verlinkung daheraus.. das komische ist nochetwas,
in meinen plugin verzeichnis, ist aufeinmal kein wysiwyg plugin mehr installiert? probier ich es zu installieren.. kommt nur noch
Versuche URL serendipity_event_xinha.php?rev=1.9999 zu öffnen...
Die URL http://php-blog.cvs.sourceforge.net/*ch ... rev=1.9999 konnte nicht geöffnet werden. Möglicherweise existieren Server- oder Netzwerkprobleme.
12849 bytes von bereits bestehender Datei geladen. Speichere Inhalt als /www/htdocs/gedanke//blogz//plugins/serendipity_event_xinha/serendipity_event_xinha.php...
Versuche URL lang_en.inc.php?rev=1.9999 zu öffnen...
Die URL http://php-blog.cvs.sourceforge.net/*ch ... rev=1.9999 konnte nicht geöffnet werden. Möglicherweise existieren Server- oder Netzwerkprobleme.
Es folgt eine Liste installierter Plugins
warum häufen sich z.z. so die fehler wo alles ein 3/4 jahr fast glatt lief..

check mal deine pm's ;)
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Auch dieser Codeschnippsel hat leider nichts damit zu tun. :)


Die Fehlermeldung von Spartacus sagt dir, dass die Daten momentan nicht geladen werden können. Evtl. wurde eine Firewall auf dienem server installiet so dass spartacus nicht mehr funktionoiert? Setz Spartacus mal auf netmirror.org.

PM habe ich bekommen, kann ich aber zur Zeit nicht helfen, vielleicht nach meinem Urlaub wenn das Problem dann noch besteht.

Viele Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

moin lieber garvin,

das problem mit spartacus ist behoben aber das problem mit dem WYSIWYG editor.. ich hab nun öfters mir den quellcode der seite anguckt.. und nichts funktioniert.. ich poste hier jetztnochmal die komplette eintrag-schreib seite.. vielleicht bin ich ja nur blind..

Code: Select all

<html>
    <head>
        <title>Serendipity Verwaltungsoberfläche</title>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
        <link rel="stylesheet" type="text/css" href="http://gedankenblase.de/blogz/serendipity_admin.css" />
        <script type="text/javascript">
        function spawn() {
            if (self.Spawnextended) {
                Spawnextended();
            }

            if (self.Spawnbody) {
                Spawnbody();
            }

            if (self.Spawnnugget) {
                Spawnnugget();
            }
        }

        function SetCookie(name, value) {
            var today  = new Date();
            var expire = new Date();
            expire.setTime(today.getTime() + (60*60*24*30));
            document.cookie = 'serendipity[' + name + ']='+escape(value) + ';expires=' + expire.toGMTString();
        }

        function addLoadEvent(func) {
          var oldonload = window.onload;
          if (typeof window.onload != 'function') {
            window.onload = func;
          } else {
            window.onload = function() {
              oldonload();
              func();
            }
          }
        }

        </script>
    </head>
    <body id="serendipity_admin_page" onload="spawn()">

        <table cellspacing="0" cellpadding="0" border="0" id="serendipityAdminFrame">
            <tr>
                <td colspan="2" id="serendipityAdminBanner">
                                    <h1>Serendipity Verwaltungsoberfläche</h1>
                    <h2>Leipzig's Gedankenblase</h2>
                                </td>
            </tr>
            <tr>

                <td colspan="2" id="serendipityAdminInfopane">
                                            Angemeldet als ritman (Administrator)                                    </td>
            </tr>
            <tr valign="top">
                <td id="serendipitySideBar">
                    <ul class="serendipitySideBarMenu">
                        <li><a href="serendipity_admin.php">Startseite</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=personal">Eigene Einstellungen</a></li>

                    </ul>
                    <br />
                    <ul class="serendipitySideBarMenu">
                        <li class="serendipitySideBarMenuHead">Einträge</li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=entries&serendipity[adminAction]=new">Neuer Eintrag</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=entries&serendipity[adminAction]=editSelect">Einträge bearbeiten</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=comments">Kommentare</a></li>

                        <li><a href="serendipity_admin.php?serendipity[adminModule]=category&serendipity[adminAction]=view">Kategorien</a></li>
                                                <li>
                            <a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=managetags">
                                Tags verwalten                            </a>
                        </li>
                    <li><a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=mycalendar">Mein Kalender</a></li>
<li><a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=staticpages">Statische Seiten</a></li><li><a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=poll">Umfragen</a></li>                        <li><a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=statistics">Statistiken</a></li>

                    <li><a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=backup">Backup Interface</a></li>
					                    </ul>
                    <ul class="serendipitySideBarMenu">
                        <li class="serendipitySideBarMenuHead">Mediendatenbank</li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=addSelect">Mediendaten hinzufügen</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=media">Mediendatenbank</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=directorySelect">Verzeichnisse verwalten</a></li>

                        <li><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=sync" onclick="return confirm('ACHTUNG:\nDas kann jetzt lange dauern, wenn für viele Bilder noch keine Vorschau existiert.');">Vorschauen erneuern</a></li>
                                            </ul>
                    <ul class="serendipitySideBarMenu">
                        <li class="serendipitySideBarMenuHead">Aussehen</li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=templates">Styles verwalten</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=plugins">Plugins verwalten</a></li>
                                            </ul>

                    <ul class="serendipitySideBarMenu">
                        <li class="serendipitySideBarMenuHead">Administration</li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=configuration">Konfiguration</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=users">Benutzerverwaltung</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=groups">Gruppenverwaltung</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=import">Daten importieren</a></li>

                        <li><a href="serendipity_admin.php?serendipity[adminModule]=export">Einträge exportieren</a></li>
                        <li><a href="?serendipity[adminModule]=event_display&serendipity[adminAction]=profiles">Benutzerprofile</a></li>                    </ul>
                    <br />
                    <ul class="serendipitySideBarMenu">
                        <li><a href="http://gedankenblase.de/blogz/">Zurück zum Blog</a></li>
                        <li><a href="serendipity_admin.php?serendipity[adminModule]=logout">Abmelden</a></li>

                    </ul>

                </td>
                <td class="serendipityAdminContent">
        <form  action="?" method="post" name="serendipityEntry" style="margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px">
                <input type="hidden" name="serendipity[action]" value="admin" />
        <input type="hidden" name="serendipity[adminModule]" value="entries" />
        <input type="hidden" name="serendipity[adminAction]" value="save" />
        <input type="hidden" id="entryid" name="serendipity[id]" value="" />

        <input type="hidden" name="serendipity[timestamp]" value="1158917570" />
        <input type="hidden" name="serendipity[preview]" value="false" />        <input type="hidden" name="serendipity[token]" value="b69999480a5894d4ef53fc159fe1b97f" />
        <table class="serendipityEntryEdit" border="0" width="100%">
            <tr>
                <td>
                   <b>Titel:</b>
                </td>
                <td colspan="2">

                    <table width="100%" cellspacing="0" cellpadding="0" border="0">
                        <tr>
                            <td><input type="text" id="entryTitle" name="serendipity[title]" value="" size="60" /></td>
                            <td align="right">
                                <select name="serendipity[isdraft]">
                                    <option  value="false"  selected="selected">Veröffentlichung</option>                                    <option  value="true"  >Entwurf</option>
                                </select>

                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td>
                    <b>Datum:</b>

                </td>
                <td>
                    <input type="hidden" name="serendipity[chk_timestamp]" value="1158917570" />
                    <input type="text" name="serendipity[new_timestamp]" id="serendipityNewTimestamp" value="2006-09-22 11:32" />
                    <a href="#" onclick="document.getElementById('serendipityNewTimestamp').value = '2006-09-22 11:32'; return false;" title="Hier klicken um das Datum auf die aktuelle Systemzeit zu setzen"><img src="/blogz/templates/default/admin/img/clock.png" border="0"  style="vertical-align: text-top;" alt="Datum zurücksetzen" /></a>
                </td>
                <td align="right">
                    <a style="border:0; text-decoration: none" href="#" onclick="showItem('categoryselector'); return false" title="Option ein-/ausblenden"><img src="/blogz/templates/default/img/plus.png" id="option_categoryselector" style="border: 20px" alt="" border="0" /></a> <b>Kategorie:</b> <select id="categoryselector" name="serendipity[categories][]" style="vertical-align: middle;" multiple="multiple">

    <option value="0">[Keine Kategorie]</option>
<option value="1">Alkoholgeschichten</option>
<option value="3">politik</option>
<option value="2">Weiber/Kerle</option>
</select>
                    <script type="text/javascript" language="JavaScript">

                    function toggle_extended(setCookie) {
                        var textarea = document.getElementById('serendipity[extended]');
                        var button   = document.getElementById('option_extended');
                        var tools    = document.getElementById('tools_extended');
                        if ( textarea.style.display == 'none' ) {
                            textarea.style.display = '';
                            tools.style.display = '';
                            button.src = '/blogz/templates/default/img/minus.png';
                            if (setCookie == true) {
                                document.cookie = 'serendipity[toggle_extended]=true;';
                            }
                        } else {
                            textarea.style.display = 'none';
                            tools.style.display = 'none';
                            button.src = '/blogz/templates/default/img/plus.png';
                            if (setCookie == true) {
                                document.cookie = 'serendipity[toggle_extended]=;';
                            }
                        }
                    }

                    var selector_toggle  = new Array();
                    var selector_store   = new Array();
                    var selector_restore = new Array();

                    function showItem(id) {
                        var selected = 0;
                        if (typeof(id) == 'undefined' || typeof(id) == 'object') {
                            id = 'categoryselector';
                        }

                        if (document.getElementById) {
                            el = document.getElementById(id);
                            if (selector_toggle[id] && selector_toggle[id] == 'off') {
                                selector_restore[id] = new Array();
                                selector_toggle[id]  = 'on';

                                /* Hack to make sure that when the single dropdown is shown, don't have multiple selections */
                                last = 0;

                                for (i=0; i < el.options.length; i++) {
                                    if (el.options[i].selected == true) {
                                        selected++;
                                        last = i;
                                        selector_restore[id][last] = 'on';
                                    }

                                    if (selected > 1) {
                                        /* If there is more than one selected, we reset all those to false
                                           This is because otherwise the label will say 'No Category', but the categories will still be selected */
                                        for (j=0; j < el.options.length; j++) {
                                            /* Save selection in array to later restore them */
                                            if (el.options[j].selected == true) {
                                                el.options[j].selected = false;
                                                selector_restore[id][j] = 'on';
                                                last = j;
                                            } else {
                                                selector_restore[id][j] = false;
                                            }
                                        }
                                        break;
                                    }
                                }

                                el.selectedIndex = null;
                                if (last > 0) {
                                    el.selectedIndex = last;
                                }

                                el.size = 1;

                                /* Show a normal dropdown */
                                if (el.multiple) {
                                    el.multiple = false;
                                }

                                document.getElementById('option_' + id).src = '/blogz/templates/default/img/plus.png';
                            } else {
                                selector_store[id] = el.size;
                                if (selector_store[id] == 0) {
                                    selector_store[id] = 5;
                                }

                                last = 0;
                                if (el.selectedIndex > 0) {
                                    if (!selector_restore[id]) {
                                        selector_restore[id] = new Array();
                                    }

                                    for (j=0; j < el.options.length; j++) {
                                        /* Save selection in array to later restore them */
                                        if (el.options[j].selected == true) {
                                            selector_restore[id][j] = 'on';
                                            last = j;
                                        }
                                    }
                                }
                                el.selectedIndex = -1;
                                el.size = 4;
                                selector_toggle[id] = 'off';

                                /* Show multiple items */
                                el.multiple = true;

                                /* Restore previously selected items? */
                                last = 0;
                                for (i = 0; i < el.options.length; i++) {
                                    if (selector_restore && selector_restore[id] && selector_restore[id][i] && selector_restore[id][i] == 'on') {
                                        val = el.options[i].value;
                                        if (el.options[i].selected != true) {
                                            el.options[i].selected = true;
                                            last = i;
                                            // [TODO] IE Bug: Don't ask me why, but this restoring only works in Internet Explorer if you put this:
                                            // alert('it doesnt matter what, just the alert is important');
                                        }
                                    }
                                }

                                document.getElementById('option_' + id).src = '/blogz/templates/default/img/minus.png';
                            }
                        }
                    }

                    function checkSave() {
                        return true;
                    }

                    selector_toggle['categoryselector'] = 'off';
                    addLoadEvent(showItem);
                    </script>
                    </td>
            </tr>

            <tr>
            <td colspan="2"><b>Eintrag</b></td>
            <td>
                </td>
            </tr>

            <tr>
                <td colspan="3">
                    <textarea style="width: 100%" name="serendipity[body]" id="serendipity[body]" cols="80" rows="20"></textarea>

                </td>
            </tr>

            <tr>
                <td colspan="3">
                    <table width="100%" cellpadding="0" cellspacing="0">
                        <tr>
                            <td align="left" width="70%">
                                <input id="checkbox_allow_comments" type="checkbox" name="serendipity[allow_comments]" value="true"  checked="checked" /><label for="checkbox_allow_comments">Kommentare für diesen Eintrag zulassen</label><br />

                                <input id="checkbox_moderate_comments" type="checkbox" name="serendipity[moderate_comments]" value="true"  /><label for="checkbox_moderate_comments">Kommentare und Trackbacks dieses Eintrags werden moderiert</label>
                            </td>
                            <td align="right" rowspan="2" valign="middle" width="30%">
                                <input accesskey="p" type="submit" value="- Vorschau -" class="serendipityPrettyButton"  style="width: 150px" onclick="document.forms['serendipityEntry'].elements['serendipity[preview]'].value='true';" /><br />
                                <input accesskey="s" type="submit" onclick="return checkSave();" value="- Speichern -" class="serendipityPrettyButton" style="width: 150px" />
                            </td>
                        </tr>
                    </table>

                    <br />
                </td>
            </tr>

            <tr>
                <td colspan="2">
 <b>Erweiterter Eintrag</b></td>
                <td align="right">
                               </td>

            </tr>

            <tr>
                <td colspan="3">
                    <textarea style="width: 100%;" name="serendipity[extended]" id="serendipity[extended]" cols="80" rows="20"></textarea>
                </td>
            </tr>

            <tr>
                <td colspan="3">

                    <br />
                    <fieldset>
                        <legend><b>Erweiterte Optionen</b></legend>
                    <script language="Javascript">
                    function addTag(addTag)
                    {
                        var tags = document.getElementById("properties_freetag_tagList").value.split(',');
                        
                        inList = false;
                        for (tag in tags) {
                            if (trim(tags[tag].toLowerCase()) == addTag.toLowerCase())
                                inList = true;
                        }
                        
                        if (!inList)
                            document.getElementById("properties_freetag_tagList").value = document.getElementById("properties_freetag_tagList").value + "," + addTag
                    }
                    
                    function trim(str)
                    {
                        return str.replace(/^\s*|\s*$/g,"");
                    
                    }
                    </script>
                    <fieldset style="margin: 5px">
                        <a name="tagListAnchor"></a>
                        <div style="margin: 5px; border: 1px dotted #000; padding: 5px; font-size: 9px;">
 <b>|1:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('1.0')">1.0</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('10 jahre')">10 jahre</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('100%')">100%</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('1000')">1000</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('1000 meilen')">1000 meilen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('1000 stück')">1000 stück</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('11.01.')">11.01.</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('11.09.')">11.09.</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('11.11.')">11.11.</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('14 tage')">14 tage</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('17. juni')">17. juni</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('18')">18</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('18 jahre')">18 jahre</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('1a')">1a</a>,  <b>|2:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('2 gleisig')">2 gleisig</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('20')">20</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('2000')">2000</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('2006')">2006</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('21.01.')">21.01.</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('23')">23</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('23.08.')">23.08.</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('23.12.2005')">23.12.2005</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('2mal')">2mal</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('2pac')">2pac</a>,  <b>|3:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('3 monate')">3 monate</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('3 tage')">3 tage</a>,  <b>|4:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('4 kleine wände')">4 kleine wände</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('47%')">47%</a>,  <b>|8:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('8 uhr')">8 uhr</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('8mile')">8mile</a>,  <b>|9:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('9 gründe')">9 gründe</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('a')">a</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abbruch')">abbruch</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Abdel Rodrigez')">Abdel Rodrigez</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abend')">abend</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abend davor')">abend davor</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abgefallen')">abgefallen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abgehen')">abgehen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abholen')">abholen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abiball')">abiball</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abmarsch')">abmarsch</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('absage')">absage</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abschied')">abschied</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abschleppdienst')">abschleppdienst</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('absinth')">absinth</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abstumpfen')">abstumpfen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('absturz')">absturz</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('absurd')">absurd</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('abwechslung')">abwechslung</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ACE')">ACE</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('achtelfinale')">achtelfinale</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('achterbahn')">achterbahn</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('action')">action</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('adé')">adé</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('afrika')">afrika</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('aggro')">aggro</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ahnung')">ahnung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alben')">alben</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('albert camus')">albert camus</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('albert einstein')">albert einstein</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('album')">album</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alien')">alien</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alk')">alk</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alkohol')">alkohol</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alle')">alle</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alle spiele')">alle spiele</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Allein')">Allein</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alleine')">alleine</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alleingang')">alleingang</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alleinsein')">alleinsein</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alles cool')">alles cool</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alles gute')">alles gute</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alles liebe')">alles liebe</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alltag')">alltag</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alpenmax')">alpenmax</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alsterradio')">alsterradio</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alte bekannte')">alte bekannte</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('alte neue bekanntschaft')">alte neue bekanntschaft</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('amerika')">amerika</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('amerikanisches grinsen')">amerikanisches grinsen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('amok')">amok</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('amur')">amur</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('analyze')">analyze</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('anfänger')">anfänger</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('angeln')">angeln</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('angelrute')">angelrute</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('angola')">angola</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('angst')">angst</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('animation')">animation</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('animator')">animator</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ankunft')">ankunft</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('anmalen')">anmalen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('anrufung')">anrufung</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Anstrengung')">Anstrengung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Antifa')">Antifa</a>,  <b>|A:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('apfelfront')">apfelfront</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('arbeit')">arbeit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('arbeitsamt')">arbeitsamt</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('argentinien')">argentinien</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('arjen robben')">arjen robben</a>, <A href="#tagListAnchor" style="text-decoration: none" href="#tagListAnchor" style="text-decoration: none" onClick="addTag('nudeln')">nudeln</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('nutzung')">nutzung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('nähe')">nähe</a>,  <b>|O:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('offenheit')">offenheit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ohne worte')">ohne worte</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('oma')">oma</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('on my way')">on my way</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('oregon')">oregon</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ostergeschenk')">ostergeschenk</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ostern')">ostern</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('over')">over</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wasser')">wasser</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wasserfälle')">wasserfälle</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wasserglas')">wasserglas</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wasserglasmädchen')">wasserglasmädchen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wayne')">wayne</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('we')">we</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('web')">web</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('webdesign')">webdesign</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('website')">website</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('websiten')">websiten</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weg')">weg</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wege')">wege</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weiber')">weiber</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weit')">weit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weit weg')">weit weg</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weiß')">weiß</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weißhemdträger')">weißhemdträger</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weltmeister')">weltmeister</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weltmeisterschaft')">weltmeisterschaft</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weltsprache')">weltsprache</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weltuntergang')">weltuntergang</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('weltweit')">weltweit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('werbung')">werbung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('werder bremen')">werder bremen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('werk2')">werk2</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wet')">wet</a>,  <b>|W:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Wetter')">Wetter</a>,  <b>|W:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('whiskey')">whiskey</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('whisky')">whisky</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wholetrain')">wholetrain</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wiederholung')">wiederholung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wiese')">wiese</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wiit')">wiit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('winter')">winter</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('winter sommer')">winter sommer</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wir')">wir</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wise guys')">wise guys</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wissen')">wissen</a>,  <b>|W:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Wlan')">Wlan</a>,  <b>|W:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wm')">wm</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('woche')">woche</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('woche des glücks')">woche des glücks</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wochenbilanz')">wochenbilanz</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wochenende')">wochenende</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wohnung')">wohnung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wolke')">wolke</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wolle')">wolle</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wollen')">wollen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('word play')">word play</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('workaholic')">workaholic</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('world')">world</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wow')">wow</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wtc')">wtc</a>,  <b>|W:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Wucher')">Wucher</a>,  <b>|W:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wunder')">wunder</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wunderschön')">wunderschön</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wut')">wut</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wünsche')">wünsche</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wünschen')">wünschen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('würmer')">würmer</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wände')">wände</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('wärme')">wärme</a>,  <b>|X:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('xavier naidoo')">xavier naidoo</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('xxl')">xxl</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('xxxl')">xxxl</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('xxxxl')">xxxxl</a>,  <b>|ü:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('überall bist du')">überall bist du</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('überblick')">überblick</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('überwindung')">überwindung</a>,  <b>|Y:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('yeah')">yeah</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('youtube')">youtube</a>,  <b>|Z:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zebra')">zebra</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zeit')">zeit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zeitraum')">zeitraum</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zeitung')">zeitung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zentralstadion')">zentralstadion</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ziel')">ziel</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zitat')">zitat</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zitronen')">zitronen</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zivi')">zivi</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zivildienst im ausland')">zivildienst im ausland</a>,  <b>|Z:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Zucker')">Zucker</a>,  <b>|Z:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zufall')">zufall</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zukunft')">zukunft</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zurück')">zurück</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zustand')">zustand</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zuviel')">zuviel</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zuweit weg')">zuweit weg</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zwangsneurose')">zwangsneurose</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zwischenbilanz')">zwischenbilanz</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zwischenprüfung')">zwischenprüfung</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zwänge')">zwänge</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zynismus')">zynismus</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zärtlichkeit')">zärtlichkeit</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('zögern')">zögern</a>,  <b>|Ä:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('Änderungen')">Änderungen</a>,  <b>|ä:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ärger')">ärger</a>, <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('ätzend')">ätzend</a>,  <b>|ö:</b> <A href="#tagListAnchor" style="text-decoration: none" onClick="addTag('öde')">öde</a>,                         </div>

                        <legend>Freie Artikel-Tags</legend>
                        <label for="serendipity[properties][freetag_tagList]" title="Freie Artikel-Tags">
                            Bitte alle zutreffenden Tags angeben. Mehrere zutreffende Tags mit Komma (,) trennen:</label><br/>
                        <input type="text" name="serendipity[properties][freetag_tagList]" id="properties_freetag_tagList" value="" style="width: 100%" />
                    </fieldset>
                    <fieldset style="margin: 5px">
                        <legend>Einträge ankündigen (via XML-RPC ping) bei:</legend>

                            <input onclick="document.getElementById('serendipity[announce_entries_Array]').checked = false; " style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_Ping-o-Matic]" id="serendipity[announce_entries_Ping-o-Matic]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu Ping-o-Matic (ersetzt Array)" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_Ping-o-Matic]"> Ping-o-Matic  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_blo.gs]" id="serendipity[announce_entries_blo.gs]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu blo.gs" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_blo.gs]"> blo.gs  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_blogrolling.com]" id="serendipity[announce_entries_blogrolling.com]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu blogrolling.com" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_blogrolling.com]"> blogrolling.com  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_technorati.com]" id="serendipity[announce_entries_technorati.com]" value="true" checked="checked" />

                                <label title="Sende XML-RPC ping zu technorati.com" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_technorati.com]"> technorati.com  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_weblogs.com]" id="serendipity[announce_entries_weblogs.com]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu weblogs.com" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_weblogs.com]"> weblogs.com  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_ge.bloggt.org]" id="serendipity[announce_entries_ge.bloggt.org]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu ge.bloggt.org" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_ge.bloggt.org]"> ge.bloggt.org  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_Yahoo!]" id="serendipity[announce_entries_Yahoo!]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu Yahoo!" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_Yahoo!]"> Yahoo!  </label><br />

                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_http://ping.blogstart.de]" id="serendipity[announce_entries_http://ping.blogstart.de]" value="true" checked="checked" />
                                <label title="Sende XML-RPC ping zu http://ping.blogstart.de" style="vertical-align: bottom; margin: 0px; padding: 0px;" for="serendipity[announce_entries_http://ping.blogstart.de]"> http://ping.blogstart.de  </label><br />
                            <input  style="margin: 0px; padding: 0px; vertical-align: bottom;" type="checkbox" name="serendipity[announce_entries_http://www.moreover.com/ping]" id="serendipity
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Bitte nutze einen Service wie nopast.php-q.net um deinen Code zu posten - hier war der code leider abgehackt in der Hälfte...

Ich wollte mich ansonsten auch gerade mal einloggen, aber mit deinen daten aus deiner PM von damals klappte es nicht?!

Viele Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

hey garvin, hab die daten für dich wieder aktiviert..

den code findest du unter:

http://nopaste.php-q.net/243728

danke :)
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Schau mal am Ende deiner HTML-Seite, dort steht:

Code: Select all

LJ Update Options xml_rpc_client: Connection to RPC server :80 failed. Success
Notice: xml_rpc_client: Connection to RPC server :80 failed. Success in /www/htdocs/gedanke/blogz/bundled-libs/PEAR.php on line 848
xml_rpc_client: Connection to RPC server :80 failed. Success
Du hast also das LiveJournal-Update Plugin installiert, aber Dein Server kann nicht richtig mit dem LJ-Server verbinden. Du musst das LJ-Plugin also deinstallieren.

Viele Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

hab ich gemacht.. trotzdem ändert sich rein gar nichts an dem ursprungs problem...
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Anscheinend nutzt Du den FCK-Editor. Das hattest Du so nicht erwähnt, dass der noch aktiv ist, ich ging davon aus dass Du die fehlgeschalgenen Versuche "zurückgesetzt" hattest. :)

Also, das Problem ist nun einen Schritt weiter und liegt daran, dass Du den FCKEditor nicht nach Anleitung installiert hast.

Im HTML-Quelltext steht:

Code: Select all

<script language="javascript" type="text/javascript" src="/www/htdocs/gedanke/blogz/plugins/serendipity_event_fckeditor/fckeditor.js"></script>
Das ist der falsche Pfad. In der Anleitung des Plugin steht, dass Du dort den vollen HTTP-Pfad eintragen sollst; nicht den Server-Pfad. Richtig wäre also, dass dort:

Code: Select all

<script language="javascript" type="text/javascript" src="/blogz/plugins/serendipity_event_fckeditor/fckeditor.js"></script>
steht. Konfiguriere also im FCKEditor-Plugin den korrekten Pfad - dann klappt's auch mit dem Nachbarn ;)

Viele Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

das hab ich selber auch 2 mal ausprobiert.. nun ist es aber anders..

es funktioniert im inet explorer.. aber dafür in firefox & opera nicht.. woran liegt das? und wie kann ich das evtl. noch beheben?

ich hab es dauernd mit den firefox probiert.. dort zeigt er weiterhin nichts an.. aber der ie schon.. :/ oh mann versteh einer das..
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Bei mir im Firefox klappt es auf deiner Seite. Check mal ob Du javascript etc. alles auch aktiviert hast und den browser-cache geleert?

Opera unterstützt glaub ich den FCK Editor noch garnicht.

Viele Grüße,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
ritman
Regular
Posts: 18
Joined: Thu Sep 14, 2006 5:49 pm

Post by ritman »

danke lieber garv..

klappt nun alles :)..

opera ist mir zwar relativ wichtig.. surf aber z.Z. eh mehr mit dem Feuerfuchs...
Post Reply