![]() |
|
| |||||||
|
| | Seçenekler |
|
#1
| ||||||
| ||||||
[phpBB 3 MOD] Ajax ShoutBox (1.1.1)Eklenti: Ajax ShoutBox Sürüm: 1.1.1 Yazar: paul Açıklama: Sitenize sohbet kutusu eklemeye yarayan bir mod Uyumlu olduğu phpBB3 sürümleri: * phpBB 3.0 Özellikleri: * Sitenize sohbet kutusu eklemeye yarayan bir mod Dil dosyaları/eklemeleri: * İngilizce Lisans: GNU General Public License v2 Kurulum zorluğu: Kolay Kurulum süresi: 8 Dakika Dosya formatı: .zip Dosya indirme: Konu Miliotta tarafından (13-03-2008 Saat 03:36 ) değiştirilmiştir.. |
| Sponsorlar | |||
|
|
#4
| ||||||
| ||||||
| İndirdiğiniz zip'li dosyanın içerisinde yer alan root klasöründeki dosyaları yanlarında belirtilen dizinlere atınız: Kod: <copy>
<file from="root/install/functions.php" to="install/functions.php" />
<file from="root/install/index.php" to="install/index.php" />
<file from="root/ajax.php" to="ajax.php" />
<file from="root/js.php" to="js.php" />
<file from="root/static.js" to="static.js" />
<file from="root/adm/style/acp_shoutbox.html" to="adm/style/acp_shoutbox.html" />
<file from="root/includes/functions_shoutbox.php" to="includes/functions_shoutbox.php" />
<file from="root/acp/acp_shoutbox.php" to="includes/acp/acp_shoutbox.php" />
<file from="root/acp/info/acp_shoutbox.php" to="includes/acp/info/acp_shoutbox.php" />
<file from="root/language/en/mods/acp/permissions_ajax_shoutbox.php" to="language/en/mods/acp/permissions_ajax_shoutbox.php" />
<file from="root/language/en/mods/acp/mods/ajax_shoutbox.php" to="language/en/mods/acp/mods/ajax_shoutbox.php" />
<file from="root/language/en/mods/info_ajax_shoutbox.php" to="language/en/mods/info_ajax_shoutbox.php" />
<file from="root/language/en/mods/shout.php" to="language/en/mods/shout.php" />
<file from="root/styles/prosilver/template/shout_body.html" to="styles/prosilver/template/shout_body.html" />
</copy> Bul: Kod: /**
* Run cron-like action
* Real cron-based layer will be introduced in 3.2
*/
switch ($cron_type)
{ Kod: case 'as':
if (time() - $config['as_interval'] <= $config['last_as_run'])
{
break;
}
include_once($phpbb_root_path . 'includes/functions_shoutbox.' . $phpEx);
if ($use_shutdown_function)
{
register_shutdown_function('as_cron');
}
else
{
as_cron();
}
break; Bul: Kod: $user->setup('viewforum'); Kod: if (!function_exists('as_display'))
{
include($phpbb_root_path . 'includes/functions_shoutbox.' . $phpEx);
}
as_display(); Bul: Kod: ?> Kod: define('SHOUTBOX_TABLE', $table_prefix . 'shoutbox'); Bul: Kod: for (sel_start = 0; range_all.compareEndPoints('StartToStart', range) < 0; sel_start++) Kod: try
{ Kod: // we ignore the end value for IE, this is already dirty enough and we don't need it
caretPos.start = txtarea.sel_start;
caretPos.end = txtarea.sel_start; Kod: }
catch(e)
{
} Bul: Kod: <!-- IF NEWEST_USER -->
<h3>{L_STATISTICS}</h3>
<p>{TOTAL_POSTS} • {TOTAL_TOPICS} • {TOTAL_USERS} • {NEWEST_USER}</p>
<!-- ENDIF --> Kod: <!-- INCLUDE shout_body.html --> Bul: Kod: </head> Kod: <!-- IF S_DISPLAY_SHOUTBOX -->
<script type="text/javascript" src="{U_SHOUT_STATIC}"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
<script type="text/javascript" src="{U_SHOUT}"></script>
<!-- ENDIF -->
__________________ A B C Ç D E F G Ğ H I İ J K L M N O Ö P R S Ş T U Ü V Y Z |
Text Reklam: facebook ~
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | ||||||||||||||||||||||||||||||||||||||||||||||