Author Topic: Sitenize mesaj kutusu yani shoutbox eklemek isterseniz buyrun.  (Read 27770 times)

0 Members and 1 Guest are viewing this topic.

Offline sanko86

  • Sr. Member
  • ****
  • Posts: 310
    • View Profile
    • Elemegim
http://www.cbox.ws/

Bu adreste hazır bir shoutbox var üye olup verilen kodu sitenize yerleştirin.Ziyaretçileriniz artık anlık konuşmalar yapabilecekler.
İsteğiniz mesajları silin isterseniz bazı kişilerin mesaj yazmasını engelleyin.

Belki işinize yarar ben www.elemegim.info adresimde kullanıyorum;)
Web site:http://www.anlatiyoruz.com
Hayat zorluklarla doludur.Ama en zoru insanın insana düşmanlığıdır.

Offline DilnüvaZ

  • Moderator
  • Hero Member
  • *****
  • Posts: 527
  • Gönül Okşayıcı
    • View Profile
    • Nuvanda Resimlere Dair Ne Varsa
Re: Sitenize mesaj kutusu yani shoutbox eklemek isterseniz buyrun.
« Reply #1 on: April 29, 2008, 11:32:38 AM »
saol hasan ancak 4imagesın kendı modıfesını kullanmak daha yerınde olur sanırım http://www.4homepages.de/forum/index.php?topic=10545.0 yakında anlatırım ınş... dua edin de biraz iyileşeyim  :oops: bir türlü toparlayamadım kendimi   :cry:

Offline sanko86

  • Sr. Member
  • ****
  • Posts: 310
    • View Profile
    • Elemegim
Re: Sitenize mesaj kutusu yani shoutbox eklemek isterseniz buyrun.
« Reply #2 on: April 29, 2008, 01:04:51 PM »
Bende kendi eklentisi kurmak istedim hatta link ölü yardımcı olun dedim fakay yanıt gelmedi sende varmı bu eklentinin dosyaları o konudaki link ölü
Web site:http://www.anlatiyoruz.com
Hayat zorluklarla doludur.Ama en zoru insanın insana düşmanlığıdır.

Offline e-midyat

  • Newbie
  • *
  • Posts: 10
    • View Profile
Re: Sitenize mesaj kutusu yani shoutbox eklemek isterseniz buyrun.
« Reply #3 on: July 31, 2008, 12:04:42 PM »
Versiyon hakkında
#Version 1.1.
-Çeşitli Güvenlik ayarları(TheOracle'ye özel teşekkürler)
-Yeni editör motoru


----------------------------------------
Özellikerli:
-Otomatik Kurulum
-Admin Paneli
 -Aktifleştir/aktifleştirme eklentisi
 -Misafirlere yazma izni
 -BBcode seçeneği
 -HTML seçeneği
-Değiştirilebilir tema
-Kullanıcılar kendi yazdıklarını değiştirebilirler
-Kullanıcılar kendi mesajlarını silebilirler
Dil Desteği:
-İngilizce
-İspanyolca
-Almanca
-Türkçe
Not:Başka dile çeviren arkadaşlar bana özel mesajla bildirsin onjuda buraya eklerim.
Download: http://www.f1do.york-networks.com/gallery/shoutboxmod/
Sample site: http://www.f1do.york-networks.com/gallery/
Admin user:-username: test
                 -password: test
----------------------------------------
Yüklenecek Yeni Dosyalar:
/shout_editor.php
/includes/shout.php
/admin/plugins/shoutbox_admin.php
/templates/your_template/shout_bit.html
/templates/your_template/shout_form.html
/templates/your_template/shout_editor.html

----------------------------------------
Düzenlenecek Dosyalar:
/includes/constants.php
/includes/page_header.php
/lang/your_language/main.php
/lang/your_language/admin.php
/templates/your_template/style.css
/templates/your_template/header.html
(optional)/templates/your_template/home.html
(optional)/templates/your_template/categories.html
(optional)/templates/your_template/details.html
(optional)/templates/your_template/lightbox.html
(optional)/templates/your_template/member.html

--------------------------------------------
Kurulum
1 Düzenlenecek Dosya
1.1 açın /includes/page_header.php
Bulun
Kod
//-----------------------------------------------------
//--- User Box ----------------------------------------
//-----------------------------------------------------

Öncesine Ekleyin
kod
//-----------------------------------------------------
//--- Shoutbox ----------------------------------------
//-----------------------------------------------------

include (ROOT_PATH.'includes/shout.php');

1.2 açın /templates/sizin temanız/style.css
Bulun
kod
/*--Categories------------------------------------------------*/

Öncesin ekleyin
/*--Shoutbox--------------------------------------------------*/
.shouts {
border: 1px;
border-style:solid;
border-color: #004C75;
height: 120px;
width: 148px;
padding: 0px;
overflow: auto;
}

.shoutinput {
  background-color: #FFFFFF;
  font-family: Tahoma,Verdana,Arial,Helvetica,sans-serif;
  color: #0f5475;
  font-size: 11px;
  WIDTH: 130px;
}

.shouttextarea {
  font-family: Tahoma,Verdana,Arial,Helvetica,sans-serif;
  color: #0f5475;
  font-size: 11px;
}

1.3 açın /templates/sizin temanız/header.html

Bulun
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

Sonrasına ekleyin
function popup(mylink, windowname) {
    if (! window.focus)return true;
      var href;
    if (typeof(mylink) == 'string')
      href=mylink;
    else
      href=mylink.href;
    window.open(href, windowname, 'width=170,height=240,scrollbars=no');
    return false;
  }

Açın /includes/constants.php
Kodu Bulun

define('WORDMATCH_TABLE', $table_prefix.'wordmatch');

Sonrasına ekleyin
KOd
define('SHOUTBOX_TABLE', $table_prefix.'shoutbox');

2 Dil Biçimi

2.1 açın /lang/your_language/main.php

Kodu Bulun
?>

Öncesine ekleyin
//-----------------------------------------------------
//--- Shoutbox ----------------------------------------
//-----------------------------------------------------
$lang['shoutbox'] = "Sohbet Kutusu";
$lang['sh_e_nouser'] = "Lütfen Bir İsim Yazın.";
$lang['sh_e_nomessage'] = "Lütfen Bir Mesaj Yazın.";
$lang['sh_e_usrlgth'] = "Daha Kısa Bir İsim Girin ".$config['sh_usr_lgth']." Karakterler.";
$lang['sh_e_msglgth'] = "Daha Kısa Bir Mesaj Girin ".$config['sh_msg_lgth']." words.";
$lang['sh_e_inactive'] = "Sorry, the shoutbox is disabled for the timebeing.";
$lang['sh_e_register'] = "Please register to use the shoutbox";
$lang['sh_name'] = "İsim:";
$lang['sh_message'] = "Mesaj:";
$lang['sh_edit'] = "Düzelt";
$lang['sh_edited'] = "Shout Edited";
$lang['sh_delete'] = "Sil";
$lang['sh_ask_delete'] = "Delete Shout?";
$lang['sh_deleted'] = "The shout was deleted";
$lang['sh_close'] = "[Çıkış]";

3 Template configuration

To show The shoutbox all you have to do is insert the code where you want the shoutbox to be. If you put it right after "{endif random_image}" it will look like the sample site. You may edit this code to suit your needs, you can also edit the shout_bit.html and shout_form.html.
I have tried it in home.html, categories.html, details.html, lightbox.html and member.html. I also tried it in the header.html.
One tip: remember to make the width of the table inside the <div> smaller than the width of the <div>(editable in style.css), so that the bottom scrolling bar doesnt appear.


Code:
<!-- Shoutbox Begin -->
  <table width="148" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td class="head2" height="20"> <img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />{lang_shoutbox}</td>
    </tr>
    <tr>
      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
      </tr>
      <tr>
        <td>
         <div class="shouts">
          <table cellpadding="0" cellspacing="0" width="130">
        {shoutings}
        </table>
          </div>
      </td>
    </tr>
    <tr>
     <td align="center" class="row1">
     {shout_form}
     </td>
   </tr>
   <tr>
     <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
   </tr>
 </table>
<!-- Shoutbox End -->
4 Finishing up
Save and upload all files to their corresponding folder.Now login and go to the Control Panel. In the left, under PlugIns, there should be a link: "Shoutbox Admin". There, you have the configuration options, edit them to your needs and click in "Install Shoutbox". Now the settings have been saved, and the shoutbox table has been created.

original mesaj http://www.4homepages.de/forum/index.php?topic=10545.0  message by f1do

Not:Ben bu kadarını cevirebildim inşaallah gerisin siz cevirirseniz supe rolur arkadaslar...