Na stronie zakładek del.icio.us zrobił się szum o najnowszym produkcie GoogleTorrents. Czy Google, podążajac za potrzebami swoich uzytkowników, których liczba wciaż rośnie, zdecydowało się zainwestować w rozwój sieci BitTorrent? Czytaj dalej »
Kilka dni temu pisałem o możliwości importowania załączników tekstowych do GoogleDocs, oraz problemach przy takim imporcie występujących. Nadmieniłem również, że import wyobrażam sobie zupełnie inaczej, oraz że arkusze kalkulacyjne nie są nadal obsługiwane. Widać obsługa Google czyta mojego bloga i postanowiła zabrać mi argumenty z rąk. Czytaj dalej »
Nareszcie. GoogleTalk ewoluuje i dostrzega potrzeby swoich użytkowników. Najpierw otworzył się na s2s, teraz przetrzymuje wiadomości off-line. Czytaj dalej »
Google Co-op to usługa, pozwalająca nie tylko na zamieszczenie wyszukiwarki Google wewnątrz własnej witryny, ale również wybór konkretnych witryn, które będą dla nas przeszukiwane. Czytaj dalej »
Przeglądając, jak codzień, losowe zakładki del.icio.us otagowane jako google-related, trafiłem na prezentację największych hitów w wykonaniu GoogleEarth Czytaj dalej »
Taki tytuł nosi ostatni wpis ma blogu GoogleOS. Niestety. Import jako taki nie został dotąd wprowadzony, ale dzięki nowej funkcji możemy go sami “zaimplementować“. Dla mnie, wprowadzenie obsługi eksportu dokumentów do GoogleDocs powinno wyglądać tak (stąd opinia, że nie został wprowadzony) Czytaj dalej »
Bardzowieleblogów i serwisów korzysta dzisiaj z funkcjonalności feedburner. Wielu jeszcze tego nie robi, a szkoda. Sam zacząłem dopiero dzisiaj, bo dopiero dzisiaj znalazłem kwadrans, żeby przesiąść do nowego syndykatu.
Kilka przydatnych opcji
Feedburner pozwala na publikowanie multimedialnych treści wewnątrz kanału RSS. Publikowanie lub niepublikowanie, ponieważ wszystko można tutaj wygodnie skonfigurować.
Podsumowanie wpisu - możemy ograniczyć wyświetlanie wpisów w agregatorach do n znaków.
del.icio.us - Linki dodawane do konta w Del.icio.us mogą teraz pojawiać się wewnątrz naszego kanału.
flickr - j.w., również w czasie rzeczywistym, lub jako podsumowanie dnia
PingShot - informowanie o nowych wpisach takie serwisy jak Technorati, Bloglines, Ping-o-matic czy GoogleBlogSearch. Sczególnie przydatne, gdy nasz system blogowy nie ma tej funkcji wbudowanej automatycznie.
Systemów blogowych i CMS‘ów jest wiele, a większość z nich obsługuje feedy RSS czy Atom. Jak je zatem podmienić? Ten blog działa pod kontrolą silnika Wordpress zatem na jego przykładzie omówię co zrobić, by w kilku krokach mieć dostęp do funkcjonalności Feedburner’a. Niemniej, poniżej znajdują się 2 metody. Druga z nich - owszem, nadaje się tylko dla Wordpress’a. Jednak pierwszą można wykorzystać (z minimalnymi modyfikacjami wymagającymi jedynie odrobiny myślenia) w każdym CMS’ie.
Feedburner HOWTO - part 1
Decydując się na oddanie się pod kontrolę Feedburnera musimy podmienić istniejące na naszej stronie kanały.
Rejestracji i tworzenia feedu nie warto opisywać. Standard.
Aktualizacja nagłówka strony - w przypadku WP jest to plik header.php. należy zastąpić wszystkie nagłówki dotyczące kanałów RSS jak np.
<link rel="alternate" type="application/rss+xml" title="moj blog RSS Feed” href=”http://blog.domain.tld/rss/” />
<link rel=”alternate” type=”application/atom+xml” title=”moj blog Atom Feed” href=”http://blog.domain.tld/feed/atom/” />
<link rel=”alternate” type=”application/rss+xml” title=”moj blog RSS 2.0 Feed” href=”http://blog.domain.tld/feed/” />
<link rel=”alternate” type=”application/rss+xml” title=”moj blog Comments RSS 2.0 Feed” href=”http://blog.domain.tld/comments/feed/” />
<link rel=”alternate” type=”application/rdf+xml” title=”moj blog RSS 1.0″ href=”http://blog.domain.tld/feed/rdf/” />
<link rel=”alternate” type=”text/xml” title=”moj blog RSS 0.92 Feed” href=”http://blog.domain.tld/feed/rss/” />
takim: <link rel="alternate" type="application/rss+xml" title="RSS" href="http://feeds.feedburner.com/moj_feed” />
Od tego momentu każdy nowy czytelnik będzie już subskrybował kanał dostarczany przez FB.
Dla obecnych już czytelników należy przygotować kilka zmian w pliku .htaccess.
Dla mojego bloga wygląda on tak: RewriteEngine On
RewriteBase /
RewriteRule ^archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^archives/category/?(.*) /index.php?category_name=$1 [QSA]
RewriteRule ^archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^archives/author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^archives/([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1&withcomments=1 [QSA]
RewriteCond %{HTTP_USER_AGENT} FeedBurner
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1 [QSA]
RewriteCond %{HTTP_USER_AGENT} !FeedBurner
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/ludwikc/blog [R,L]
Z zaznaczeniem, że mój blog dziala we własnej domenie. Dla podkatalogu z blogiem należy przed każdym /wp-... oraz po RewriteBase podać ścieżkę /blog.
Taki zabieg pozwoli dotychczasowym subskrybentom zaktualizować feedy. Mój .htaccessdo pobrania.
To wszystko.
.htaccess
z zasady jest aktywowany w czasie rzeczywistym.
A, tak. Zapomniałem dodać, że teraz próba otworzenia jakiegokolwiek postu kończy się błędem 404. Ale dto nie jest żaden problem. Nie zależnie od tego jaką metodę wyświetlania permalinków wybraliśmy należy udać się do Options » Permalinks i zaktualizować sposób ich wyświetlania.
Feedburner HOWTO - part 2: Wordpress plugin
Metoda prostsza, do wykorzystania w Wordpressie. Ściągamy odpowiedni plugin, instalujemy, aktywujemy. Działa. :)
Mamy, wymienione wyżej, del.icio.us, digg. A co z naszym wykopem? Też jest. Zgodnie z API możemy Stworzyć własną FeedFlarę która pozwoli dodawać linki na wykop.pl bezpośrednio z czytnika.
Aby to zrobić należy podać w Personal FeedFlares adres pliku xml: http://projects.ludwikc.net/xml/wykop.xml
Co daje następujący efekt: Sprawdź sam.
Użycie tego vouchera gwarantuje największą zniżkę na hosting.Dreamhost jest jedną z największych, a z pewnościa najlepszych firm hostingowych na świecie. Obecnie posiadają kilkadziesiąt serwerów zlokalizowanych w USA. Firma jest potentatem wynku hostingowego nie tylko z racji poziomu świadczonych usług hostingowych, ale dostosowywania się do indywidualnych potrzeb swoich klientów. Rozbudowana pomoc techniczna (świadczona przy każdym planie hostingowym) pozwala na rozwiązanie problemu nawet w 1,5 minuty (!).
Plan “Crazy Domain Insane”
We wrześniu tego roku firma obchodziła 9 urodziny. Z tej okazji zwiększone zostały parametry kont, nawet dziesięciokrotnie.
Tak, konto posiada 200 GB przestrzeni dyskowej. I również nie jest pomyłką informacja o 2 TB miesięcznego transferu. To jednak nie wszystko. Przestrzeń i transfer nie są stałe. One… rosną! Co tydzień, już po 7 dniach od zakupienia hostingu powierzchnia rośnie o 160MB 1 GB! Transfer rośnie o 1 GB 16 GB! Co tydzień!
Uwaga: W tej chwili trwają beta testy nowej usługi dreamhost: File Forever. Do czasu ukończenia testów, każdy użytkownik (również nowozarejestrowany) ma możliwość umieszczenia swoich plików na serwerze, a dreamhost zobowiązuje się przetrzymywać je tam na zawsze!
Ile to kosztuje?
Wg informacji na stronachdreamhost.com serwer w wersji podstawowej (czyli tej, wymienionej powyżej: 200GB powierzchni + 2 TB transferu: “Crazy Domain Insane“) kosztuje 119.40 USD. Dużo? Nie. Ale za dużo - tak. :)
Dlatego udostępniliśmy vouchery promocyjne. Korzystając z kodu promocyjnego oferowanego przez Advanced Hosting Solutions Polska dreamhost obniża cenę dowolnego plau hostingowego o 230 zł! Jest to maksymalna zniżka jaką mogą otrzymać partnerzy dreamhost. Firma mieści się w USA, więc zniżka jest przyznawana wg. aktualnej ceny dolara amerykańskiego. Podsumowując:
$119.40 - $79 = $44.40 (rocznie!)
Jak to działa?
Uzyskanie zniżki sprowadza się do przejścia na stronę dreamhost.com, wybrania planu hostingowego, oraz (co najważniejsze) podaniu kodu promocyjnego AHSPL79.
Skopiuj i wklej:
Płatności dokonuje się przelewem, lub kartą kredytową (np. AlleKartą lub dowolną inną). Wybranie tego sposobu płatności spowoduje aktywację hostingu natychmiast po zakończeniu transakcji.
Uwaga: Transakcje kartą kredytową są księgowane jako transakcje bezgotówkowe, a co za tym idzie, niemal wszystkie banki nie pobierają prowizji za taki przelew.
Co dalej?
Nie pozostaje nic innego jak cieszyć się prawdopodobnie najlepszym hostingiem na świecie.
Informacja :
Advanced Hosting Solutions nie jest prawnie związane z firmą dreamhost. Jesteśmy partnerem sieci, na ogólnodostępnych warunkach. Naszą misją jest umożliwienie rozwoju w dziedzinie technologii internernetowej młodym ludziom z Polski oraz innych krajów Unii Europejskiej. Strona ta ma na celu jedynie promocję, a nie zarobek.
Przygotowałem polskie tłumaczenie XFN. Zamieszczam je poniżej, jeśli są inne propozycje do poszczególnych pozycji - komentarze są otwarte :)
Developerzy XFN czekają na przetestowaną wersję.
Kreator XFN 1.1
<a href=”" rel=”"></a>
Ten interfejs użytkownika oraz jego kod przedstawiony jest jako przykład praktyczności użytkowania XFN, a także klarownego zademonstrowania wartości składników opisujacych nasze znajomości oraz kodu, który może zostać użyty do zaprezentowania tychże wartości.
XFN Creator 1.0 został stworzony przez Matta Mullenwega.
XFN Creator 1.1 uaktualnił Tantek Çelik.
W tej chwili jestem Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 83
Warning: fsockopen() [function.fsockopen]: unable to connect to jabber.autocom.pl:80 (php_network_getaddresses: getaddrinfo failed: Name or service not known) in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 83
Warning: fwrite(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 84
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86
Warning: fgets(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 87
Warning: feof(): supplied argument is not a valid stream resource in /home/.friendly/ludwikc/blog.ludwikc.net/wp-content/plugins/jabber_status.php on line 86