4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: Sunny C. on July 11, 2010, 10:36:55 PM

Title: [Hack] Show base directory on admin panel
Post by: Sunny C. on July 11, 2010, 10:36:55 PM
Open / Öffne: admin/home.php
Search / Suche:
  show_table_footer();

  $sql = "SELECT SUM(cat_hits) AS sum
          FROM ".CATEGORIES_TABLE;
  $row = $site_db->query_firstrow($sql);
Add above / Füge darüber ein
  echo '<tr class="tablerow"><td><b>Base Directory</b></td><td colspan="3">';
  print ($_SERVER['DOCUMENT_ROOT']);
  echo '</td></tr>';