Beiträge von tom_010101

    Der Schnellüberblick verät:

    - Zu lange Antwortzeit des Servers (initial fast 2 Sekunden!), viel zu lange -> Mal mit dem Hoster sprechen
    - Deutlich zu viele unterschiedliche JavaScript-und Style-Dateien (minimieren und evtl. zusammenfassen)
    - (u.a. dadurch) Viel zu viele HTTP - Requests

    Gruss
    Marco[COLOR=#000000][FONT=Arial]
    [/FONT][/COLOR][COLOR=#000000][FONT=Arial]webongo webdesign [/FONT][/COLOR]

    Hmmm, vielen Dank erstmal für die Auskunft. Das mit dem Server werde ich angehen und den Anbieter (one.com) anschreiben. Der zweite Punkt mit den JavaScripts etc. wird da schon schwieriger da ich von sowas absolut keinen Plan habe. Ist es für mich als Laie hinzubekommen? Wenn ja was genau muss ich den machen? :?

    Mfg Tom

    Sooooo ich habe jetzt einiges an den Bildern gemacht und nun ist die Seite keine 1.77MB mehr groß sondern knapp 800kb. Weiter komme ich allerdings mit meinen Englisch sowie meinem technischen Sachverstand nicht mehr. Sollte jemand gerade gaaaaaaaaarnix zu tun haben kann er sich ja mal die Meldungen von http://gtmetrix.com/reports/blog.r…lle.de/kMfAsHHB anschauen und eventuell mal ein zwei Tipps geben was ich noch ändern kann.

    Mfg Tom

    Hmmmm, stimmt auch wieder. Habe gerade mal ein paar Blogs im Netz gesucht und getestet und so wirklich "schnell" ist keiner. Selbst der Blog von http://blog.daimler.de/ nicht :sad: Also würdet Ihr sagen ich lass erstmal alles wie es ist? Plugins habe ich eigentlich keine sinnlosen und Bilder etc. kommen ja auch kaum vor... Wüsste jetzt nicht wie ich die Speed erhöhen könnte. Vielleicht hat jemand noch ein paar Tipps!?

    Wenn ich auf meinem Blog http://www.sunshine-shopping.com einen neuen Beitrag veröffentliche erhalte ich nach der Veröffentlichung automatisch eine Antwort auf meine Seite (Waren Ankauf: http://blog.rent-a-sonnenbrille.de/wir-kaufen-ihre-waren-an/) Die Antwort kommt von meiner Server IP und wird von Antispam Bee als "Spam" eingestuft. Im Kontrollzentrum unter "Kommentare" ist die Antwort dann auch im Ordner Spam und als Kommentar steht ([COLOR=#333333][FONT=Open Sans][…] Waren-Ankauf […]). Sicherlich habe ich irgendwo irgend etwas angeklickt oder? [/FONT][/COLOR]:-(

    Ps. Wenn ich den Kommentar dann veröffentliche steht da ein Link zu meinem Beitrag und davor "Pingback".

    Wäre über Hilfe sehr dankbar.

    Mfg Tom

    Hallo,

    gibt es eine Möglichkeit doppelte Artikel in seinem Blog zu finden? Ich arbeite viel mit Zitaten von anderen Seiten und da kann es ab und an vorkommen das man einen Artikel veröffentlicht den man vor 2 Tagen eventuell schon einmal veröffentlicht hat. Gibt es die Möglichkeit das herauszufinden zum Beispiel anhand der Überschrift? (Voraussetzung ist natürlich das diese identisch sind, das ist mir klar)

    Mfg Tom
    http://www.sunshine-shopping.com

    Hab mir selbst die Antwort gegeben. Mit dem Plugin WP-Paginate ist es möglich. In der loop.php habe ich folgendes geändert:

    [COLOR=#0000BB][FONT=monospace]<?php [/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]/* Display navigation to next/previous pages when applicable */ [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
    <?php [/FONT][/COLOR][COLOR=#007700][FONT=monospace]if ( [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$wp_query[/FONT][/COLOR][COLOR=#007700][FONT=monospace]->[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]max_num_pages [/FONT][/COLOR][COLOR=#007700][FONT=monospace]> [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1 [/FONT][/COLOR][COLOR=#007700][FONT=monospace]) : [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
    [/FONT][/COLOR][COLOR=#000000][FONT=monospace] <div id="nav-below" class="navigation">[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace] <div class="nav-previous">[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php next_posts_link[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]__[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'<span class="meta-nav">&larr;</span> Older posts'[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'twentyten' [/FONT][/COLOR][COLOR=#007700][FONT=monospace]) ); [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>[/FONT][/COLOR][COLOR=#000000][FONT=monospace]</div>[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace] <div class="nav-next">[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php previous_posts_link[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]__[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'Newer posts <span class="meta-nav">&rarr;</span>'[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'twentyten' [/FONT][/COLOR][COLOR=#007700][FONT=monospace]) ); [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>[/FONT][/COLOR][COLOR=#000000][FONT=monospace]</div>[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace] </div><!-- #nav-below -->[/FONT][/COLOR]
    [COLOR=#0000BB][FONT=monospace]<?php [/FONT][/COLOR][COLOR=#007700][FONT=monospace]endif; [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>

    ersetzt durch:

    [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php [/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]/* Display navigation to next/previous pages when applicable */ [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
    <?php [/FONT][/COLOR][COLOR=#007700][FONT=monospace]if ( [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$wp_query[/FONT][/COLOR][COLOR=#007700][FONT=monospace]->[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]max_num_pages [/FONT][/COLOR][COLOR=#007700][FONT=monospace]> [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1 [/FONT][/COLOR][COLOR=#007700][FONT=monospace]) : [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
    [/FONT][/COLOR][COLOR=#000000][FONT=monospace] <div id="nav-below" class="navigation">[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace] [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php [/FONT][/COLOR][COLOR=#007700][FONT=monospace]if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]function_exists[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'wp_paginate'[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) { [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]wp_paginate[/FONT][/COLOR][COLOR=#007700][FONT=monospace](); } else { [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
    [/FONT][/COLOR][COLOR=#000000][FONT=monospace] <div class="nav-previous">[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php next_posts_link[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]__[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'<span class="meta-nav">&larr;</span> Older posts'[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'twentyten' [/FONT][/COLOR][COLOR=#007700][FONT=monospace]) ); [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>[/FONT][/COLOR][COLOR=#000000][FONT=monospace]</div>[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace] <div class="nav-next">[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php previous_posts_link[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]__[/FONT][/COLOR][COLOR=#007700][FONT=monospace]( [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'Newer posts <span class="meta-nav">&rarr;</span>'[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'twentyten' [/FONT][/COLOR][COLOR=#007700][FONT=monospace]) ); [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>[/FONT][/COLOR][COLOR=#000000][FONT=monospace]</div>[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace] [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]<?php [/FONT][/COLOR][COLOR=#007700][FONT=monospace]} [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
    [/FONT][/COLOR][COLOR=#000000][FONT=monospace] </div><!-- #nav-below -->[/FONT][/COLOR]
    [COLOR=#0000BB][FONT=monospace]<?php [/FONT][/COLOR][COLOR=#007700][FONT=monospace]endif; [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>

    Und auf der Startseite http://www.sunshine-shopping.com wird jetzt die Navigation angezeigt.

    Mfg Tom


    [/FONT][/COLOR]

    Muss das Thema nochmals etwas "hoch befördern"...! Hat keiner ne Lösung parat? Wenn ich die loop.php bearbeite und <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div> w wie beschrieben mit <?php wp_pagenavi(); ? ersetze zerstört es mir die Seite und das war´s :roll: Es muss doch eine Möglichkeit geben das beim "twentyten" die Seitenanzahl angezeigt wird. Ich wäre über jede Hilfe wirklich dankbar.

    Mfg Tom

    Hallo,

    ich würde gern wissen ob und wie ich in meinen Themen die immer gleichen Links automatisch eingefügt bekomme? Ich habe zb. bei jedem meiner Artikel einen Link zu meinem Shop und Adsense Werbung eingefügt. Nun ist es so das ich dies immer mit Hand bei jedem Artikel einzeln mache. Kann man das nicht auch automatisch machen? Habe mir gedacht eventuell die Links direkt in der Datei die für die Beiträge zuständig ist einzusetzen!? Ist mein Gedanke korrekt?

    Bin leider kein Programmierer, deshalb sorry für die vielleicht blöden Fragen! :(

    Mfg Tom