تطوير خريطة المنتدى البسيطه

منتديات هاكات phpBB3 والنقاش حول هاكات الجيل الثالث وأيضاً حل مشاكل التركيب العامة

المشرفون: alhitary،طاقم الإضافات

قوانين المنتدى
هذه الساحة للنقاش حول كيفية الهاكات وليس لحل المشاكل المتعلقه بذلك، مشكلة الهاك تطرح في موضوع الهاك نفسه
صورة العضو الرمزية
alahamdan
عضو نشيط
عضو نشيط
مشاركات: 146
اشترك في: الجمعة يناير 12, 2007 6:41 pm

????? ????? ??????? ??????? (????)

مشاركةبواسطة alahamdan » الجمعة ديسمبر 12, 2008 3:48 pm

???? ?????

?????? ?? ???????

?????? ?????? ???????? ??????:

كود: تحديد الكل

<?php 

// PHPBB 3.0 Sitemap Modification
// Greensboring.com
// Version 3.0 - September 5 2007


// Enter The Path to Your PHPBB Forum if different then root.
// Example: $path='/community/'; 

$path='/community/';


// Change Nothing Below Here:
// ********************************************************************

$domainpath='http://'.$_SERVER['HTTP_HOST'].$path;

// Connect

define('IN_PHPBB', true);
$phpbb_root_path = './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);

include($phpbb_root_path . 'config.' . $phpEx);
include($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);

$db = new $sql_db();

$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, false);

// Send initial Data

echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
echo "<urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd\">";

// Send Index

echo '<url>
      <loc>'.$domainpath.'</loc>
      <lastmod>' . gmdate('Y-m-d') . '</lastmod>
      <changefreq>hourly</changefreq>
      <priority>1.0</priority>
         </url>';


// Send Topics

$sql = 'SELECT * FROM phpbb_topics WHERE topic_approved=1 ORDER BY topic_id DESC';
    	$result = $db->sql_query($sql);
	while ($data=mysql_fetch_array($result)) {

echo '<url>
      <loc>'.$domainpath.'viewtopic.php?f='.$data['forum_id'].'&t='.$data['topic_id'].'</loc>
      <lastmod>'. gmdate('Y-m-d',$data['topic_last_post_time']) .'</lastmod>
      <changefreq>always</changefreq>
      <priority>0.8</priority>
         </url>';

}

// Send Forums

$sql = 'SELECT * FROM phpbb_forums WHERE parent_id!=0';
    	$result = $db->sql_query($sql);
	while ($data=mysql_fetch_array($result)) {

echo '<url>
      <loc>'.$domainpath.'viewforum.php?f='.$data['forum_id'].'</loc>
      <lastmod>'. gmdate('Y-m-d',$data['forum_last_post_time']) .'</lastmod>
      <changefreq>always</changefreq>
      <priority>0.9</priority>
         </url>';

}


// Send Closing Tags

echo '  </urlset>';


?>
?? ???? ??????? community ???? ?????? ?????? ????? ?????? ??? ??? ?????.




صورة العضو الرمزية
alahamdan
عضو نشيط
عضو نشيط
مشاركات: 146
اشترك في: الجمعة يناير 12, 2007 6:41 pm

????? ????? ??????? ??????? (????)

مشاركةبواسطة alahamdan » الجمعة ديسمبر 12, 2008 4:01 pm

?????????

????????? ???? ?? ????? ?? ??????? ????? ?????? ??? ??? ??????? ??? 1970.

???? ?? ?????? ????? ??? ????? ?? ?? ????? ????!

saanina
عضو شرف
عضو شرف
مشاركات: 2726
اشترك في: الاثنين يونيو 09, 2003 11:14 am
مكان: ...
اتصال:

????? ????? ??????? ??????? (????)

مشاركةبواسطة saanina » الجمعة ديسمبر 12, 2008 7:45 pm

كود: تحديد الكل

<?php

????//?PHPBB?3.0?Sitemap?Modification
????//?Greensboring.com
????//?Version?3.0?-?September?5?2007


????//?Enter?The?Path?to?Your?PHPBB?Forum?if?different?then?root.
????//?Example:?$path='/community/';

????$path='/community/';


????//?Change?Nothing?Below?Here:
????//?********************************************************************

????$domainpath='http://'.$_SERVER['HTTP_HOST'].$path;

????//?Connect

????define('IN_PHPBB',?true);
????$phpbb_root_path?=?'./';
????$phpEx?=?substr(strrchr(__FILE__,?'.'),?1);

????include($phpbb_root_path?.?'config.'?.?$phpEx);
????include($phpbb_root_path?.?'includes/db/'?.?$dbms?.?'.'?.?$phpEx);

????$db?=?new?$sql_db();

????$db->sql_connect($dbhost,?$dbuser,?$dbpasswd,?$dbname,?$dbport,?false,?false);

????//?Send?initial?Data

????echo?'<?xml?version="1.0"?encoding="UTF-8"?>'."\n";
????echo?"<urlset?xmlns=\"http://www.google.com/schemas/sitemap/0.84\"?xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"?xsi:schemaLocation=\"http://www.google.com/schemas/sitemap/0.84?http://www.google.com/schemas/sitemap/0.84/sitemap.xsd\">";

????//?Send?Index

????echo?'<url>
??????????<loc>'.$domainpath.'</loc>
??????????<lastmod>'?.?gmdate('Y-m-d')?.?'</lastmod>
??????????<changefreq>hourly</changefreq>
??????????<priority>1.0</priority>
?????????????</url>';


????//?Send?Topics

????$sql?=?'SELECT?*?FROM?phpbb_topics?WHERE?topic_approved=1?ORDER?BY?topic_id?DESC';
???????????$result?=?$db->sql_query($sql);
???????while?($data=mysql_fetch_array($result))?{

????echo?'<url>
??????????<loc>'.$domainpath.'viewtopic.php?f='.$data['forum_id'].'&t='.$data['topic_id'].'</loc>
??????????<lastmod>'.?gmdate('Y-m-d',$data['topic_last_post_time'])?.'</lastmod>
??????????<changefreq>always</changefreq>
??????????<priority>0.8</priority>
?????????????</url>';

????}

????//?Send?Forums

????$sql?=?'SELECT?*?FROM?phpbb_forums?WHERE?parent_id!=0';
???????????$result?=?$db->sql_query($sql);
???????while?($data=mysql_fetch_array($result))?{

????echo?'<url>
??????????<loc>'.$domainpath.'viewforum.php?f='.$data['forum_id'].'</loc>
??????????<lastmod>'.?(gmdate('Y',?$data['forum_last_post_time'])?==?1970???gmdate('Y-m-d')?:?gmdate('Y-m-d',$data['forum_last_post_time']))?.'</lastmod>
??????????<changefreq>always</changefreq>
??????????<priority>0.9</priority>
?????????????</url>';

????}


????//?Send?Closing?Tags

????echo?'??</urlset>';


?>
صورة

:idea: ----------
[الإنسان لا يدرك قيمة الأشياء المجانيه التي تعرض له ..
ويتعامل معها بإستخفاف .. أو على الأقل يشعر أنها حق
له .. أو واجب على الطرف الآخر ...]

صورة العضو الرمزية
alahamdan
عضو نشيط
عضو نشيط
مشاركات: 146
اشترك في: الجمعة يناير 12, 2007 6:41 pm

????? ????? ??????? ??????? (????)

مشاركةبواسطة alahamdan » الجمعة ديسمبر 12, 2008 11:51 pm

???? ??? ??????? ?? saanina ?????? ?????? 1970 ?? ????????? ???? ??? ??? ???????

صورة العضو الرمزية
alahamdan
عضو نشيط
عضو نشيط
مشاركات: 146
اشترك في: الجمعة يناير 12, 2007 6:41 pm

????? ????? ??????? ???????

مشاركةبواسطة alahamdan » الأحد سبتمبر 13, 2009 2:06 am

?????? ?????.
?? ??? ??????? ??????? ? ????????? ????? ???????? ???? ???? ?????? ??? ????? ????????? ???? ??? ??? ????? ????? ????????? ????????? ?? ????? ????????. ???? ????? ??????? ???? ????? ?????? (????? ????? ???? ?????? ???????? ?????? ???? ?????? ??? ???????):

كود: تحديد الكل

<?php

    // PHPBB 3.0 Sitemap Modification
    // Greensboring.com
    // Version 3.0 - September 5 2007


    // Enter The Path to Your PHPBB Forum if different then root.
    // Example: $path='/community/';

    $path='/forum/';


    // Change Nothing Below Here:
    // ********************************************************************

    $domainpath='http://'.$_SERVER['HTTP_HOST'].$path;

    // Connect

    define('IN_PHPBB', true);
    $phpbb_root_path = './';
    $phpEx = substr(strrchr(__FILE__, '.'), 1);

    include($phpbb_root_path . 'config.' . $phpEx);
    include($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);

    $db = new $sql_db();

    $db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, false);

    // Send initial Data

    echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
    echo "<urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd\">";

    // Send Index

    echo '<url>
          <loc>'.$domainpath.'</loc>
          <lastmod>' . gmdate('Y-m-d') . '</lastmod>
          <priority>1.0</priority>
             </url>';


    // Send Topics

    $sql = 'SELECT * FROM phpbb_topics WHERE topic_approved=1 ORDER BY topic_id DESC';
           $result = $db->sql_query($sql);
       while ($data=mysql_fetch_array($result)) {

    echo '<url>
          <loc>'.$domainpath.'viewtopic.php?f='.$data['forum_id'].'&t='.$data['topic_id'].'</loc>
          <lastmod>'. gmdate('Y-m-d',$data['topic_last_post_time']) .'</lastmod>
          <priority>0.9</priority>
             </url>';

    }

    // Send Forums

    $sql = 'SELECT * FROM phpbb_forums WHERE parent_id!=0';
           $result = $db->sql_query($sql);
       while ($data=mysql_fetch_array($result)) {

    echo '<url>
          <loc>'.$domainpath.'viewforum.php?f='.$data['forum_id'].'</loc>
          <lastmod>'. (gmdate('Y', $data['forum_last_post_time']) == 1970 ? gmdate('Y-m-d') : gmdate('Y-m-d',$data['forum_last_post_time'])) .'</lastmod>
          <priority>0.8</priority>
             </url>';

    }


    // Send Closing Tags

    echo '  </urlset>';


?>
??? ????????? ????? ?? ????? ? ???? ????? ? ??? ?? ??? ????? ???? ???? ????? ??????? ????? ? Query ????? ? ????? ??????? ??? ???????? ???????? ????????? ?????? ????? ????? ???? ??? ??? ??????? ???? ????? ?? Mysql ???? Time Out ????? ????? ??? ?????? ????? ????? ????? ?????? (????? 40 ??? ????).

???? ???? ???????? ??? ??? ???? ????? ??? ???????? ??? ?? ??? ????? ??????? ???? ????? ????? ??? ??? ??? ???? ?? ??? ????? ???? ?? ???? ???? ???? ???? ???? ? ????? ??????? ?????? ???? ?? 0 ??? 20 ??? ???????? ?? 20 ??? ??? 40 ??? ?????. ?? ?? ?? ?? ????? ??????.

???? ??? ???????? ????? ?????? ????.

صورة العضو الرمزية
alahamdan
عضو نشيط
عضو نشيط
مشاركات: 146
اشترك في: الجمعة يناير 12, 2007 6:41 pm

????? ????? ??????? ???????

مشاركةبواسطة alahamdan » الاثنين سبتمبر 14, 2009 11:43 am

???

صورة العضو الرمزية
Garebooo
المشرف العام
المشرف العام
مشاركات: 7407
اشترك في: السبت مارس 26, 2005 6:12 am
مكان: phpBB Arabia
اتصال:

????? ????? ??????? ???????

مشاركةبواسطة Garebooo » الاثنين سبتمبر 14, 2009 7:58 pm

??? ???? ??? ??? ????? /

كود: تحديد الكل

'ORDER_BY'  => 't.topic_time DESC LIMIT 5'
????? ????? 5 ???? ??? ?? ???????? ??? ????? ? ????? ???? ???? ???????

?? ?????? ??? ?????? ?????? ????? ???? ??? ????? ?????? ?????? ???? /

كود: تحديد الكل

User-agent: msnbot
Crawl-delay: 600
من فضلك استخدم نموذج طلب الدعم عند اضافة مشكلتك
بعد حل مشكلتك فضلاً ضع [ مجابة ] في عنوان الموضوع حتى يتنظم الموقع بشكل اكبر

A.B.M.K
مشرف سابق
مشرف سابق
مشاركات: 2421
اشترك في: الجمعة يوليو 10, 2009 5:19 pm
مكان: Germany
اتصال:

????? ????? ??????? ???????

مشاركةبواسطة A.B.M.K » الأحد أكتوبر 04, 2009 1:13 pm

??? ??? ???? ??????? ,

???? ????? ??? ???? ??????? ? ????? ???? ???? ???? ?? ??????? ??? ???? http://www.al-yemen.de/vb/sitemap.php

???? ???? ???? ,,,,,,, ??? ??? ????? ????????
?????
قائمة بالهاكات التي عربتها
http://www.al-yemen.de/bb

يسعدني و يشرفني ان اقوم بمساعدتك
*********************************
*** انا اقوم دائماً بالبحث عن حل لمشكلتك و اجيبك في اسرع وقت
*** اسمي : مــــــــــحـــــــــــرك الـــــــــبـــحـــــــث
*** اتمنى ان تجد حل لمشكلتك او اسفسارك في اسرع وقت
*********************************


العودة إلى ”هاكــات [ ×.3.0 ]“

الموجودون الآن

المتصفحون للمنتدى الآن: لا يوجد أعضاء مسجلين متصلين و 10 زوار