Thank-O-Matic Türkçe

Started by Yağız..., October 12, 2007, 07:23:17 AM

Previous topic - Next topic

albayrak

tşkler cakal93 en kısa sürede deneyip sonucu yazacagım
[nofollow]

mersindost

Quote from: cakal93 on November 04, 2007, 01:59:49 PM


@mersindost
Tabi.Hangi Top10'u kullaniyorsun?

Hiçbirini  8) Şart degilki top 10 kullanmak.Herhangi biryerde kullanırım. Degilmi  ::)
I Am Simple Machines Hero, Because I LOVE Simple Machines

suleymanoglak

#22
modu yukledim ama butonlar neden cikmadi anlamadim bi yardim etseniz resimlerde image klasorunde yani problem yok gibi default kullaniyorum

bir hata meydana geldi
'showThankYouPosts' Teması Yüklenemiyor.
diye bir hata veriyor

uzun zamandirda bu modla ugrasiyorum ama nedense olmadi

duzeltme  : sorun cozuldu

Yağız...

#23
@suleymanoglak
Admin > Kategoriler > Bölüm Adi > Degistir'den aktif etmelisin.

@mersindost
Bu kodlari BoardIndex.php'de Top10 eklerken ekledigin yere koy:
//Load Top Thank-O-Matic Stats :)
$request = db_query("
SELECT ID_MEMBER, realName, thank_you_post_became, thank_you_post_made
FROM {$db_prefix}members as mem
ORDER BY thank_you_post_made DESC
LIMIT 10", __FILE__, __LINE__);
$collectThxID_MEMBER = array();
$context['top_ThankOMatic_Given'] = array();
while ($row = mysql_fetch_assoc($request)) {
$context['top_ThankOMatic_Given'][] = array(
'id' => $row['ID_MEMBER'],
'name' => $row['realName'],
'href' => $scripturl . '?action=profile;u=' . $row['ID_MEMBER'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['ID_MEMBER'] . '" title="'. $txt['thank_you_post_thx_display'] .' '. $txt['thank_you_post_made_display'] . '">' . $row['realName'] . '</a>',
'thank_you_post_became' => $row['thank_you_post_became'],
'thank_you_post_made' => $row['thank_you_post_made']
);

$collectThxID_MEMBER[$row['ID_MEMBER']] = $row['ID_MEMBER'];
}
mysql_free_result($request);

$request = db_query("
SELECT ID_MEMBER, realName, thank_you_post_became, thank_you_post_made
FROM {$db_prefix}members
ORDER BY thank_you_post_became DESC
LIMIT 10", __FILE__, __LINE__);
$context['top_ThankOMatic_Receive'] = array();
while ($row = mysql_fetch_assoc($request)) {
$context['top_ThankOMatic_Receive'][] = array(
'id' => $row['ID_MEMBER'],
'name' => $row['realName'],
'href' => $scripturl . '?action=profile;u=' . $row['ID_MEMBER'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['ID_MEMBER'] . '" title="'. $txt['thank_you_post_thx_display'] .' '. $txt['thank_you_post_became_display'] . '">' . $row['realName'] . '</a>',
'thank_you_post_became' => $row['thank_you_post_became'],
'thank_you_post_made' => $row['thank_you_post_made']
);

$collectThxID_MEMBER[$row['ID_MEMBER']] = $row['ID_MEMBER'];
}
mysql_free_result($request);

//Okay Fix the colors for the Thank You Post :)
if(!empty($collectThxID_MEMBER) && !empty($modSettings['thankYouPostColors']) && empty($modSettings['MemberColorStats'])) {
global $sourcedir, $color_profile;

//Okay load the colors and add them :)
require_once($sourcedir.'/ThankYouPost.php');
thank_you_post_loadColors($collectThxID_MEMBER);

//Hoho let's color it the thx color way :D
if(!empty($context['top_ThankOMatic_Given'])) {
foreach($context['top_ThankOMatic_Given'] as $key => $items) {
//Okay Let's boogie woogie ;D
$profile = $color_profile[$items['id']];
if(!empty($profile['member_group_color']) || !empty($profile['post_group_color'])) {
$context['top_ThankOMatic_Given'][$key]['link'] = '<a href="' . $scripturl . '?action=profile;u=' . $profile['ID_MEMBER'] . '" title="'. $txt['thank_you_post_thx_display'] .' '. $txt['thank_you_post_made_display'] . '"><span style="color:'.(!empty($profile['member_group_color']) ? $profile['member_group_color'] : $profile['post_group_color']).';">' . $profile['realName'] . '</span></a>';
}
}
}
if(!empty($context['top_ThankOMatic_Receive'])) {
foreach($context['top_ThankOMatic_Receive'] as $key => $items) {
//Okay Let's boogie woogie ;D
$profile = $color_profile[$items['id']];
if(!empty($profile['member_group_color']) || !empty($profile['post_group_color'])) {
$context['top_ThankOMatic_Receive'][$key]['link'] = '<a href="' . $scripturl . '?action=profile;u=' . $profile['ID_MEMBER'] . '" title="'. $txt['thank_you_post_thx_display'] .' '. $txt['thank_you_post_became_display'] . '"><span style="color:'.(!empty($profile['member_group_color']) ? $profile['member_group_color'] : $profile['post_group_color']).';">' . $profile['realName'] . '</span></a>';
}
}
}
}

// Cache the ones we found for a bit, just so we don't have to look again.
if ($temp !== $temp2)
cache_put_data('stats_total_time_members', $temp2, 480);


Bu koduda Top10'u ekledigin kodun yerine ekle:
// TOP10
echo '
    <table border="0" width="100%" cellspacing="1" cellpadding="2" class="bordercolor">
<tr>
<td width="100%" colspan="4" class="catbg" height="24">Tesekkur - Top 10</td>
</tr>
<tr class="titlebg">
<td width="50%"><font style="font-size: 8pt">Alinmis Tesekkür</font></td>
<td width="50%"><font style="font-size: 8pt">Verilmis Tesekkür</font></td>
</tr>
<tr class="windowbg2">
<td width="21%" valign="top">
    <table width="100%">
<tr>';
foreach ($context['top_ThankOMatic_Receive'] as $poster)
{echo '
<td width="60%" class="windowbg2" valign="top"><font style="font-size: 8pt">',$poster['link'], '</font></td>
<td width="40%" class="windowbg2" align="right" valign="top"><font style="font-size: 8pt">', $poster['thank_you_post_became'], '</font></td>
</tr>';
}echo '
    </table>
</td>
<td width="20%" valign="top">
    <table width="100%">
<tr>';
foreach ($context['top_ThankOMatic_Given'] as $poster)
{echo '
<td width="60%" class="windowbg2" valign="top"><font style="font-size: 8pt">',$poster['link'], '</font></td>
<td width="40%" class="windowbg2" align="right" valign="top"><font style="font-size: 8pt">', $poster['thank_you_post_made'], '</font></td>
</tr>';
}echo '
    </table>
</td>
</tr>
    </table>';

suleymanoglak

#24
bunlarida aynen yaptim ama forumun en ustune tesekkur top10 cikti

duzeltme : sorun cozuldu


suleymanoglak

#26
evet sonradan anladim mersindost icin oldugunu onu yapmadim manueli kurdum simdi tesekkur et cikti sorun kismen cozuldu ama diger uyelere de gorunmesi icin ne yapabilirim sadece admine gozukuyor
ve halen profilde tesekkur mesajlarina tikladigim zaman ayni hatayi veriyor

duzeltme : sorun cozuldu

Yağız...

Admin > Üye Izinleri'nden ayarlayabilirsin izinleri.

Diger hata icin Profile.template.php'deki degisiklikleri yap.

suleymanoglak

#28
yardimlarin icin tesekkurler cakal93
duzeltme : sorun cozuldu - nasilmi cozuldu aldigim ahatalari yazdim cakal93 arkadasimizin dediklerini aynen yaptim sorun kalmadi tekrar tesekkurler cakal93

albayrak

#29
Quote from: cakal93 on November 04, 2007, 01:59:49 PM
@albayrak
http://jmusic.ddo.jp/DIN1031/modparser/index.php?action=installMod&smfVersion=1.1.4&name=ThankOMatic119&theme [nofollow]
Buradakilerden sadece Display.template.php ve Profile.template.php'dekileri yapin.
add after => sonrasina ekle
add before => öncesine ekle
replace => degistir ;)

değerli arkadaşım cakal93 
dediklerinizi yaptım ve Thank-O-Matic Türkçe mod çalışıyor hemde çöl ateşi temasında ama birkaç küçük sorun var açıklayayım...
default temamda mesajların altında tşk edildigin görünüm :

Mesajiniza tesekkür eden üyeler:

albayrak
Bu mesaj icin, 1 üye tesekkür etti!


çöl ateşi  temamda mesajların altında tşk edildigin görünüm :

albayrak *

1
       :(

bunun sebebi neir ve birde üye profilinde (çöl ateşi temasında) bu aşağıda verdiklerim görünmemektedir:

Tesekkür Mesajlari
Ettiginiz Tesekkürler:    2
Aldiginiz Tesekkürler:    3


yardımlarınızı bekliyorum saygılarımla....
                                              albayrak

RİCA:   kusura bakmazsanız bir ricam daha var tşk butonlarını yazılan mesajın içerinine yani yazılan mesajın hemen altınada ekleye bilirmiyiz acaba  ;)
[nofollow]

Gang$ta

dostum tesekkürler.eline sağlık ancak;
thank o matic ayarlarına girdiğim zaman;

QuoteFatal error: Call to undefined function: modifythankyoupostsettings() in /home/bilader/public_html/forum/Sources/ModSettings.php on line 159

gibi bir hata veriyor.

150-170 satır arası:
),
),
);

// Select the right tab based on the sub action.
if (isset($context['admin_tabs']['tabs'][$context['sub_action']]))
$context['admin_tabs']['tabs'][$context['sub_action']]['is_selected'] = true;

// Call the right function for this sub-acton.
$subActions[$_REQUEST['sa']]();
}

// This function basically just redirects to the right save function.
function ModifyFeatureSettings2()
{
global $context, $txt, $scripturl, $modSettings, $sourcedir;

isAllowedTo('admin_forum');
loadLanguage('ModSettings');

// Quick session check...

Yağız...

#31
@Gang$ta
ModSettings.php'nin tümünü verebilir misin?

@albayrak
index.turkish.php dosyasinin en sonuna ekle( ?> kodundan önce ):
<add><![CDATA[
//Thank You text for the Thread :)
$txt['thank_you_link_beforecounter'] = 'Bu mesaj icin,';
$txt['thank_you_link_members'] = 'üyeler';
$txt['thank_you_link_member'] = 'üye';
$txt['thank_you_link_aftercounter'] = 'tesekkür etti!';
$txt['thank_you_is_locked'] = 'Tesekkür Kapali';
$txt['thank_you_post_post_b'] = 'Tesekkür Et';
$txt['thank_you_post_delete_b'] = 'Tesekkürü Sil';
$txt['thank_you_post_lock_b'] = 'Tesekkürü Kapat';
$txt['thank_you_post_open_b'] = 'Tesekkürü Ac';
$txt['thank_you_post_lock_all_b'] = 'Tüm Tesekkürleri Kapat';
$txt['thank_you_post_open_all_b'] = 'Tüm Tesekkürleri Ac';
$txt['remove_thank_you_post'] = 'Tesekkürü Kaldir';
$txt['followgiveathank'] = 'Mesajiniza tesekkür eden üyeler:';
$txt['thank_you_post_unlock_all'] = 'Tüm Tesekkür Mesajlarini Ac';
$txt['thankyoupostlist'] = 'Tesekkür Listesi';
$txt['thankyouposterrorinscript'] = 'Scriptte hata...Bu cok kötü!';
$txt['thank_you_post_thx_display'] = 'Tesekkür';
$txt['thank_you_post_made_display'] = 'Verilmis';
$txt['thank_you_post_became_display'] = 'Alinmis';

Profile.turkish.php dosyasinin en sonuna ekle(?> kodundan önce):
//Thank-O-Matic
$txt['thankyoutitle'] = 'Tesekkür Mesajlari';
$txt['thankyoupostmade'] = 'Ettiginiz Tesekkürler';
$txt['thankyoupostbecame'] = 'Aldiginiz Tesekkürler';

Gang$ta

<?php
/**********************************************************************************
* ModSettings.php                                                                 *
***********************************************************************************
* SMF: Simple Machines Forum                                                      *
* Open-Source Project Inspired by Zef Hemel ([email protected])                    *
* =============================================================================== *
* Software Version:           SMF 1.1                                             *
* Software by:                Simple Machines (http://www.simplemachines.org)     *
* Copyright 2006 by:          Simple Machines LLC (http://www.simplemachines.org) *
*           2001-2006 by:     Lewis Media (http://www.lewismedia.com)             *
* Support, News, Updates at:  http://www.simplemachines.org                       *
***********************************************************************************
* This program is free software; you may redistribute it and/or modify it under   *
* the terms of the provided license as published by Simple Machines LLC.          *
*                                                                                 *
* This program is distributed in the hope that it is and will be useful, but      *
* WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY    *
* or FITNESS FOR A PARTICULAR PURPOSE.                                            *
*                                                                                 *
* See the "license.txt" file for details of the Simple Machines license.          *
* The latest version can always be found at http://www.simplemachines.org.        *
**********************************************************************************/
if (!defined('SMF'))
die('Hacking attempt...');

/* This file is here to make it easier for installed mods to have settings
and options.  It uses the following functions:

void ModifyFeatureSettings()
// !!!

void ModifyFeatureSettings2()
// !!!

void ModifyBasicSettings()
// !!!

void ModifyLayoutSettings()
// !!!

void ModifyKarmaSettings()
// !!!

Adding new settings to the $modSettings array:
---------------------------------------------------------------------------
// !!!
*/

/* Adding options to one of the setting screens isn't hard.  The basic format for a checkbox is:
array('check', 'nameInModSettingsAndSQL'),

   And for a text box:
array('text', 'nameInModSettingsAndSQL')
   (NOTE: You have to add an entry for this at the bottom!)

   In these cases, it will look for $txt['nameInModSettingsAndSQL'] as the description,
   and $helptxt['nameInModSettingsAndSQL'] as the help popup description.

Here's a quick explanation of how to add a new item:

 * A text input box.  For textual values.
ie. array('text', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth',
&$txt['OptionalDescriptionOfTheOption'], 'OptionalReferenceToHelpAdmin'),

 * A text input box.  For numerical values.
ie. array('int', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth',
&$txt['OptionalDescriptionOfTheOption'], 'OptionalReferenceToHelpAdmin'),

 * A text input box.  For floating point values.
ie. array('float', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth',
&$txt['OptionalDescriptionOfTheOption'], 'OptionalReferenceToHelpAdmin'),

         * A large text input box. Used for textual values spanning multiple lines.
ie. array('large_text', 'nameInModSettingsAndSQL', 'OptionalNumberOfRows',
&$txt['OptionalDescriptionOfTheOption'], 'OptionalReferenceToHelpAdmin'),

 * A check box.  Either one or zero. (boolean)
ie. array('check', 'nameInModSettingsAndSQL', null, &$txt['descriptionOfTheOption'],
'OptionalReferenceToHelpAdmin'),

 * A selection box.  Used for the selection of something from a list.
ie. array('select', 'nameInModSettingsAndSQL', array('valueForSQL' => &$txt['displayedValue']),
&$txt['descriptionOfTheOption'], 'OptionalReferenceToHelpAdmin'),
Note that just saying array('first', 'second') will put 0 in the SQL for 'first'.

 * A password input box. Used for passwords, no less!
ie. array('password', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth',
&$txt['descriptionOfTheOption'], 'OptionalReferenceToHelpAdmin'),

For each option:
type (see above), variable name, size/possible values, description, helptext.
OR make type 'rule' for an empty string for a horizontal rule.
OR make type 'heading' with a string for a titled section. */

// This function passes control through to the relevant tab.
function ModifyFeatureSettings()
{
global $context$txt$scripturl$modSettings$sourcedir;

// You need to be an admin to edit settings!
isAllowedTo('admin_forum');

// All the admin bar, to make it right.
adminIndex('edit_mods_settings');
loadLanguage('Help');
loadLanguage('ModSettings');

// Will need the utility functions from here.
require_once($sourcedir '/ManageServer.php');

$context['page_title'] = $txt['modSettings_title'];
$context['sub_template'] = 'show_settings';

$subActions = array(
'basic' => 'ModifyBasicSettings',
'layout' => 'ModifyLayoutSettings',
'thankyoupost' => 'ModifyThankYouPostSettings',
'karma' => 'ModifyKarmaSettings',
);

// By default do the basic settings.
$_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'basic';
$context['sub_action'] = $_REQUEST['sa'];

// Load up all the tabs...
$context['admin_tabs'] = array(
'title' => &$txt['modSettings_title'],
'help' => 'modsettings',
'description' => $txt['smf3'],
'tabs' => array(
'basic' => array(
'title' => $txt['mods_cat_features'],
'href' => $scripturl '?action=featuresettings;sa=basic;sesc=' $context['session_id'],
),
'layout' => array(
'title' => $txt['mods_cat_layout'],
'href' => $scripturl '?action=featuresettings;sa=layout;sesc=' $context['session_id'],
),

'thankyoupost' => array(
'title' => $txt['thankyouposttitle'],
'href' => $scripturl '?action=featuresettings;sa=thankyoupost;sesc=' $context['session_id'],
),

'karma' => array(
'title' => $txt['smf293'],
'href' => $scripturl '?action=featuresettings;sa=karma;sesc=' $context['session_id'],
'is_last' => true,
),
),
);

// Select the right tab based on the sub action.
if (isset($context['admin_tabs']['tabs'][$context['sub_action']]))
$context['admin_tabs']['tabs'][$context['sub_action']]['is_selected'] = true;

// Call the right function for this sub-acton.
$subActions[$_REQUEST['sa']]();
}

// This function basically just redirects to the right save function.
function ModifyFeatureSettings2()
{
global $context$txt$scripturl$modSettings$sourcedir;

isAllowedTo('admin_forum');
loadLanguage('ModSettings');

// Quick session check...
checkSession();

require_once($sourcedir '/ManageServer.php');

$subActions = array(
'basic' => 'ModifyBasicSettings',
'layout' => 'ModifyLayoutSettings',
'karma' => 'ModifyKarmaSettings',
);

// Default to core (I assume)
$_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'basic';

// Actually call the saving function.
$subActions[$_REQUEST['sa']]();
}

function 
ModifyBasicSettings()
{
global $txt$scripturl$context$settings$sc$modSettings;

$config_vars = array(
// Big Options... polls, sticky, bbc....
array('select''pollMode', array(&$txt['smf34'], &$txt['smf32'], &$txt['smf33'])),
'',
// Basic stuff, user languages, titles, flash, permissions...
array('check''allow_guestAccess'),
array('check''userLanguage'),
array('check''allow_editDisplayName'),
array('check''allow_hideOnline'),
array('check''allow_hideEmail'),
array('check''guest_hideContacts'),
array('check''titlesEnable'),
array('check''enable_buddylist'),
array('text''default_personalText'),
array('int''max_signatureLength'),
'',
// Stats, compression, cookies.... server type stuff.
array('text''time_format'),
array('select''number_format', array('1234.00' => '1234.00''1,234.00' => '1,234.00''1.234,00' => '1.234,00''1 234,00' => '1 234,00''1234,00' => '1234,00')),
array('float''time_offset'),
array('int''failed_login_threshold'),
array('int''lastActive'),
array('check''trackStats'),
array('check''hitStats'),
array('check''enableErrorLogging'),
array('check''securityDisable'),
'',
// Reactive on email, and approve on delete
array('check''send_validation_onChange'),
array('check''approveAccountDeletion'),
'',
// Option-ish things... miscellaneous sorta.
array('check''allow_disableAnnounce'),
array('check''disallow_sendBody'),
array('check''modlog_enabled'),
array('check''queryless_urls'),
'',
// Width/Height image reduction.
array('int''max_image_width'),
array('int''max_image_height'),
'',
// Reporting of personal messages?
array('check''enableReportPM'),
);

// Saving?
if (isset($_GET['save']))
{
// Fix PM settings.
$_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour'];
$save_vars $config_vars;
$save_vars[] = array('text''pm_spam_settings');

saveDBSettings($save_vars);

writeLog();
redirectexit('action=featuresettings;sa=basic');
}

// Hack for PM spam settings.
list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(','$modSettings['pm_spam_settings']);
$config_vars[] = array('int''max_pm_recipients');
$config_vars[] = array('int''pm_posts_verification');
$config_vars[] = array('int''pm_posts_per_hour');

$context['post_url'] = $scripturl '?action=featuresettings2;save;sa=basic';
$context['settings_title'] = $txt['mods_cat_features'];

prepareDBSettingContext($config_vars);
}

function 
ModifyLayoutSettings()
{
global $txt$scripturl$context$settings$sc;

$config_vars = array(
// Compact pages?
array('check''compactTopicPagesEnable'),
array('int''compactTopicPagesContiguous'null$txt['smf235'] . '<div class="smalltext">' str_replace(' ''&nbsp;''"3" ' $txt['smf236'] . ': <b>1 ... 4 [5] 6 ... 9</b>') . '<br />' str_replace(' ''&nbsp;''"5" ' $txt['smf236'] . ': <b>1 ... 3 4 [5] 6 7 ... 9</b>') . '</div>'),
'',
// Stuff that just is everywhere - today, search, online, etc.
array('select''todayMod', array(&$txt['smf290'], &$txt['smf291'], &$txt['smf292'])),
array('check''topbottomEnable'),
array('check''onlineEnable'),
array('check''enableVBStyleLogin'),
'',
// Pagination stuff.
array('int''defaultMaxMembers'),
'',
// This is like debugging sorta.
array('check''timeLoadPageEnable'),
array('check''disableHostnameLookup'),
'',
// Who's online.
array('check''who_enabled'),
);

// Saving?
if (isset($_GET['save']))
{
saveDBSettings($config_vars);
redirectexit('action=featuresettings;sa=layout');

loadUserSettings();
writeLog();
}

$context['post_url'] = $scripturl '?action=featuresettings2;save;sa=layout';
$context['settings_title'] = $txt['mods_cat_layout'];

prepareDBSettingContext($config_vars);
}

function 
ModifyKarmaSettings()
{
global $txt$scripturl$context$settings$sc;

$config_vars = array(
// Karma - On or off?
array('select''karmaMode'explode('|'$txt['smf64'])),
'',
// Who can do it.... and who is restricted by time limits?
array('int''karmaMinPosts'),
array('float''karmaWaitTime'),
array('check''karmaTimeRestrictAdmins'),
'',
// What does it look like?  [smite]?
array('text''karmaLabel'),
array('text''karmaApplaudLabel'),
array('text''karmaSmiteLabel'),
);

// Saving?
if (isset($_GET['save']))
{
saveDBSettings($config_vars);
redirectexit('action=featuresettings;sa=karma');
}

$context['post_url'] = $scripturl '?action=featuresettings2;save;sa=karma';
$context['settings_title'] = $txt['smf293'];

prepareDBSettingContext($config_vars);

function 
ModifyThankYouPostSettings()
{
global $txt$scripturl$context$settings$sc;

$config_vars = array(
// Thank You Post, some Stanadard settings :)
array('check''thankYouPostOnePerPost'),
array('check''thankYouPostColors'),
array('check''thankYouPostDisplayPage'),
'',
// Okay only the preview settings :)
array('check''thankYouPostPreview'),
array('int''thankYouPostPreviewHM'),
array('select''thankYouPostPreviewOrder'explode('|'$txt['thankYouPostPreviewOrderSelect'])),
'',
// Okay only the Full List settings :)
array('select''thankYouPostFullOrder'explode('|'$txt['thankYouPostFullOrderSelect'])),
'',
//Hmm it'S compatible to my Hide Mod... and have two options xD
array('check''thankYouPostUnhidePost'),
array('check''thankYouPostThxUnhideAll'),
array('check''thankYouPostDisableUnhide'),
);

// Saving?
if (isset($_GET['save']))
{
saveDBSettings($config_vars);
redirectexit('action=featuresettings;sa=thankyoupost');
}

$context['post_url'] = $scripturl '?action=featuresettings2;save;sa=thankyoupost';
$context['settings_title'] = $txt['thankyouposttitle'];

prepareDBSettingContext($config_vars);
}
}

?>

Yağız...

Forum Seceneklerine girdiginde hata veriyor mu?

Gang$ta

gerek kalmadı komple modu kaldırdım :)

albayrak

tşkler cakal93 ...
bu arada konu ile ilgisi yok ama bir sorum var smf de karma max 65535 olarak verilebiliniyor gördüğüm kadarı ile bunu nasıl 999999 yapabiliriz yardımcı olabilirseniz çok memnun olurum, benim forum dana önceden vb idi sonradan smf ye geçtim ve rep puanları çok yüksek olduğu için bir çok arkadaşın puanı yani karması üst sınırda yani 65535 bu sınırı nereden yükseltebiliriz ....
                                 saygılarımla...........
[nofollow]

albayrak

Quote from: albayrak on November 06, 2007, 05:36:33 PM
tşkler cakal93 ...
bu arada konu ile ilgisi yok ama bir sorum var smf de karma max 65535 olarak verilebiliniyor gördüğüm kadarı ile bunu nasıl 999999 yapabiliriz yardımcı olabilirseniz çok memnun olurum, benim forum dana önceden vb idi sonradan smf ye geçtim ve rep puanları çok yüksek olduğu için bir çok arkadaşın puanı yani karması üst sınırda yani 65535 bu sınırı nereden yükseltebiliriz ....
                                 saygılarımla...........


sorunumu halletik merak ede arkadaşlar
http://www.simplemachines.org/community/index.php?topic=205474.0
buradan bakabilirler...
tşkler www.simplemachines.org/ 
[nofollow]

Maxis

hangi sürümü indiricez 1.1.9 mu ?

Yağız...

En son sürüm hangisiyse onu.Yani 1.1.9

sanko

cakal kardeşim eline sağlık güzel oldu ancak default temada buton çıkıyor versatility tema kullanıyorum onda cıkmadı gif dosyasını atmama ragmen

Advertisement: