Gönderen Konu: prettyurls  (Okunma sayısı 21766 defa)

0 Üye ve 4 Ziyaretçi konuyu incelemekte.

Çevrimdışı rihannafunclub.com

  • Yeni Üye
  • *
  • İleti: 212
  • PR ( Rep ) : 2
  • Cinsiyet: Bay
  • www.gencveteriner.com
    • Veteriner Hekimlerin Paylaşım Platformu
  • SMF Sürümü: 2.0
Manuel Kurulumu prettyurls
« Yanıtla #30 : SmfGrup Saati : 06 Şubat Çrş 2008, 22:55 »
mod kurulduğunda hata genelde hata vermez ama benım gıbı kaldırıp kurmaya çalışırsanız işiniz o zaman zor onun için ben zorlandım ama sizleri kolaylık olsun diye manuel kurulumunu anlatmaya karar verdim...Ben bizzat bu kurulumdan yaptım kimse çalışmıyor demesin :)

evet arkadaşlar başlıyorum

sources/display.php de bu kodu bul

Kod: [Seç]
// Load the proper template and/or sub template.
öncesine ekle

Kod: [Seç]
if (isset($context['pretty']['oldschoolquery']) && $modSettings['pretty_enable_filters'])
{
$url = 'topic=' . $topic . '.' . (isset($_REQUEST['start']) ? $_REQUEST['start'] : '0') . (isset($_REQUEST['prev_next']) ? ';prev_next=' . $_REQUEST['prev_next'] : '') . (isset($_REQUEST['topicseen']) ? ';topicseen' : '') . (isset($_REQUEST['all']) ? ';all' : '') . (isset($_REQUEST['viewResults']) ? ';viewResults' : '');
redirectexit($url, false, true);
}

sources/MessageIndex.php  bul

Kod: [Seç]
if (WIRELESS)
üstüne koy

Kod: [Seç]
if ((isset($context['pretty']['oldschoolquery']) || $_REQUEST['board'] != $context['pretty']['board_urls'][$board]) && $modSettings['pretty_enable_filters'])
{
$url = 'board=' . $board . '.' . (isset($_REQUEST['start']) ? $_REQUEST['start'] : '0') . (isset($_REQUEST['sort']) ? ';sort=' . $_REQUEST['sort'] : '');
redirectexit($url, false, true);
}

sources/QueryString.php dosyasında bu kodu bul

Kod: [Seç]
global $board, $topic, $boardurl, $scripturl, $modSettings;
bununla değiştir

Kod: [Seç]
function cleanRequest()
{
global $board, $topic, $boardurl, $scripturl, $modSettings, $context, $db_prefix;

aynı dosyada bu kodu bul

Kod: [Seç]
// Now make absolutely sure it's a number.
$board = (int) $_REQUEST['board'];


bununla değiştir

Kod: [Seç]
// Now make absolutely sure it's a number.
// Check for pretty board URLs too, and possibly redirect if oldschool queries were used.
if (is_numeric($_REQUEST['board']))
{
$board = (int) $_REQUEST['board'];
if (!isset($_REQUEST['pretty']))
$context['pretty']['oldschoolquery'] = true;
} else {
$pretty_board_lookup = unserialize($modSettings['pretty_board_lookup']);
$board = (int) isset($pretty_board_lookup[$_REQUEST['board']]) ? $pretty_board_lookup[$_REQUEST['board']] : 0;
}


aynı dosyada bu kodu bul

Kod: [Seç]
$topic = (int) $_REQUEST['topic'];
bununla değiştir


Kod: [Seç]
// Check for pretty topic URLs, and possibly redirect if oldschool queries were used.
if (is_numeric($_REQUEST['topic']))
{
$topic = (int) $_REQUEST['topic'];
if (!isset($_REQUEST['pretty']))
$context['pretty']['oldschoolquery'] = true;
} else {
$_REQUEST['topic'] = str_replace('\\', '', $_REQUEST['topic']);
$_REQUEST['topic'] = str_replace(''', "\'", $_REQUEST['topic']);
// Are we feeling lucky?
$query = db_query("
SELECT ID_TOPIC
FROM {$db_prefix}pretty_topic_urls
WHERE pretty_url = '$_REQUEST[topic]'
LIMIT 1", __FILE__, __LINE__);
// No? No topic?!
if (mysql_num_rows($query) == 0)
{
$topic = 0;
} else {
while ($row = mysql_fetch_assoc($query))
$topic = (int) $row['ID_TOPIC'];
}
mysql_free_result($query);

// That query should be counted separately
$context['pretty']['db_count']++;
}


sources/Subs-Boards.php dosyada bu kodu bul

Kod: [Seç]
function modifyBoard($board_id, &$boardOptions)
{
global $sourcedir, $cat_tree, $boards, $boardList, $modSettings, $db_prefix;

bunula değiş

Kod: [Seç]
function modifyBoard($board_id, &$boardOptions)
{
global $sourcedir, $cat_tree, $boards, $boardList, $modSettings, $db_prefix, $context;

aynı dosyada bu kodu bul

Kod: [Seç]
if (isset($boardOptions['move_to']))
reorderBoards();

bununla değiş

Kod: [Seç]
if (isset($boardOptions['move_to']))
reorderBoards();

// Update the pretty board URLs
if (isset($boardOptions['pretty_url']))
{
require_once($sourcedir . '/Subs-PrettyUrls.php');

// Get the current board URLs
$pretty_board_lookup = unserialize($modSettings['pretty_board_lookup']);
// Generate a new one
$pretty_url = generatePrettyUrl($boardOptions['pretty_url']);

// Can't be empty, can't be a number and can't be the same as another
if ($pretty_url == '' || is_numeric($pretty_url) || (isset($pretty_board_lookup[$pretty_url]) && $pretty_board_lookup[$pretty_url] != $board_id))
// Add suffix '-bboard_id' to the pretty url
$pretty_url .= ($pretty_url != '' ? '-b' : 'b') . $board_id;

// Save to the database
$context['pretty']['board_urls'][$board_id] = $pretty_url;
$pretty_board_lookup[$pretty_url] = $board_id;
updateSettings(array(
'pretty_board_lookup' => addslashes(serialize($pretty_board_lookup)),
'pretty_board_urls' => addslashes(serialize($context['pretty']['board_urls'])),
));

// Count that query!
$context['pretty']['db_count']++;
}

aynı dosyada bu kodu bul

Kod: [Seç]
// Change the board according to the given specifications.
bununla değiş

Kod: [Seç]
if (!isset($boardOptions['pretty_url']))
$boardOptions['pretty_url'] = $boardOptions['board_name'];

// Change the board according to the given specifications.

sources/Subs-Post.php dosyada alttaki kodu bul

Kod: [Seç]
function createPost(&$msgOptions, &$topicOptions, &$posterOptions)
{
global $db_prefix, $user_info, $ID_MEMBER, $txt, $modSettings;

bununla değiş

Kod: [Seç]
function createPost(&$msgOptions, &$topicOptions, &$posterOptions)
{
global $db_prefix, $user_info, $ID_MEMBER, $txt, $modSettings, $context, $sourcedir;

aynı dosyada bu kodu bul

Kod: [Seç]
// There's been a new topic AND a new post today.
bu kodla değiştir

Kod: [Seç]
// Generate the pretty URL of our exciting new topic
require_once($sourcedir . '/Subs-PrettyUrls.php');
$pretty_text = substr(generatePrettyUrl($msgOptions['subject']), 0, 80);

// Is the URL already there?
$query = db_query("
SELECT ID_TOPIC
FROM {$db_prefix}pretty_topic_urls
WHERE pretty_url = '$pretty_text'
LIMIT 1", __FILE__, __LINE__);
// If it's not unique we need to change it
$notunique = mysql_num_rows($query);
mysql_free_result($query);

// Can't be empty, can't be a number and can't be the same as another
if ($pretty_text == '' || is_numeric($pretty_text) || $notunique != 0)
// Add suffix '-tID_TOPIC' to the pretty url
$pretty_text = substr($pretty_text, 0, 70) . ($pretty_text != '' ? '-t' : 't') . $topicOptions['id'];

// Update the database
db_query("
REPLACE INTO {$db_prefix}pretty_topic_urls (ID_TOPIC, pretty_url)
VALUES (" . $topicOptions['id'] . ', "' . $pretty_text . '")', __FILE__, __LINE__);

// Count those queries!
$context['pretty']['db_count'] = $context['pretty']['db_count'] + 2;

// There's been a new topic AND a new post today.

forum/index.php alttaki kodu bul

Kod: [Seç]
// Clean the request variables, add slashes, etc.
cleanRequest();
$context = array();

bununla değiştirin

Kod: [Seç]
// Unserialize the array of pretty board URLs
$context = array('pretty' => array(
'board_urls' => unserialize($modSettings['pretty_board_urls']),
'db_count' => 0,
));
// Clean the request variables, add slashes, etc.
cleanRequest();

forum/SSI.php de kodu bulun

Kod: [Seç]
// Clean the request variables.
değiştirin..

Kod: [Seç]
// Unserialize the array of pretty board URLs
$context = array('pretty' => array(
'board_urls' => unserialize($modSettings['pretty_board_urls']),
'db_count' => 0,
));
// Clean the request variables.

sources/ManageErrors.php de kodu bulun

Kod: [Seç]
$context['sub_template'] = 'error_log';
değiştirin

Kod: [Seç]
$context['sub_template'] = 'error_log';

// Don't rewrite any URLs, we need these ones to remain exact!
$modSettings['pretty_enable_filters'] = false;

sources/ModSettings.php de kodu bulun

Kod: [Seç]
array('check', 'queryless_urls'),
alttaki kodla değiştirin

Kod: [Seç]
// Pretty URLs mod - disable the default queryless URLs
// array('check', 'queryless_urls'),

aynı dosyada bu kodu bulun

Kod: [Seç]
array('int', 'max_image_height'),
alttaki kodla değiştirin

Kod: [Seç]
array('int', 'max_image_height'),
'',
// Pretty URLs mod
array('text', 'pretty_root_url', 36),
array('check', 'pretty_enable_filters'),

sourcedir/News.php de kodu bulun

Kod: [Seç]
if ($xml_format == 'smf' || isset($_REQUEST['debug']))
bununla değiştirin

Kod: [Seç]
// Pretty URLs need to be rewritten
ob_start('ob_sessrewrite');

if ($xml_format == 'smf' || isset($_REQUEST['debug']))

sources/PackageGet.php dosyasında kodu bulun

Kod: [Seç]
if (getPackageInfo($url . $_REQUEST['package']) == false)
bununla değiştirin

Kod: [Seç]
if (getPackageInfo(canonicaliseUrl($url . $_REQUEST['package'])) == false)
aynı dosyada bu kodu bulun

Kod: [Seç]
$url . $_REQUEST['package']));

// Done!  Did we get this package automatically?

bununla değiştirin

Kod: [Seç]
canonicaliseUrl($url . $_REQUEST['package'])));

// Done!  Did we get this package automatically?

aynı dosyada

Kod: [Seç]
?>
bundan önce dosyanın en aşağısı bu kodu koyun

Kod: [Seç]
// Canonicalise a url
// http://au.php.net/manual/en/function.realpath.php#71334
function canonicaliseUrl($url)
{
$url = explode('/', $url);
$keys = array_keys($url, '..');

foreach($keys AS $keypos => $key)
array_splice($url, $key - ($keypos * 2 + 1), 2);

$url = implode('/', $url);
return str_replace('./', '', $url);
}

sources/QueryString.php bu kodu bulun

Kod: [Seç]
function ob_sessrewrite($buffer)
{
global $scripturl, $modSettings, $user_info, $context;

bununla değiştirin

Kod: [Seç]
function ob_sessrewrite($buffer)
{
global $scripturl, $modSettings, $user_info, $context, $db_prefix, $sourcedir, $txt, $time_start, $db_count;

aynı dosyada bu kodu bulun dosyanın en altında

Kod: [Seç]
// This should work even in 4.2.x, just not CGI without cgi.fix_pathinfo.
if (!empty($modSettings['queryless_urls']) && (!$context['server']['is_cgi'] || @ini_get('cgi.fix_pathinfo') == 1) && $context['server']['is_apache'])
{
// Let's do something special for session ids!
if (defined('SID') && SID != '')
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?(?:' . SID . ';)((?:board|topic)=[^#"]+?)(#[^"]*?)?"/e', "'\"' . \$scripturl . '/' . strtr('\$1', '&;=', '//,') . '.html?' . SID . '\$2\"'", $buffer);
else
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?((?:board|topic)=[^#"]+?)(#[^"]*?)?"/e', "'\"' . \$scripturl . '/' . strtr('\$1', '&;=', '//,') . '.html\$2\"'", $buffer);
}

// Return the changed buffer.
return $buffer;
}

bununla değiştirin

Kod: [Seç]
// Rewrite the buffer with Pretty URLs!
if ($modSettings['pretty_enable_filters'])
{
// Find all URLs in the buffer
$pattern = '~(<a[^>]+href=|<link[^>]+href=|<link>|<id>|<comments>|<guid>)(\"[^\"#]+|\'[^\'#]+|[^#<]+)~';
$crc_query = array();
$uncached_urls = array();
preg_match_all($pattern, $buffer, $matches, PREG_PATTERN_ORDER);
foreach ($matches[2] as $match)
{
// Rip out everything that shouldn't be cached
$match = preg_replace(array('~^[\"\']|PHPSESSID=[^;]+|sesc=[^;]+~', '~\"~', '~;+|=;~', '~\?;~', '~\?$|;$|=$~'), array('', '%22', ';', '?', ''), $match);
$crc = crc32($match);
$crc_query[] = $crc;
$uncached_urls[$crc] = array(
'url' => $match,
'crc' => $crc
);
}

// Procede only if there are actually URLs in the page
if (count($crc_query) != 0)
{
// Retrieve cached URLs
$context['pretty']['cached_urls'] = array();
$query = db_query("
SELECT url_crc, replacement
FROM {$db_prefix}pretty_urls_cache
WHERE url_crc IN (" . implode(', ', $crc_query) . ")
AND log_time > " . (time() - 86400), __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($query))
{
$context['pretty']['cached_urls'][$row['url_crc']] = $row['replacement'];
unset($uncached_urls[$row['url_crc']]);
}
mysql_free_result($query);

// If there are any uncached URLs, process them
if (count($uncached_urls) != 0)
{
// Run each filter callback function on each URL
$filter_callbacks = unserialize($modSettings['pretty_filter_callbacks']);
foreach ($filter_callbacks as $callback)
{
require_once($sourcedir . '/PrettyUrls-Filters.php');
$uncached_urls = call_user_func($callback, $uncached_urls);
}

// Fill the cached URLs array
$cache_data = array();
foreach ($uncached_urls as $crc => $url)
{
$url['replacement'] = isset($url['replacement']) ? $url['replacement'] : $url['url'];
$url['replacement'] = preg_replace(array('~\"~', '~;+|=;~', '~\?;~', '~\?$|;$|=$~'), array('%22', ';', '?', ''), $url['replacement']);
$context['pretty']['cached_urls'][$crc] = $url['replacement'];
$cache_data[] = '(' . $crc . ', \'' . addslashes($url['replacement']) . '\')';
}

// Cache these URLs in the database
if (count($cache_data) != 0)
db_query("
REPLACE INTO {$db_prefix}pretty_urls_cache
(url_crc, replacement)
VALUES " . implode(', ', $cache_data), __FILE__, __LINE__);
}

// Put the URLs back into the buffer
$pattern = '~(<a[^>]+href=|<link[^>]+href=|<link>|<id>|<comments>|<guid>)(\"[^\"]+\"|\'[^\']+\'|[^<]+)~';
$buffer = preg_replace_callback($pattern, 'pretty_buffer_callback', $buffer);
}
}

// Update the load times
$pattern = '~<span class="smalltext">' . $txt['smf301'] . '([.0-9]+)' . $txt['smf302'] . '([0-9]+)' . $txt['smf302b'] . '</span>~';
if (preg_match($pattern, $buffer, $matches))
{
$newTime = round(array_sum(explode(' ', microtime())) - array_sum(explode(' ', $time_start)), 3);
$timeDiff = $newTime - (float) $matches[1];
$queriesDiff = $db_count + $context['pretty']['db_count'] - (int) $matches[2];
// Remove the link if you like, I won't enforce it like others do
$newLoadTime = '<span class="smalltext">' . $txt['smf301'] . $newTime . $txt['smf302'] . $db_count . $txt['smf302b'] . ' (<a href="http://code.google.com/p/prettyurls/">Pretty URLs</a> adds ' . $timeDiff . 's, ' . $queriesDiff . 'q)</span>';
$buffer = str_replace($matches[0], $newLoadTime, $buffer);
}

// Return the changed buffer.
return $buffer;
}

// A callback function to replace the buffer's URLs with their cached URLs
function pretty_buffer_callback($matches)
{
global $context;

// Is this URL part of a feed?
$isFeed = strpos($matches[1], '>');

// Remove those annoying quotes
$matches[2] = preg_replace('~^[\"\']|[\"\']$~', '', $matches[2]);

// Store the parts of the URL that won't be cached so they can be inserted later
preg_match('~PHPSESSID=[^;#&]+~', $matches[2], $PHPSESSID);
preg_match('~sesc=[^;#]+~', $matches[2], $sesc);
preg_match('~#.*~', $matches[2], $fragment);

// Rip out everything that won't have been cached
$cacheableurl = preg_replace(array('~PHPSESSID=[^;#]+|sesc=[^;#]+|#.*$~', '~\"~', '~;+|=;~', '~\?;~', '~\?$|;$|=$~'), array('', '%22', ';', '?', ''), $matches[2]);
$crc = crc32($cacheableurl);

// Stich everything back together, clean it up and return
$replacement = isset($context['pretty']['cached_urls'][$crc]) ? $context['pretty']['cached_urls'][$crc] : $cacheableurl;
$replacement .= (strpos($replacement, '?') === false ? '?' : ';') . (isset($PHPSESSID[0]) ? $PHPSESSID[0] : '') . ';' . (isset($sesc[0]) ? $sesc[0] : '') . (isset($fragment[0]) ? $fragment[0] : '');
$replacement = preg_replace(array('~;+|=;~', '~\?;~', '~\?#|;#|=#~', '~\?$|;$|#$|=$~'), array(';', '?', '#', ''), $replacement);
return $matches[1] . ($isFeed === false ? '"' : '') . $replacement . ($isFeed === false ? '"' : '');
}

sources/Subs.php de bu kodu bulun

Kod: [Seç]
function redirectexit($setLocation = '', $refresh = false)
{
global $scripturl, $context, $modSettings, $db_show_debug;

bununla değiştirin

Kod: [Seç]
function redirectexit($setLocation = '', $refresh = false, $permanent = false)
{
global $scripturl, $context, $modSettings, $db_show_debug, $sourcedir;

aynı dosyada bu kodu bulun

Kod: [Seç]
if (!empty($modSettings['queryless_urls']) && (empty($context['server']['is_cgi']) || @ini_get('cgi.fix_pathinfo') == 1) && !empty($context['server']['is_apache']))
{
if (defined('SID') && SID != '')
$setLocation = preg_replace('/^' . preg_quote($scripturl, '/') . '\?(?:' . SID . ';)((?:board|topic)=[^#]+?)(#[^"]*?)?$/e', "\$scripturl . '/' . strtr('\$1', '&;=', '//,') . '.html\$2?' . SID", $setLocation);
else
$setLocation = preg_replace('/^' . preg_quote($scripturl, '/') . '\?((?:board|topic)=[^#"]+?)(#[^"]*?)?$/e', "\$scripturl . '/' . strtr('\$1', '&;=', '//,') . '.html\$2'", $setLocation);
}

if (isset($modSettings['integrate_redirect']) && function_exists($modSettings['integrate_redirect']))
$modSettings['integrate_redirect']($setLocation, $refresh);

bununla değiştirin

Kod: [Seç]
// Redirections should be pretty too
if ($modSettings['pretty_enable_filters'])
{
$url = array(0 => array('url' => $setLocation, 'crc' => 0));
$filter_callbacks = unserialize($modSettings['pretty_filter_callbacks']);
foreach ($filter_callbacks as $callback)
{
require_once($sourcedir . '/PrettyUrls-Filters.php');
$pretty_url = call_user_func($callback, $url);
if (isset($pretty_url[0]['replacement']))
break;
}
if (isset($pretty_url[0]['replacement']))
$setLocation = $pretty_url[0]['replacement'];
$setLocation = preg_replace(array('~;+|=;~', '~\?;~', '~\?#|;#|=#~', '~\?$|;$|#$|=$~'), array(';', '?', '#', ''), $setLocation);
}

if (isset($modSettings['integrate_redirect']) && function_exists($modSettings['integrate_redirect']))
$modSettings['integrate_redirect']($setLocation, $refresh);

if ($permanent)
header('HTTP/1.1 301 Moved Permanently');


son olarak site teması/languages/Modifications.english.php site temasında bu dosya olmayanlar default temanın languages dosyasından alsınlar 

bu koddan önce

Kod: [Seç]
?>
bu kodları yerleştirin

Kod: [Seç]
// Pretty URLs mod
$txt['pretty_root_url'] = 'Pretty URLs root URL<div class="smalltext">(Without a final slash)</div>';
$txt['pretty_enable_filters'] = 'Enable URL filters<div class="smalltext">This may be a substantial performance hit</div>';


ve son olarakda arkadaşlar indirdiğiniz modun içersinde ki

PrettyUrls-Filters.php ve Subs-PrettyUrls.php Sources klasörün içine atıyorsunuz...hayırlı olsun...



Arkadaşlar ben konuyu açarken aynı zamandan kodları sitemin dosyalarına yerleştirdim ve hiçbir problem çıkmadı eğer dikkatli olarak kodları doğru yerleştirirseniz hiçbir sorun çıkmayacaktır...Bu manuel anlatım tamamen bana aittir hiçbir yerden zerre kadar alıntı yapmadım...
Veteriner Hekimlerin ve Hayvan Severlerin Paylaşım Platformu

www.gencveteriner.com

http://vettube.gencveteriner.com

Çevrimdışı Alee

  • SMF-Tasarım
  • *
  • İleti: 964
  • PR ( Rep ) : 49
  • Cinsiyet: Bay
Ynt: prettyurls
« Yanıtla #31 : SmfGrup Saati : 06 Şubat Çrş 2008, 22:59 »
seni çok uğraştırdı galiba
paylaşım için sağol
« Son Düzenleme: SmfGrup Saati : 06 Şubat Çrş 2008, 23:00 Gönderen: Alee »

Çevrimdışı rihannafunclub.com

  • Yeni Üye
  • *
  • İleti: 212
  • PR ( Rep ) : 2
  • Cinsiyet: Bay
  • www.gencveteriner.com
    • Veteriner Hekimlerin Paylaşım Platformu
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #32 : SmfGrup Saati : 06 Şubat Çrş 2008, 23:03 »
evet baya uğraştım ama bunu yapmak zorundaydım yapmışken siteye de koyayım dedim :)
Veteriner Hekimlerin ve Hayvan Severlerin Paylaşım Platformu

www.gencveteriner.com

http://vettube.gencveteriner.com

Çevrimdışı SF

  • Yeni Üye
  • *
  • İleti: 309
  • PR ( Rep ) : 8
  • Cinsiyet: Bay
  • Yaşasam yine Mehmet'in oğlu Ali olurdum..
Ynt: prettyurls
« Yanıtla #33 : SmfGrup Saati : 16 Şubat Cts 2008, 00:24 »
Yalnız kuranlar cpu riskini gözardı etmesin.

Çok fena kasar hitiniz 2000i geçtimi. Hostcunuz kovalar o zaman, 2 kere düşünün. Hitiniz artar ama sorunlar başlar :)
« Son Düzenleme: SmfGrup Saati : 16 Şubat Cts 2008, 00:24 Gönderen: SF »

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #34 : SmfGrup Saati : 21 Şubat Prş 2008, 12:03 »
Paket'i Kurdum Fakat Forum SeçenekLerinde hangi kutuyu İşaretliycm orda bi değişiklik olmadı sanrım?

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #35 : SmfGrup Saati : 21 Şubat Prş 2008, 12:10 »
son olarakta Link'i Tazelerseniz İyi Olur Kırık Ben simplemachines den İndirdim (;

Çevrimiçi EmirCan

  • SGT-Admin
  • *
  • İleti: 14053
  • PR ( Rep ) : 247
  • Cinsiyet: Bay
  • EmirCan ( İST )
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #36 : SmfGrup Saati : 21 Şubat Prş 2008, 17:07 »
Oldu olmazmı

İyi okursa anlatımı görürsün nereyi işaretleyecegini..
Emirkuzu.com

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #37 : SmfGrup Saati : 21 Şubat Prş 2008, 17:30 »
Oldu olmazmı

İyi okursa anlatımı görürsün nereyi işaretleyecegini..
Pardon :) Gözmden Kaçmış Oke saol

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #38 : SmfGrup Saati : 21 Şubat Prş 2008, 17:43 »
Oldu olmazmı

İyi okursa anlatımı görürsün nereyi işaretleyecegini..
Son Olarakda Link De Bi Sorun Var Sanırım Şirket Sitesi Gibi Bişey Açılıyo :) Nereye Tıklıyım Anlamadım Yardım

Çevrimiçi EmirCan

  • SGT-Admin
  • *
  • İleti: 14053
  • PR ( Rep ) : 247
  • Cinsiyet: Bay
  • EmirCan ( İST )
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #39 : SmfGrup Saati : 21 Şubat Prş 2008, 17:48 »
rabid orası abim
Emirkuzu.com

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #40 : SmfGrup Saati : 21 Şubat Prş 2008, 17:51 »
rabid orası abim
ok da kayıp.com die bi site açılıo neyse ben bir paket indirdim çok şükür ve paketi kurdum ama kurarken şu hata oluştu
8.     Değişiklik Yapılacak     ./Sources/Subs.php     Test Başarısız

Pakette mi sorun var bende mi anlamadım :/

Çevrimiçi EmirCan

  • SGT-Admin
  • *
  • İleti: 14053
  • PR ( Rep ) : 247
  • Cinsiyet: Bay
  • EmirCan ( İST )
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #41 : SmfGrup Saati : 21 Şubat Prş 2008, 17:53 »
sen kur direkmen..

o sorun herkesde veriyor sanırım

yada sıfır bir subs at içeriye
Emirkuzu.com

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #42 : SmfGrup Saati : 21 Şubat Prş 2008, 18:22 »
Tamam paketi kurdum o sorun kalktı ama şu sorun oluştu

http://pesimistr.com/index.php/yardm-blm/rar-dosyalarna-ifre-ekleme/msg2294/#new

bu sitemden bir konunun linki sitemde ki konulara girilemiyo :S üf beah amma sorun oldu çok istiyorum bunu eklemeyi illa uzıyack iş :((

Çevrimiçi EmirCan

  • SGT-Admin
  • *
  • İleti: 14053
  • PR ( Rep ) : 247
  • Cinsiyet: Bay
  • EmirCan ( İST )
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #43 : SmfGrup Saati : 21 Şubat Prş 2008, 18:39 »
özel mesajla msn yolla htcess koyalım bir tane
Emirkuzu.com

Çevrimdışı mert

  • Yeni Üye
  • *
  • İleti: 456
  • PR ( Rep ) : 13
  • SMF Sürümü: 2.0
Ynt: prettyurls
« Yanıtla #44 : SmfGrup Saati : 21 Şubat Prş 2008, 18:58 »
özel mesajla msn yolla htcess koyalım bir tane
Tamam YoLLadım .