Files
mirror-processhacker/misc/website/websitev2/index.php
T
dmex eff6b448e0 website: updated portal links
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4443 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2011-08-15 06:16:53 +00:00

296 lines
10 KiB
PHP

<?php $pagetitle = "Overview"; include("header.php"); include("config.php"); include("./forums/config.php"); ?>
<div class="page">
<div class="yui-d0">
<div class="watermark-apps-portlet">
<div class="flowed-block">
<img alt="" width="64" height="64" src="/images/logo.png">
</div>
<div class="flowed-block wide">
<h2>Process Hacker</h2>
<ul class="facetmenu">
<li class="overview active"><a href="/">Overview</a></li>
<li><a href="/features.php">Features</a></li>
<li><a href="/screenshots.php">Screenshots</a></li>
<li><a href="/downloads.php">Downloads</a></li>
<li><a href="/faq.php">FAQ</a></li>
<li><a href="/about.php">About</a></li>
<li><a href="/forums/" target="_blank">Forum</a></li>
</ul>
</div>
</div>
<div class="yui-t4">
<div class="yui-b side">
<div class="portlet">
<h2 class="center">
Downloads
</h2>
<div class="downloads">
<div class="version">
Latest version is <?php echo LATEST_PH_VERSION ?>
</div>
<li>
<a href="http://sourceforge.net/projects/processhacker/files/processhacker2/processhacker-<?php echo LATEST_PH_VERSION ?>-setup.exe/download" title="Setup (recommended)">
Installer
</a>
</li>
<li>
<a href="http://sourceforge.net/projects/processhacker/files/processhacker2/processhacker-<?php echo LATEST_PH_VERSION ?>-bin.zip/download" title="Binaries (portable)">
Binaries (portable)
</a>
</li>
<li>
<a href="http://sourceforge.net/projects/processhacker/files/processhacker2/processhacker-<?php echo LATEST_PH_VERSION ?>-src.zip/download" title="Source code">
Source code
</a>
</li>
<div class="released">
Released <?php echo LATEST_PH_RELEASE_DATE ?>
</div>
</div>
<div class="center">
<a href="http://sourceforge.net/project/project_donations.php?group_id=242527">
<img alt="Donate" src="/images/donate.gif">
</a>
</div>
</div>
<div class="portlet" >
<h2 class="center">Quick Links</h2>
<ul class="involvement">
<li><a href="/downloads.php">All downloads</a></li>
<li><a href="http://sourceforge.net/projects/processhacker/">Sourceforge Project Page</a></li>
<li><a href="http://processhacker.svn.sourceforge.net/viewvc/processhacker/2.x/trunk/">Browse source code</a></li>
<li><a href="http://processhacker.sourceforge.net/doc">Source code documentation</a></li>
</ul>
</div>
<div class="portlet" >
<h2 class="center">Get Involved</h2>
<ul class="involvement">
<li><a href="/forums/viewforum.php?f=24">Report a bug</a></li>
<li><a href="/forums/viewforum.php?f=5">Ask a question</a></li>
</ul>
</div>
</div>
<div class="top-portlet">
<div class="summary">
<p>Process Hacker is a feature-packed tool for manipulating processes and services on your computer.</p>
<p><strong>System Requirements:</strong></p>
<ul>
<li>&#160;•&#160;Microsoft Windows XP SP2 or above, 32-bit or 64-bit.</li>
<li>&#160;•&#160;Intel Itanium Platforms are not supported.</li>
</ul>
<p><strong>Key features of Process Hacker:</strong></p>
<ul>
<li>&#160;•&#160;A simple, customizable tree view with highlighting showing you the processes running on your computer.</li>
<li>&#160;•&#160;Detailed system statistics with graphs.</li>
<li>&#160;•&#160;Advanced features not found in other programs, such as detaching from debuggers, viewing GDI handles, viewing heaps, injecting and unloading DLLs, and more.</li>
<li>&#160;•&#160;Powerful process termination that bypasses security software and rootkits.</li>
<li>&#160;•&#160;View, edit and control services, including those not shown by the Services console.</li>
<li>&#160;•&#160;View and close network connections.</li>
<li>&#160;•&#160;Starts up almost instantly, unlike other programs.</li>
<li>&#160;•&#160;<a href="./features.php">Many more features...</a></li>
</ul>
<p><strong>Compared with Process Explorer, Process Hacker:</strong></p>
<ul>
<li>&#160;•&#160;Implements almost all of the functionality offered by Process Explorer, plus more advanced features.</li>
<li>&#160;•&#160;Has advanced string scanning capabilities, as well as regular expression filtering.</li>
<li>&#160;•&#160;Allows you to see what a thread is waiting on.</li>
<li>&#160;•&#160;Highlights both relocated and .NET DLLs.</li>
<li>&#160;•&#160;Allows you to connect to other sessions, just like Windows Task Manager can.</li>
<li>&#160;•&#160;Shows symbolic access masks (e.g. <code>Read, Write</code>), rather than just numbers (e.g. <code>0x12019f</code>).</li>
<li>&#160;•&#160;Shows names for transaction manager objects and ETW registration objects.</li>
<li>&#160;•&#160;Shows detailed token information, as well as allowing privileges to be enabled and disabled.</li>
<li>&#160;•&#160;Shows information for POSIX processes.</li>
</ul>
</div>
</div>
<div class="yui-g">
<div class="yui-u first">
<div class="portlet">
<p><strong>Latest News</strong></p>
<?php
// How Many Topics you want to display?
$topicnumber = 5;
// Change this to your phpBB path
$urlPath = "./forums";
$table_topics = $table_prefix. "topics";
$table_forums = $table_prefix. "forums";
$table_posts = $table_prefix. "posts";
$table_users = $table_prefix. "users";
if ($link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd"))
{
if (mysql_select_db("$dbname"))
{
$query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username, u.user_colour
FROM $table_topics t, $table_forums f, $table_posts p, $table_users u
WHERE t.topic_id = p.topic_id AND
f.forum_id = t.forum_id AND
t.forum_id = 1 AND
t.topic_status <> 2 AND
p.post_id = t.topic_last_post_id AND
p.poster_id = u.user_id
ORDER BY p.post_id DESC LIMIT $topicnumber";
if ($result = mysql_query($query))
{
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo
"<div class=\"ft\">
<a href=\"$urlPath/viewtopic.php?f=$row[forum_id]&amp;t=$row[topic_id]&amp;p=$row[post_id]#p$row[post_id]\" target=\"_blank\">".$row["topic_title"]."</a>
<span style=\"color:#C0C0C0\">
by
<a href=\"$urlPath/memberlist.php?mode=viewprofile&amp;u=$row[user_id]\" target=\"_blank\">
<span style=\"color:#$row[user_colour]\">".$row["username"]."</span>
</a>
<li>".date('F jS, Y, g:i a', $row["post_time"])."</li>
</span>
</div>";
}
}
else
{
echo "<p>Query failed.</p>";
}
}
else
{
echo "<p>Could not select database.</p>";
}
}
else
{
echo "<p>Could not connect.</p>";
}
mysql_free_result($result);
mysql_close($link);
?>
</div>
</div>
<div class="yui-g">
<div class="portlet">
<p><strong>Forum Activity</strong></p>
<?php
// How Many Topics you want to display?
$topicnumber = 5;
// Change this to your phpBB path
$urlPath = "./forums";
$table_topics = $table_prefix. "topics";
$table_forums = $table_prefix. "forums";
$table_posts = $table_prefix. "posts";
$table_users = $table_prefix. "users";
if ($link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd"))
{
if (mysql_select_db("$dbname"))
{
$query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username, u.user_colour
FROM $table_topics t, $table_forums f, $table_posts p, $table_users u
WHERE t.topic_id = p.topic_id AND
f.forum_id = t.forum_id AND
t.forum_id != 1 AND
t.forum_id != 7 AND
t.topic_status <> 2 AND
p.post_id = t.topic_last_post_id AND
p.poster_id = u.user_id
ORDER BY p.post_id DESC LIMIT $topicnumber";
if ($result = mysql_query($query))
{
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo
"<div class=\"ft\">
<a href=\"$urlPath/viewtopic.php?f=$row[forum_id]&amp;t=$row[topic_id]&amp;p=$row[post_id]#p$row[post_id]\" target=\"_blank\">".$row["topic_title"]."</a>
<span style=\"color:#C0C0C0\">
by
<a href=\"$urlPath/memberlist.php?mode=viewprofile&amp;u=$row[user_id]\" target=\"_blank\">
<span style=\"color:#$row[user_colour]\">".$row["username"]."</span>
</a>
<li>".date('F jS, Y, g:i a', $row["post_time"])."</li>
</span>
</div>";
}
}
else
{
echo "<p>Query failed.</p>";
}
}
else
{
echo "<p>Could not select database.</p>";
}
}
else
{
echo "<p>Could not connect.</p>";
}
mysql_free_result($result);
mysql_close($link);
?>
</div>
</div>
<div class="yui-u">
<div id="structural-subscription-content-box"></div>
</div>
</div>
<div class="yui-g">
<div class="yui-u first">
<div class="portlet">
<p><strong>Screenshots</strong></p>
<a href="/images/screenshots/processes_tab_large.png" rel="lytebox[group1]" style="margin-left: 1em; margin-right: 1em;">
<img alt="" border="0" width="200" height="107" src="/images/screenshots/processhacker_small.png">
</a>
<a href="/images/screenshots/sysinfo_large.png" rel="lytebox[group1]">
<img alt="" border="0" width="200" height="107" src="/images/screenshots/sysinfo_small.png">
</a>
<h2>
<span class="see-all">
<a href="/screenshots.php" class="menu-link-list_all sprite info">All Screenshots</a>
</span>
</h2>
</div>
</div>
<div class="yui-u">
<div class="portlet">
<p><strong>Statistics</strong></p>
<script type="text/javascript" src="http://www.ohloh.net/p/329666/widgets/project_basic_stats.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include("footer.php"); ?>