WP OnlyWire Auto Poster Plugin
(OW) sitesinden daha önce bahsetmiştim. ‘ın WordPress Blogları için yazdığı eklentiyi biraz revize ederek yeni özellikler ekledim. WP OnlyWire Auto Poster adını verdiğim bu eklenti yazdığım ilk WordPress Eklentisi. Eklentiyi bir süredir test edip hatalarını düzeltiyordum. Bununla birlikte yakında, yazmaya devam ettiğim katma değeri yüksek SEO eklentilerimi buradan WordPress Blogcuları ile paylaşacağım.
184.05 KB 1761 kez indirildi.
LATEST VERSION. Autosubmits a excerpt of a posts to Onlywire when the post published
WP OnlyWire Auto Poster eklentisinin yönetim sayfası
WP OnlyWire Auto Poster eklentisi ile bloğunuzda yazmış olduğunuz yazılar otomatik olarak OnlyWire’a gönderiliyor. Ayrıca göndermeniz gerekmiyor. Tankado.com‘da da kullandığım eklenti başarıyla çalışıyor. Aklıma geldikçe yeni özellikler eklemeye devam edeceğim. 2.0 dan devraldığım eklentiyi fark olması açısından 3.0′dan itibaren devam ettireceğim. Sizlerin hata bildirimleri ve özel istekleri doğrultusunda eklentiyi geliştirmeye devam edeceğim.
Eklentinin kullanımından bahsetmek gerekirse;
Eklentiyi WordPress’e yükledikten sonra Ayarlar menüsü altındaki OnlyWire Auto Poster menü seçeneğinden yönetetiyorsunuz. Aslında çok da yönetilecek bir yanı yok. Bu sayfadan OnlyWire’daki hesabınızın kullanıcı adı ve parolasını kaydettikten sonra eklenti çalışmaya hazır hale geliyor. Artık bloğunuzda yayınladığınız her yazı yazı siz hiçbir efor sarfetmeden OnlyWire sistemini gönderilecek.
Yönetim sayfanızdan sosyal imleme sitelerine gönderilen yazılarınız hakkındaki sonuç raporlarına da ulaşabilirsiniz. Sayfada iki tür rapor var. İlk raporda OnlyWire’a gönderilen yazıların bir listesi yer alıyor. Liste üzerindeki gönderi başlığının üzerine gelirseniz OW’a gönderilen comment (yorum) bilgisini de görebilirsiniz. Comment bilgisini Yazar adı, yazım tarihi, kategoriler ve eğer girmişseniz yazının özet kısmından oluşturdum.
WP OnlyWire Auto Poster eklentisi gönderim raporları
Yönetim sayfasının altındaki listede ise arka planda OW’ın API arayüzü ile olan iletişimin raporları yer alıyor. Buradan yazıların neden gönderilemediği ile ilgili bilgi edinebilirsiniz.
Son olarak sayfa üzerindeki “Reward the Author of this Plugin” yazılı düğmeden bahsetmek istiyorum. Düğmeye tıkladığınızda eklentinin tanıtım sayfası OnlyWrite hesabınız kullanılarak yayımlanacak. Düğme birkez tıklandıktan sonra görünmez olur. Sizden ricam eklentinin daha çok blogcu tarafından bilinebilmesi için düğmeye bir kez tıklamanız.
WP OnlyWire Auto Poster (39), auto poster (35), onlywire (34), bit ly (14), onlywire waiting on submitter (13), poster (10), autoposter wp from feedburner (1), onlywire wordpress eklentileri (1), problem with Auto Poster plugin wordpress (1), auto poster plugin nulled (1), www lol y2 com sikkiş (1)
Turkish
English
Chinese
Taglar gonderilmiyor. Bir bakarsan iyi olur. Plugin için teşekkürler.
Biraz önce bir deneme yaptım sorun gözükmüyor.
Just wanted to thank you for the plugin and leave a note saying that if you are autoblogging and want to use this plugin with an auto-tagging plugin like ninja then you have to apply a hack on the auto-tagging plugin to make sure that it loads before any other plugin. By default it will already load before the onlywire autoposter however that wasn’t enough, the auto tagging plugin has to load first I found.
You can change the order which it loads by following the directions here: http://wordpress.org/support/topic/315691
onlywire’ı uzundur biliyorum fakat bu harika eklentiyle yeni karşılaştım, ellerinize sağlık
How To Install Plugin OnlyWire auto Poster?
Please Help Me
Hi
Since moving my blog from shared to dedicated hosting I get failed reported for every post. Please advise what I need to do to get the plugin working again.
Also may I ask why every time you take a payment I get a call from my card’s anti-fraud division.
ok, if you have ;
allow_url_fopen off
this plugin will not work
it needs to be modified to use curl to be more secure
for no you have to use;
allow_url_fopen on
Hmmm, all posts are coming back failed now for quite a few weeks. Looks like onlywire may have changed the API ?
I found a couple more errors and modified the code again. Hopefully this is now correct as I can see the tags are building correctly now.
$tags_ = get_the_tags($post_ID);
if (!empty($tags_)) {
// foreach( $tags_ as $tag_arr )
// $tags .= $tag_arr->name . ‘ ‘;
$tagarr = array();
// build tags string
foreach($tags_ as $tag) {
array_push($tagarr, str_replace(‘ ‘, ‘-’, $tag->name));
}
$tags = implode(‘ ‘, $tagarr);
}
$categories = get_the_category($post_ID);
if (!empty($categories)) {
// foreach($categories as $category)
// $cats .= $category->cat_name . ‘, ‘;
// $categorystring = ”;
$categoryarr = array();
// build category string
foreach($categories as $category) {
array_push($categoryarr, str_replace(‘ ‘, ‘-’, $category->cat_name));
}
$cats = implode(‘ ‘, $categoryarr);
}
OOPS! Code mod – can somebody verify please;
$tags_ = get_the_tags($post_ID);
if (!empty($tags_)) {
// foreach( $tags_ as $tag_arr )
// $tags .= $tag_arr->name . ‘ ‘;
$tagarr = array();
// build tags string
foreach($tags as $tag) {
array_push($tagarr, str_replace(‘ ‘, ‘-’, $tag->name));
}
$tags = implode(‘ ‘, $tagarr);
}
$categories = get_the_category($post_ID);
if (!empty($categories)) {
// foreach($categories as $category)
// $cats .= $category->cat_name . ‘, ‘;
$categorystring = ”;
$categoryarr = array();
// build category string
foreach($categories as $category) {
array_push($categoryarr, str_replace(‘ ‘, ‘-’, $category->name));
}
$cats = implode(‘ ‘, $categoryarr);
}
OK I modified the code in onlywire-auto-poster.php like this;
$tags_ = get_the_tags($post_ID);
if (!empty($tags_)) {
// foreach( $tags_ as $tag_arr )
// $tags .= $tag_arr->name . ‘ ‘;
$tagarr = array();
// build tags string
foreach($tags as $tag) {
array_push($tagarr, str_replace(‘ ‘, ‘-’, $tag->name));
}
$posttags = implode(‘ ‘, $tagarr);
}
$categories = get_the_category($post_ID);
if (!empty($categories)) {
// foreach($categories as $category)
// $cats .= $category->cat_name . ‘, ‘;
$categorystring = ”;
$categoryarr = array();
// build category string
foreach($categories as $category) {
array_push($categoryarr, str_replace(‘ ‘, ‘-’, $category->name));
}
$postcats = implode(‘ ‘, $categoryarr);
}
I borrowed this from the WP Onlywire OFFICIAL plugin.
Hello,
I’ve just found a serious flaw with this plugin.
WordPress multiword tags are space seperated i.e.;
red dog
However onywire interprets this as two separate tags;
red
dog
Instead the plugin must submit multiword tags using inverted commas, like this;
“red dog”, blue, “green bird”
Then onlywire sees these as a multiword tags and converts it for different bookmarking sites (using hyphens – in some cases such as red-dog)
Can you modify the plugin to convert multiword tags with a space and wrap them with inverted commas ” “, otherwise this plugin is useless.
Dude
Great plugin but everything is coming back as failed. I can fire a campaign off on the onlywire site no problem, but the auto thing doesn’t seem to work. Is this a common problem? Is it due to captcha codes or something?
Hi,my wp post was success but why the post didn’t showing on facebook?
Merhaba;
Öncelikle böyle bi eklentiyi ücretsiz olarak bize sunduğunuz için teşekkür ederim, benim problemim sürekli failed alıyorum sebebi ne olabilir.
Merhaba,
Failed nedeni sayfanın altındaki “The last 30 transaction” kısmında yazıyor.
Merhaba, öncelikle herkese faydali olacak bu sekilde pluginleri hic bir maddi kaygi gütmeden gelistirip bizlere sundugunuz icin tesekkür ederim.Bende sitemi 1-2 gün icinde wordpress 3.03 e dönüstürecegim ama , konu eskide kalmis yinede bilmek istedim , worpress 3 ve üzeri versiyonlarla Onlywire auto poster plugin in uyumu nasil acaba? Yada yeni sürüm geliyormu ? Saygilar..
Merhaba ilginiz ve güzel düşünceleriniz için teşekkür ederim. WordPress altyapısı en sağlam ve geniş CMS’dir, geçmekle çok yerinde bir karar vermişsiniz. Eklentiyi zaman bulamadığım için çok sık güncelleyemiyorum fakat WordPress’in son sürümü ile uyumlu çalışıyor.
Denemeye değer görünüyor. Bambaşka bir şey aratmıştım ama karşıma bu çıktı. İnceledim, güzel.. Bu tarz araçlar için destek bulmak maalesef çok güç. Umarım başarılı olursunuz.
Hi I’m getting this error:
Fatal error: Call to undefined function get_the_author_meta() in ……onlywireautoposter.php on line 74
WordPress 2.7.1
Hey I am getting this error on adding posts and updating posts
Warning: file_get_contents(http://…@www.onlywire.com/api/add?url=http%3A%2F%2Fwww.onlinesexyslots.com%2Fbest-casino-bonuses%2Fhighnoon-casino%2F&title=Highnoon+casino+&tags=casino+bonus+high+noon+casino+no+deposit+code+&comments=Article+by+Rhonda+Lovering+at+2010-09-02+01%3A46%3A49%0A+Categorized+in+Casino+Bonuses%2C+No+Deposit+Casino%2C+Real+Time+Gaming+Casino%2C) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 401 Authorization Required in /mounted-storage/home95b/sub008/sc50054-BDHQ/onlinesexyslots.com/wp-content/plugins/wp-onlywire-auto-poster/lib.php on line 10
Warning: Cannot modify header information – headers already sent by (output started at /mounted-storage/home95b/sub008/sc50054-BDHQ/onlinesexyslots.com/wp-content/plugins/wp-onlywire-auto-poster/lib.php:10) in /mounted-storage/home95b/sub008/sc50054-BDHQ/onlinesexyslots.com/wp-includes/pluggable.php on line 890
How can I fix this? It only fixes by disabling plugin.
HI Ozgur, your plugin is working fantastic, I would like to know if we can strip the accents.
That’s because I’m using it in a blog in spanish, and when the articles have accents, they appear in onlywire posts like this:
Básicas chages to Básicas
So, I’d like to change that “á” to “a” without the accent, where should I put my function?
Thank you,
Abraham
Hi Abraham,
Thank you for nice opinions and bug report. I didnt test the situation yet, but I will try to fix it in next release.
Thanks.
Hi,
Great plugin. It’s the only one I could get working on WP3. Question, do I need to have the Only Wire submitter installed on my computer for submissions to be posted? When I have my computer on the submitter will submit but if my computer is off I noticed there’s a queue on the onlywire site on my account and submission weren’t made. Do I need to run it through the Only Wire API, I thought the plugin would have done that. Please let me know as it would seem silly if I have to leave my computer on all the time.
i just started my web with WP 2.9.2 and using your plugins, hopefully it worked. Thanks anyway.
merhaba,
ben bu eklentiyi bloğuma kurdum fakat sürekli failed veriyor.
1 Uzamax fiyatı ve kullananların yorumları 23/06/2010 – 20:42:24 failed
Gibi.
Acaba eklenti artık çalışmıyormu ?
Ekletin sürekli güncelleniyor ve çalışıyor. Failed nedeni eklenti sayfasının altındaki “transaction” listesinde yazmakta. Burada yazan mesaj doğrudan OnlyWire’dan gelen mesajdır. Muttemelen daha önce gönderdiğiniz entry’i güncellediğinizde, bu url daha önce gönderildi gibi uyarı alıyorsunuzdur.
Hello, i try to use WP OnlyWire Auto Poster. Post automatically submits to Onlywire but they are in a queue in My Submission History
What do I have to do for my posts placed automatically finally?
On my Onlywire site account it says:
“The submission of your content requires that you have installed the OnlyWire Submitter application to your computer or server. Click Here to Download the OnlyWire Submitter.
You have 21 items that are waiting to be processed by the OnlyWire Submitter. If you have the OnlyWire installed on your computer, it will automatically process these items within 5-30 minutes. Please make sure that you click on the Authorize Accounts feature on the OnlyWire Submitter and enter the usernames that you utilize, so it knows which accounts to process. These items will automatically be deleted if they are not picked up within 7 days.”
I am using the Version: 3.0.7 and would like to know where to enter my username and password.
I`ve tried the edit part, this look confusing to me, I don`t want to mess this up.
Brother.. I love and thanks to your plugin but there is problems
please update your plugin, i beg you.. i got duplicate articles 2-6x/article and now please you imagen if i were have 3 articles and in future article will duplicate 18 articles :( its very bad. i got banned from backlink site because this. can you fix that please… and my wordpress is Version 2.9.2
Look your foward
Please give more information about the problem.
Well, I’ve fixed this problem myself, you ain’t reply my comment though.
In 238th line, it only has “<?"
Obviously, it lacks of "php".
Maybe my php configuration is more strict to this. lol
Thanks for the warning. Problem was
fixed in new version.
I have no luck when install wp onlywire auto poster plugin.
it tells me that:
Parse error: syntax error, unexpected ‘}’ in /home/www/xxx/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php on line 306
Can you tell me how to fix it?
My wordpress is 2.9.2.
I forget to mention that wp onlywire auto poster plugin is also the latest version 3.0.6. THis problem also happened to 3.0.3.
is it probably conflict between other plugins?
Çok başarılı bir çalışma.
Tebrikler.
Teşekkürler.
Does it work for wordpress pages as well? In my site I use pages mostly. So can this plugin syndicates my pages?
Is this the same as Onlywire Multi Autosubmitter? if not what are the differnce in features?
Thanks
WP Only Wire Auto Poster is a good alternative for OW submissions. It provides some useful functionalites such as logging and reporting of submissions. Also it does not need the cURL library installed on server. The plugin frequently updated for new feauteres.
Hi,
I am getting the following error when I post new or Edit:
Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /home/alphaele/public_html/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php on line 122
Warning: file_get_contents(http://…@www.onlywire.com/api/add?url=http%3A%2F%2Falphaelectronicsstore.com%2F2010%2F04%2Faliens-versus-predator-gold%2F&title=Aliens+Versus+Predator+Gold&tags=Aliens+Gold+Predator+Versus+&comments=Article+by+++at+2010-04-05+05%3A03%3A54%0A+Categorized+in+Video+Games%2C) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/alphaele/public_html/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php on line 122
Warning: Cannot modify header information – headers already sent by (output started at /home/alphaele/public_html/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php:122) in /home/alphaele/public_html/wp-includes/pluggable.php on line 868
This same error is coming for all my other domains. Can I have a solution to this error.
Thanks & Regards
Srikanth
Hi Sirikanth,
This problem was originated from your server’s configuration. Your admin was disabled the using of file_get_contents() function of PHP.
I will try to find an alternative method for the function in next version which bypass php security limitiations.
Best regards.
I tried to tolerate your stuation in new version (v3.0.6). Please check out.
i have installed this plugin but I don’t know what’s username and password so what do I do to get username and password?help and show me to get username and password.Thank You very much for your plugin and attention
by.zaindevin
You should signup for OnlyWire to get un/pw. Please check this out: http://www.onlywire.com
tekrardan merhaba hocam
eklenti hakkinda bir sorum olacakti
eklentiyi kurup onlywire hesap bilgilerimizi girdikten sonra yapacak baska bisey yok demi ? cünkü yeni ekledigim konularin digg.com a gidip gitmediginden süpheliyim de en son 23 martta imleme yapilmis digg e ama benim site guncel anlamis degilim
Plugin aslında bir aracı post ları OnlyWire’a elle girmekten kurtarıyor. OnlyWire bazi siteler (Digg’den emin degilim) CAPTCHA kullangidi icin bunları elle gondermenizi istiyor ya da premium hesap satin almanizi. Post’larin nerelere neden gönderilmediğini görmek için OW’daki hesabınıza giriş yapmanızı öneririm.
Çox gözel bir plugindir. Teşekkürler. Birce sualım var: Men wprobot plugininden istifade edirem. Ancaq auto post zamanı published olunmuş postlarda bu plugin onlywire`ye submit etmir, amma adi halda özüm bir post yazanda edir. Nece etmek olar kiç hem de auto post`lar zamanı da onlywire`ye submit etsin? Çox sağolun.
Sorunuzla ilgilenecegim.
When new post is created, I get this error:
Warning: file_get_contents(http://user@domain.com:pass@www.onlywire.com/api/add?url=http%3A%2F%2Fwww.domain.com….)
[function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 401 Authorization Required in /…/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php on line 122
That’s the line when the plugin calls file_get_contents(url)
Email and password set in plugin screen are correct, double checked.
Please help.
Thanks.
Hi Vero,
Its look like an authentication error (401) arise from Onlywire. I think that you sould use only login name, not email address otherwise the request url has two ‘@’ char. Please check this (try your OW login name) and inform me again.
merhabalar sorun veriyor wordpress 2.9.2 sürümü
success
Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php:112) in /home/xxx/public_html/wp-includes/pluggable.php on line 868
Bildiriminiz için teşekkür ederim. Gözden kaçmış bir noktayı sayenizde düzeltme şansı buldum. Lütfen eklentiyi 3.0.5′e güncelleyin.
Hi, I would like to ask what is the different between your onlywire autoposter plugin with onlywire multi autosubmitter from http://lunaticstudios.com/software/wp-onlywire-multisubmit/ .
Franky speaking, I’m using onlywire multi autosubmitter. I wonder if yours is better or not.
Thanks.
WP Only Wire Auto Poster is a good alternative for OW submissions. It provides some useful functionalites such as logging and reporting of submissions. The plugin frequently updated for new feauteres.
When i try to download the plugin. it says page not found.
Admin can you fix this.
I checked the link, there is no problem. Please check your settings and try again.
I am preparing for my 2nd interview later in the afternoon and this site really helped me a lot! ,
Hello. Nice work on the plugin, but I am receiving errors when trying to update a post.
I first updated a post, and was told by the plugin that the onlywire submission had failed. There were no tags on the post and I figured that this was why that happened.
So, I went back into the post and entered some tags. Upon hitting the ‘Update’ button in wordpress, i was given the following error:
Warning: Cannot modify header information – headers already sent by (output started at/public_html/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php:112)
Can u please tell me what I might be doing wrong, or if I have to set up permissions for certian files/folders?
Thanks,
Darian
Hi Darian,
I’m checking your report and related situations.
son güncellemeyi yaptıktan sonra konuyu yayınmla dedikten sonra
http://xxxx:xxxx@www.onlywire.com/api/add?url=http%3A%2F%2Fwww.vizyonkolik.com%2Fadamim-benim-%25e2%2580%2593-i-love-you-man-divx-izle.html&title=Adam%C4%B1m+Benim+%E2%80%93+I+Love+You%2C+Man&tags=2009+Adam%C4%B1m+Benim+Tek+link+Divx+indir+&comments=Article+by+++at+2009-09-11+13%3A46%3A27+Categorized+in+Filmler%2C+Komedi+Divx+Filmler%2C
Warning: Cannot modify header information – headers already sent by (output started at /home/burakco/public_html/vizyonkolik.com/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php:102) in /home/burakco/public_html/vizyonkolik.com/wp-includes/pluggable.php on line 865
Bildiriminiz için teşekkürler, yeni versiyonda sorun düzeltildi.
dostum bu seferda
success
Warning: Cannot modify header information – headers already sent by (output started at /vizyonkolik.com/wp-content/plugins/wp-onlywire-auto-poster/onlywire-auto-poster.php:112) in /vizyonkolik.com/wp-includes/pluggable.php on line 865
şeklinde bir hata veriyor???
Lütfen tekrar güncelleyin.
just install the plugin and, Enter your username and password are OnlyWire. Each new run to me (publish) automatically sent. Moreover, previously sent / article also failed to send the settings from plugin you can see
sanırım bağlantı ölmüş !
Bağlantıyı düzelttim buradan veya http://wordpress.org/extend/plugins/wp-onlywire-auto-poster/ adresinden artık indirebilirsiniz.
Can I use the plugin with the free account of OnlyWire or do I need the payed account?
Whats the difference to the plugin of Lionstarr?
Yes, you can use with free account or payed account.
Differences from lionstar’s are below:
2009-07-23 – v3.0a
- Also using comment field which defined as tags and comment by OnlyWire API
- Comment field contains author name, post date, excerpt and post categorie(s)
- Not using worpress options table to store onlywire settings
- Submit logs saving to database table for listing
2009-07-29 – v3.0b
- OnylWire return values of background transaction intercapted and stored database table and listed.
- Not submitting already submitted posts to OnlyWire
2009-08-19 – v3.0.1
- Function of reward button fixed.
Hocam wp 2.8.4 sürmü var bende eklentiyi kurdum aktifleştirdim kullanıcı adımı ve şifreyi girip kaydettim fakat nedense hiç bir yazım gönderimiyor alt kısımda listelenme yapıyor karşısında failed yazıyor sorun neden kaynaklanıyor acaba…yoksa sitede herhangi bir yer bir kod falanmı eklememiz gerekiyor yardımlarınız ve ilginiz için teşekkürler…
Sayfanın altındaki “The last 30 transaction logs” kısmınına ait listeyi veya ekran görüntüsünü gönderirseniz yardımcı olmaya çalışırım. 2.8.4′de kullanıyorum ben de bir sorun tespit etmedim henuz.
How does it handle tagging? The lionstar plugin did noy pull tags from the post. Does this one?
You must add tags to your post at “New post” page of WP. Plugin doesnt generate tags from your post’s content, only use defined tags.
Is it a reply for your question?
re: Schumacher
Hata bildiriminiz için teşekkür ederim. Eklenti de bazı ufak düzeltmeler yapıyorum, kısa süre içinde yayınlayacağım.
Kullandığım sistemin belki yardımı olur…
Wordpress 2.6.5
Akismet
All in One SEO Pack
Disable Revisions and Autosave
Google XML Sitemaps
Yet Another Related Posts Plugin
WP-PageNavi
Plugini aktifleştirip OnlyWire hesap bilgilerini girdikden sonra acaba bloğumuza kod ekleme zorunluluğu varmı?
Hayır sadece plugin’in yükleyip, onlywire kullanıcı adınızı ve parolanızı giriyorsunuz. Her yeni yazınızı yayınladığınızda (publish) otomatikman gönderiliyor. Ayrıca daha önce gönderilen / gönderilemeyen yazılarınızı da eklentinin ayarlar sayfasından görebiliyorsunuz.
Plugini aktifleştirip denemeler yaptım fakat sizin 404 hata sayfanıza yönlendirdi..Şu an plugin pasif.
http://www.tankado.com/wordpress-icin-404-sayfa-bulunamadi-hatalarini-yakalamak-raporlamak
http://i28.tinypic.com/149pmxe.jpg
çok faydalı bir eklenti, teşekkürler..
teşekkür ederim böyle güzel bir eklenti kazandırdığın için kurdum şimdilik uyarı verdi listeleme yaparken daha sonra tekrar deneyin diye
Uyarı mesajını yazarsanız yardımcı olmaya çalışayım. Hatta ekran görüntüsü olabilirse daha yararlı olur benim için. Teşekkür ederim ilginiz için.