Ahmeti Timeline
İlk deneme benden olsun istedim 🙂 Bakalım bu eklenti çalışıyor mu?
Bu sayfa 6.547 kez görüntülendi.
Sıradan Bloglardan Birisi
Yazar: Ahmet · Yayımlanmış · Güncellendi
İlk deneme benden olsun istedim 🙂 Bakalım bu eklenti çalışıyor mu?
Bir gün iş yerinde internetten dinlemek istediğim bir şarkıyı aramış bulamayınca da müzik dinleme sitesi yapmayı hayal etmiştim. 09 Ekim 2010 tarihinde Mp3DinlerMisin.com alan adanı satın almış ilk adımı atmıştım. Nereden bilebilirdim ki! Günlük 100.000 (100k) tekil hitlere ulaşıp aylık 3 milyon kişinin benim yapmış olduğum bir siteden müzik dinleyebileceğini 🙂 Oysa ki! Başlangıçta iş yerinde sadece müzik dinlemek istemiştim 🙂
Büyük hayallerle kodlarını yazdığım ve recursive functionları dibine kadar kullandığım sitedir. Soru eklemenin zahmeti olması nedeniyle üzerinde çok fazla durmadığım ve ayrıca Türk halkının internette geçirdiği zamanlarda soru çözmekten pek hoşlanmadığı tespit ettiğim bir başarısızlık hikayesidir. Site halen aktiftir. Bkz. SoruCozelim.com
Vesselam seneler biraz hızlı geçti sanki. Yok yok bu matematiksel olarak imkansız 🙂 İnternet çöplüğüne ben de bir çöp atayım dedim ve Ahmeti.net'i yayımladım 🙂 Sıradan bloglardan birisi olduğunu sakın unutmayın 🙂 Slogan da bu değil mi zaten?
Bu sayfa 6.547 kez görüntülendi.
Ahmet
Sıradan bloglardan birisi :)
Yazar: Ahmet · Published 06 Ocak 2013
Yazar: Ahmet · Published 11 Mart 2012 · Last modified 15 Aralık 2023
Yazar: Ahmet · Published 07 Ocak 2024
Hello.
I am Jörg from Germany. I installed your Timeline and firstable, it runs good! But i think it was an Word-Press-System-Update and since then, the timeline dont connect with the database.
I use your timeline Version 2.1, my WP-Version is 3.9.1
The Error called:
Warning: mysql_query(): Access denied for user ‘u188187’@’localhost’ (using password: NO) in /kunden/188187_53844/JanoschMueller/wp-content/plugins/ahmeti-wp-timeline/AhmetiWpTimelineFunction.php on line 176
Can you help me?
Many thanx and grats for the timeline. It´s a supr tool!!
Jörg
Hi Jörg,
I updated the plugin. You can use. Thank you again for your feedback.
Link: http://wordpress.org/support/topic/database-connection-error-33
Tanitim güzel olmuş arkadas, oerlikona başvuru yaptim bakalim ne olcak tesadüf olarak firmayi incelerken buldum burayi.
İyi calismalar.
MaşaAllah! Allah dilerse olur!
Güzel tanıtım yapmışsınız teşekkürler
Very nice plugin.
Need to update the DateTime function for pre-1970 dates…
function AhmetiWpTimelineDateTitle($mysqlDateTime,$options)
{
$explTime=explode(‘ ‘,$mysqlDateTime);
// $explTime[0] // 2012-12-12
// $explTime[1] // 00:00:00
$explDate=explode(‘-‘,$explTime[0]);
// $explDate[0] // Year
// $explDate[1] // Month
// $explDate[2] // Day
if ($explDate[2] > 0 && $explTime[1] != ’00:00:00′){
// D-M-Y And H:i:s
if ( empty($options->DateFormatYearMonthDay) || empty($options->DateFormatHourMinutesSecond)){
return $mysqlDateTime;
}else{
return date( $options->DateFormatYearMonthDay.” “.$options->DateFormatHourMinutesSecond, strtotime($mysqlDateTime));
}
}elseif( $explDate[2] > 0){
// D-M-Y
if ( empty($options->DateFormatYearMonthDay) ){
return $explTime[0];
}else{
// return date( $options->DateFormatYearMonthDay, strtotime($explDate[0].’-‘.$explDate[1].’-‘.$explDate[2]));
$thisdate = new DateTime($explTime[0]);
return $thisdate ->format($options->DateFormatYearMonthDay);
}
}elseif($explDate[1] > 0 ){
// M-Y
if ( empty($options->DateFormatYearMonth) ){
return $explDate[0].’-‘.$explDate[1];
}else{
$thisdate = new DateTime($explTime[0]);
return $thisdate ->format($options->DateFormatYearMonth);
// return date( $options->DateFormatYearMonth, strtotime($explDate[0].’-‘.$explDate[1]));
}
}else{
// Y
if ( empty($options->DateFormatYear) ){
return $explDate[0];
}else{
$thisdate = new DateTime($explTime[0]);
return $thisdate ->format($options->DateFormatYear);
// return date( $options->DateFormatYear, strtotime(($explDate[0]+1).’-00′));
}
}
}
Zaman çizelgesini normal olarak nasıl yapabiliriz wordpress eklentisi olmayan yardım edebilir misiniz
Hocam merhaba,
Kaynak: https://github.com/technotarek/timeliner