arkadaşlar kısaca anlatım bu modu kendim yaptım. şimdi 50.000 üye olduğunuzu düşünün ve bunların hepsi genelde profillerinden avatar yüklerken sizin ftp nize saklanacak olan seçeneği seçiyorlar ve 50.000 kişinin avatarı sizin ftp nize yüklenmiş oluyor her bir avartarın 100kb olduğunu düşünülürse baya bir yer kaplıcak demektir aşağıda yaptıklarım ile profilden yüklenen avatarlar imageshacke yükleniyor ondan alınan linkte kendi resmim var kısmına yükleniyor bu kadar ekteki verdiğim dosyayı kullandığınız tema klasörüne atmalısınız..
İmage Upload Dosyasını indirekran görüntüsü

profil.template.php ' yi aç
bunu bul:
// If the user is able to upload avatars to the server show them an upload box.
if (!empty($context['member']['avatar']['allow_upload']))
echo '
<tr>
<td valign="top" style="padding: 0 2px;">
<table width="100%" cellpadding="5" cellspacing="0" border="0"><tr>
<td valign="top" width="20" class="windowbg"><input type="radio" name="avatar_choice" id="avatar_choice_upload" value="upload"', ($context['member']['avatar']['choice'] == 'upload' ? ' checked="checked"' : ''), ' class="check" /></td>
<td valign="top" style="padding-left: 1ex;"><b><label for="avatar_choice_upload">', $txt['avatar_will_upload'], ':</label></b></td>
</tr></table>
</td>
<td valign="top">
', ($context['member']['avatar']['ID_ATTACH'] > 0 ? '<img src="' . $context['member']['avatar']['href'] . '" /><input type="hidden" name="ID_ATTACH" value="' . $context['member']['avatar']['ID_ATTACH'] . '" /><br /><br />' : ''), '
<input type="file" size="48" name="attachment" value="" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'upload\');" />
</td>
</tr>';
bununla değiştir:
// If the user is able to upload avatars to the server show them an upload box.
if (!empty($context['member']['avatar']['allow_upload']))
echo '
<tr>
<td valign="top" style="padding: 0 2px;">
<table width="100%" cellpadding="5" cellspacing="0" border="0"><tr>
<td valign="top" width="20" class="windowbg"></td>
<td valign="top><font face="Verdana" style="font-size: 7pt"><font color="#FF0000">Gözat</font> butonuna
tıkla resmini seç <font color="#FF0000">Resmi Yükle</font> butonuna tıkla
açılan pencerede en altta bulunan <font color="#FF0000">Direct Link to image</font>
kısmındaki linki kopyala <font color="#FF0000">Kendi Resmim Var</font>
kısmına yapıştır.</font></td></tr></table>
</td>
<td valign="top"><iframe src=" ', $settings['theme_url'], '/image-upload.htm" width="272" height="21" scrolling="no" name="İmage-upload" border="0" frameborder="0"></iframe>
</td>
</tr>';