Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - e-midyat

Pages: [1]
1
Anlatımı bekiyoruz inşaallah...

2
bende bu hatayı verdi

Parse error: syntax error, unexpected T_STRING in /home/emidyatc/public_html/galeri/details.php on line 574

3
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...

4
ALLAH razı olsun kardesim tam istediğim gib oluyor birde yorum kısmını hallederen supe rolur...

5
Merhaba arkadaslar gercekten boyle bir scripte turkce destek bulmak cok guzel ve insanı mutlu eden guru veren bişey.
Sizlerden isteğim arkadaslar brn bu galeriyi uye olmadan kullanmak istiyorum.AMa resimleride sadece ben ekliyim yorumlar yazılsın ancak ben onay vereyim.Bu hale gelebilrimi simdiden destekleriniz için tesekku ederim

6
Temalar / Re: 4images tema
« on: July 29, 2008, 10:04:35 AM »
Çok tesekkurler...

7
Language Packs / Re: [Language] turkish
« on: July 29, 2008, 09:55:53 AM »
Çok tesekkurler arkadaslar ...

8
Turkish / Türkçe / Re: Full Modifiyeli 4images Scripti
« on: February 02, 2008, 10:41:30 AM »
Herhalde yalan oldu...

9
Language Packs / Re: [Language] turkish
« on: June 26, 2007, 04:00:34 PM »
bende kurmaya calsıtım uslupire kardesimiizn verdiği linkten indirdim

ancak install de hata veriyor mysql baglantısı olmuyor galiba!

www.e-midyat.com/gallery/install.php dedim bilgileri girdim enterleyince

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'serhat_gallery'@'localhost' (using password: YES) in /home/serhat/public_html/gallery/includes/db_mysql.php on line 39

An unexpected error occured. Please try again later.

bu hatayı veriyor!

10
Language Packs / Re: [Language] turkish
« on: January 19, 2007, 09:34:53 PM »
Arkadaslar su 4image nin bi rturkce destek sitesi olsaydı ne iyi olurdu yawss! Mesela ben sadece temayı değiştirebildim hiç bir mod kuramıyorum falan :cry: Yardımcı olursanız mutlu olur sizede dua ederiz...

Pages: [1]