﻿<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress Türkiye Forumları Konu: Pmetrics istatistik eklentisi (en iyisi)</title>
<link>http://www.wordpress-tr.com/forum/</link>
<description>WordPress Türkiye Forumları Konu: Pmetrics istatistik eklentisi (en iyisi)</description>
<language>en</language>
<pubDate>Mon, 08 Sep 2008 17:42:11 +0000</pubDate>

<item>
<title>Eren konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-864</link>
<pubDate>Per, 21 Dec 2006 21:37:39 +0000</pubDate>
<dc:creator>Eren</dc:creator>
<guid isPermaLink="false">864@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Teşekkürler.
&#60;/p&#62;</description>
</item>
<item>
<title>erayendes konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-769</link>
<pubDate>Sal, 19 Dec 2006 12:17:49 +0000</pubDate>
<dc:creator>erayendes</dc:creator>
<guid isPermaLink="false">769@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Aşağıdaki kodları gelişmiş bir text editörle pmetrics.php olarak kaydedin. Kurulum bilgileri eklentinin içinde yazıyor. Umarım çalışır.&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
&#38;lt;?php&#60;br /&#62;
/*&#60;br /&#62;
WordPress Info&#60;br /&#62;
----------------------------------------------------------------------------&#60;br /&#62;
Plugin Name: PMetrics&#60;br /&#62;
Plugin URI: &#60;a href=&#34;http://davereid.net/projects/wordpress/pmetrics/&#34; rel=&#34;nofollow&#34;&#62;http://davereid.net/projects/wordpress/pmetrics/&#60;/a&#62;&#60;br /&#62;
Description: Adds Performancing Metrics code to each blog page automatically.&#60;br /&#62;
Version: 0.2&#60;br /&#62;
Author: Dave Reid&#60;br /&#62;
Author URI: &#60;a href=&#34;http://davereid.net/&#34; rel=&#34;nofollow&#34;&#62;http://davereid.net/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Installation&#60;br /&#62;
---------------------------------------------------------------------------&#60;br /&#62;
1. Upload/copy this file (pmetrics.php) into the plugins directory of your&#60;br /&#62;
WordPress installation (wp-content/plugins).&#60;br /&#62;
2. Log in to WordPress administration.&#60;br /&#62;
3. Click Plugins from the main menu.&#60;br /&#62;
4. Scroll to find PMetrics and click Activate to enable this plugin.&#60;/p&#62;
&#60;p&#62;Version History&#60;br /&#62;
---------------------------------------------------------------------------&#60;br /&#62;
2006-03-15 0.1 First release&#60;br /&#62;
2006-03-21 0.2 Added options page in the administration menu&#60;br /&#62;
Added option to ignore when admin is logged in&#60;br /&#62;
Added update check&#60;br /&#62;
Added GPL license&#60;br /&#62;
Code re-organized and cleaning&#60;/p&#62;
&#60;p&#62;License&#60;br /&#62;
---------------------------------------------------------------------------&#60;br /&#62;
Copyright (C) 2006 Dave Reid (dave@davereid.net)&#60;/p&#62;
&#60;p&#62;This program is free software; you can redistribute it and/or modify&#60;br /&#62;
it under the terms of the GNU General Public License as published by&#60;br /&#62;
the Free Software Foundation; either version 2 of the License, or&#60;br /&#62;
(at your option) any later version.&#60;/p&#62;
&#60;p&#62;This program is distributed in the hope that it will be useful,&#60;br /&#62;
but WITHOUT ANY WARRANTY; without even the implied warranty of&#60;br /&#62;
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&#60;br /&#62;
GNU General Public License for more details.&#60;/p&#62;
&#60;p&#62;You should have received a copy of the GNU General Public License&#60;br /&#62;
along with this program; if not, write to the Free Software&#60;br /&#62;
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA&#60;/p&#62;
&#60;p&#62;The license is also available at &#60;a href=&#34;http://www.gnu.org/copyleft/gpl.html&#34; rel=&#34;nofollow&#34;&#62;http://www.gnu.org/copyleft/gpl.html&#60;/a&#62;&#60;br /&#62;
*/&#60;/p&#62;
&#60;p&#62;class PMetrics {&#60;/p&#62;
&#60;p&#62;var $_name = 'pmetrics';&#60;br /&#62;
var $_version = '0.2';&#60;br /&#62;
var $_url_homepage = 'http://davereid.net/projects/wordpress/pmetrics/';&#60;br /&#62;
var $_url_update = 'http://davereid.net/projects/wordpress/update.php';&#60;br /&#62;
var $_url_metrics = 'http://performancing.com/metrics/start';&#60;br /&#62;
var $_options = array();&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function PMetrics() {&#60;br /&#62;
//load_plugin_textdomain('pmetrics');&#60;br /&#62;
$this-&#38;gt;load_options();&#60;br /&#62;
add_action('admin_menu', array(&#38;#38;$this, 'add_options_page'));&#60;br /&#62;
add_action('wp_footer', array(&#38;#38;$this, 'add_code'));&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function load_options() {&#60;br /&#62;
//First use default values&#60;br /&#62;
$this-&#38;gt;_options = array();&#60;br /&#62;
$this-&#38;gt;_options['pm_ignore_admin_b'] = true;&#60;/p&#62;
&#60;p&#62;// Then overwrite with stored vales, adding default values not already&#60;br /&#62;
// present in stored vales.&#60;br /&#62;
$stored_options = get_option('pmetrics_options');&#60;br /&#62;
if ($stored_options &#38;#38;&#38;amp; is_array($stored_options)) {&#60;br /&#62;
foreach ($stored_options as $k =&#38;gt; $v) {&#60;br /&#62;
$this-&#38;gt;_options[$k] = $v;&#60;br /&#62;
}&#60;br /&#62;
} else {&#60;br /&#62;
update_option('pmetrics_options', $this-&#38;gt;_options);&#60;br /&#62;
}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function get_option($key) {&#60;br /&#62;
if (strpos($key, 'pm_') !== 0) {&#60;br /&#62;
$key = 'pm_' . $key;&#60;br /&#62;
}&#60;br /&#62;
if (array_key_exists($key, $this-&#38;gt;_options)) {&#60;br /&#62;
return $this-&#38;gt;_options[$key];&#60;br /&#62;
} else {&#60;br /&#62;
return null;&#60;br /&#62;
}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function set_option($key, $value) {&#60;br /&#62;
if (strstr($key, 'pm_') != 0) {&#60;br /&#62;
$key = 'pm_' . $key;&#60;br /&#62;
}&#60;br /&#62;
$this-&#38;gt;_options[$key] = $value;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function save_options() {&#60;br /&#62;
return update_option('pmetrics_options', $this-&#38;gt;_options);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function get_version() {&#60;br /&#62;
return $this-&#38;gt;_version;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function get_logo($link = 'http://performancing.com/') {&#60;br /&#62;
return &#34;&#34;;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function get_link() {&#60;br /&#62;
//preg_match('@^(?:http://)?([^/]+)@i', get_bloginfo('url'), $matches);&#60;br /&#62;
//$host = $matches[1];&#60;br /&#62;
$host = $_SERVER['HTTP_HOST'];&#60;br /&#62;
return 'http://performancing.com/metrics/' . $host;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function show_message($message = '', $type = 'updated') {&#60;br /&#62;
echo &#34;&#38;lt;div class=\&#34;{$type}\&#34;&#38;gt;&#34; . __($message, $this-&#38;gt;_name) . &#34;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#34;;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function update_check() {&#60;br /&#62;
// Initiate cURL&#60;br /&#62;
$ch = curl_init();&#60;/p&#62;
&#60;p&#62;// Grab some data such as WordPress version, PHP version, etc&#60;br /&#62;
$curlv = curl_version();&#60;br /&#62;
$pmetrics_update_data = array (&#60;br /&#62;
'plugin' =&#38;gt; $this-&#38;gt;_name,&#60;br /&#62;
'plugin_version' =&#38;gt; $this-&#38;gt;_version,&#60;br /&#62;
'wp_version' =&#38;gt; get_bloginfo('version'),&#60;br /&#62;
//'wp_name' =&#38;gt; get_bloginfo('name'),&#60;br /&#62;
'wp_url' =&#38;gt; get_bloginfo('url'),&#60;br /&#62;
'php' =&#38;gt; phpversion(),&#60;br /&#62;
'server' =&#38;gt; $_SERVER['SERVER_SOFTWARE'],&#60;br /&#62;
//'curl' =&#38;gt; curl_version(),&#60;br /&#62;
'curl_version' =&#38;gt; (is_array($curlv) ? $curlv['version'] : $curlv),&#60;br /&#62;
);&#60;br /&#62;
unset($curlv);&#60;/p&#62;
&#60;p&#62;// Encode data for POST form&#60;br /&#62;
function data_encode($data, $keyprefix = '', $keypostfix = '') {&#60;br /&#62;
assert(is_array($data));&#60;br /&#62;
$vars = null;&#60;br /&#62;
foreach ($data as $key =&#38;gt; $value) {&#60;br /&#62;
if (is_array($value)) {&#60;br /&#62;
$vars .= data_encode($value, $keyprefix . $key . $keypostfix . urlencode('['), urlencode(']'));&#60;br /&#62;
} else {&#60;br /&#62;
$vars .= $keyprefix . $key . $keypostfix . '=' . urlencode($value) . '&#38;#38;';&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
return $vars;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// Begin cURL session and send data, get response&#60;br /&#62;
curl_setopt($ch, CURLOPT_URL, $this-&#38;gt;_url_update);&#60;br /&#62;
curl_setopt($ch, CURLOPT_POST, TRUE);&#60;br /&#62;
curl_setopt($ch, CURLOPT_POSTFIELDS, data_encode($pmetrics_update_data));&#60;br /&#62;
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);&#60;br /&#62;
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);&#60;br /&#62;
$curl_content = trim(curl_exec($ch));&#60;/p&#62;
&#60;p&#62;// If cURL Error&#60;br /&#62;
if (curl_errno($ch) != CURLE_OK) {&#60;br /&#62;
$this-&#38;gt;show_message('cURL Error ' . curl_errno($ch) . ': ' . curl_error($ch) . '', 'error');&#60;br /&#62;
return;&#60;br /&#62;
}&#60;br /&#62;
curl_close($ch);&#60;/p&#62;
&#60;p&#62;// Display response&#60;br /&#62;
$message = '&#60;br /&#62;
PRIVACY INFORMATION&#60;br /&#62;
During this update, only the following information was sent to the update server:&#60;br /&#62;
' . print_r($pmetrics_update_data, true) . '&#60;br /&#62;
Any questions or concerns about this data or the update process should be sent to &#60;a href=&#34;mailto:dave@davereid.net.';&#34;&#62;dave@davereid.net.';&#60;/a&#62;&#60;br /&#62;
if (empty($curl_content)) {&#60;br /&#62;
$this-&#38;gt;show_message('Error performing update check (probably server error).' . $message, 'error');&#60;br /&#62;
} elseif (version_compare($curl_content, $this-&#38;gt;_version, '&#38;gt;')) {&#60;br /&#62;
$this-&#38;gt;show_message('There is a new version available! _url .'&#34; target=&#34;new&#34;&#38;gt;Visit the PMetrics page to download the new version (' . $curl_content . ').' . $message);&#60;br /&#62;
} else {&#60;br /&#62;
$this-&#38;gt;show_message('You have the latest version (' . $this-&#38;gt;_version . ').' . $message);&#60;br /&#62;
}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function get_code() {&#60;br /&#62;
global $userdata;&#60;br /&#62;
get_currentuserinfo();&#60;br /&#62;
if ($this-&#38;gt;get_option('pm_ignore_admin_b') &#38;#38;&#38;amp; isset($userdata) &#38;#38;&#38;amp; $userdata-&#38;gt;user_level &#38;gt; 7 /*userdata-&#38;gt;user_login = 'admin'*/) {&#60;br /&#62;
$code = &#34;&#38;lt;!-- Igorning Performancing Metrics while admin logged in --&#38;gt;n&#34;;&#60;br /&#62;
} else {&#60;br /&#62;
$code = &#34;&#38;lt;script type=\&#34;text/javascript\&#34;&#38;gt;n&#34;;&#60;br /&#62;
if ($userdata) {&#60;br /&#62;
$code .= &#34;z_user_name=\&#34;{$userdata-&#38;gt;user_login}\&#34;;n&#34;;&#60;br /&#62;
$code .= &#34;z_user_email=\&#34;{$userdata-&#38;gt;user_email}\&#34;;n&#34;;&#60;br /&#62;
}&#60;br /&#62;
$pmetrics_post_category = '';&#60;br /&#62;
$pmetrics_temp_title = trim(wp_title('', false));&#60;br /&#62;
if (is_home()) {&#60;br /&#62;
$pmetrics_post_title = 'Homepage';&#60;br /&#62;
} elseif (is_archive()) {&#60;br /&#62;
$pmetrics_post_title = 'Archives - ';&#60;br /&#62;
//$pmetrics_post_category = 'Archives';&#60;br /&#62;
if (is_category()) {&#60;br /&#62;
$pmetrics_post_title .= 'Category - ' . $pmetrics_temp_title;&#60;br /&#62;
//$pmetrics_post_category .= ' - Category';&#60;br /&#62;
} elseif (is_author()) {&#60;br /&#62;
$pmetrics_post_title .= 'Author - ' . $pmetrics_temp_title;&#60;br /&#62;
//$pmetrics_post_category .= ' - Author';&#60;br /&#62;
} elseif (is_date()) {&#60;br /&#62;
$pmetrics_post_title .= 'Date - ';&#60;br /&#62;
//$pmetrics_post_category .= ' - Date';&#60;br /&#62;
if (is_day()) {&#60;br /&#62;
$pmetrics_post_title .= the_date('F jS, Y', '', '', false);&#60;br /&#62;
} elseif (is_month()) {&#60;br /&#62;
$pmetrics_post_title .= the_date('F, Y', '', '', false);&#60;br /&#62;
} elseif (is_year()) {&#60;br /&#62;
$pmetrics_post_title .= the_date('Y', '', '', false);&#60;br /&#62;
}&#60;br /&#62;
} else {&#60;br /&#62;
$pmetrics_post_title .= $pmetrics_temp_title;&#60;br /&#62;
}&#60;br /&#62;
} elseif (function_exists('is_tag') &#38;#38;&#38;amp; function_exists('UTW_ShowCurrentTagSet') &#38;#38;&#38;amp; is_tag()) {&#60;br /&#62;
$pmetrics_post_title .= 'Tag - ';&#60;br /&#62;
ob_start();&#60;br /&#62;
UTW_ShowCurrentTagSet('tagsettextonly');&#60;br /&#62;
$pmetrics_post_title .= ob_get_contents();&#60;br /&#62;
ob_end_clean();&#60;br /&#62;
//$pmetrics_post_category .= 'Tag';&#60;br /&#62;
} elseif (is_page()) {&#60;br /&#62;
$pmetrics_post_title = 'Page - ' . $pmetrics_temp_title;&#60;br /&#62;
//$pmetrics_post_category = 'Page';&#60;br /&#62;
} elseif (is_search()) {&#60;br /&#62;
global $s;&#60;br /&#62;
$pmetrics_post_title = 'Search - ' . $s; //htmlspecialchars?&#60;br /&#62;
//$pmetrics_post_category = 'Search';&#60;br /&#62;
} elseif (is_404()) {&#60;br /&#62;
$pmetrics_post_title = 'Error - 404';&#60;br /&#62;
//$pmetrics_post_cateogry = 'Error';&#60;br /&#62;
} elseif (is_single()) {&#60;br /&#62;
$c = get_the_category();&#60;br /&#62;
$pmetrics_post_title = $pmetrics_temp_title;&#60;br /&#62;
$pmetrics_post_category = $c[0]-&#38;gt;cat_name;&#60;br /&#62;
}&#60;br /&#62;
$code .= &#34;z_post_title=\&#34;{$pmetrics_post_title}\&#34;;n&#34;;&#60;br /&#62;
$code .= &#34;z_post_category=\&#34;{$pmetrics_post_category}\&#34;;n&#34;;&#60;br /&#62;
$code .= &#34;&#38;lt;/script&#38;gt;n&#34;;&#60;br /&#62;
$code .= &#34;&#38;lt;script id=\&#34;stats_script\&#34; type=\&#34;text/javascript\&#34; src=\&#34;http://metrics.performancing.com/wp.js\&#34;&#38;gt;&#38;lt;/script&#38;gt;&#34;;&#60;br /&#62;
}&#60;br /&#62;
return $code;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function add_code() {&#60;br /&#62;
echo $this-&#38;gt;get_code();&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function add_options_page() {&#60;br /&#62;
if (function_exists('add_options_page')) {&#60;br /&#62;
add_options_page(__('PMetrics Options', $this-&#38;gt;_name), __('PMetrics', $this-&#38;gt;_name), 8, basename(__FILE__), array(&#38;#38;$this, 'show_options_page'));&#60;br /&#62;
}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function option_checkbox($var, $label = '') {&#60;br /&#62;
echo &#34;&#38;lt;input type=\&#34;checkbox\&#34; name=\&#34;{$var}\&#34; id=\&#34;{$var}\&#34; value=\&#34;true\&#34;&#34;;&#60;br /&#62;
if ((bool) $this-&#38;gt;get_option($var)) {&#60;br /&#62;
echo &#34; checked=\&#34;checked\&#34;&#34;;&#60;br /&#62;
}&#60;br /&#62;
echo &#34; /&#38;gt;n&#34;;&#60;br /&#62;
echo &#34;&#38;lt;label for=\&#34;{$var}\&#34;&#38;gt;&#34; . __($label, $this-&#38;gt;_name) . &#34;&#38;lt;/label&#38;gt;&#34;;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// ----------------------------------------------------------------------------&#60;br /&#62;
function show_options_page() {&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
if (isset($_POST['pmetrics_save'])) {&#60;br /&#62;
unset($_POST['pmetrics_save']);&#60;br /&#62;
foreach ($this-&#38;gt;_options as $key =&#38;gt; $v) {&#60;br /&#62;
switch (substr($key, -2)) {&#60;br /&#62;
case '_b':&#60;br /&#62;
$this-&#38;gt;set_option($key, (bool) $_POST[$key]);&#60;br /&#62;
break;&#60;br /&#62;
default:&#60;br /&#62;
if (array_key_exists($key, $_POST)) {&#60;br /&#62;
$this-&#38;gt;set_option($key, $_POST[$key]);&#60;br /&#62;
}&#60;br /&#62;
break;&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
$this-&#38;gt;save_options();&#60;br /&#62;
$this-&#38;gt;show_message('Options saved.');&#60;br /&#62;
}&#60;br /&#62;
else if (isset($_POST['pmetrics_update']))&#60;br /&#62;
{&#60;br /&#62;
$this-&#38;gt;update_check();&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#38;lt;div class=&#34;wrap&#34;&#38;gt;&#60;br /&#62;
&#38;lt;form name=&#34;pm-options&#34; method=&#34;post&#34; action=&#34;&#38;lt;?php echo $_SERVER[&#34;REQUEST_URI&#34;]; ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e('PMetrics Options', $this-&#38;gt;_name) ?&#38;gt;&#38;lt;/h2&#38;gt;&#60;/p&#62;
&#60;p&#62;Plugin Homepage &#124;&#60;br /&#62;
get_link() ?&#38;gt;&#34; target=&#34;_blank&#34;&#38;gt;&#38;lt;?php echo get_bloginfo('name') ?&#38;gt; Metrics &#124;&#60;br /&#62;
Performancing&#60;/p&#62;
&#60;p&#62;&#38;lt;fieldset id=&#34;pmetrics_logo&#34; class=&#34;options&#34;&#38;gt;&#60;br /&#62;
&#38;lt;legend&#38;gt;&#38;lt;?php _e('Basic Options', $this-&#38;gt;_name) ?&#38;gt;&#38;lt;/legend&#38;gt;&#60;/p&#62;
&#60;p&#62;    * &#38;lt;?php $this-&#38;gt;option_checkbox('pm_ignore_admin_b', 'Ignore admin visits') ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/fieldset&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;p class=&#34;submit&#34;&#38;gt;&#60;br /&#62;
&#38;lt;input type=&#34;submit&#34; name=&#34;pmetrics_save&#34; value=&#34;&#38;lt;?php _e('Save Options', $this-&#38;gt;_name) ?&#38;gt; »&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;?php if (function_exists('curl_init')) { ?&#38;gt;&#38;lt;input type=&#34;submit&#34; name=&#34;pmetrics_update&#34; value=&#34;&#38;lt;?php _e('Check for updates', $this-&#38;gt;_name) ?&#38;gt;&#34; /&#38;gt;&#38;lt;?php } ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;h3&#38;gt;&#38;lt;?php _e('Performancing Metrics Button', $this-&#38;gt;_name) ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;?php _e('If you want to show a button image for Performancing on your blog, insert the following HTML code wherever you want in your template:', $this-&#38;gt;_name) ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php echo htmlspecialchars($this-&#38;gt;get_logo()) ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/form&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;}&#60;/p&#62;
&#60;p&#62;$pmetrics =&#38;#38; new PMetrics();&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;/blockquote&#62;</description>
</item>
<item>
<title>Eren konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-721</link>
<pubDate>Pts, 18 Dec 2006 02:07:54 +0000</pubDate>
<dc:creator>Eren</dc:creator>
<guid isPermaLink="false">721@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Ama bulamıyorum işte o eklentiyi :)
&#60;/p&#62;</description>
</item>
<item>
<title>erayendes konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-720</link>
<pubDate>Pts, 18 Dec 2006 01:11:48 +0000</pubDate>
<dc:creator>erayendes</dc:creator>
<guid isPermaLink="false">720@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Doğrudur. Eklenti ise kolay bir kurulum verip sonuçları yönetim panelinde göstermeyi sağlıyor.
&#60;/p&#62;</description>
</item>
<item>
<title>Eren konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-719</link>
<pubDate>Pts, 18 Dec 2006 01:09:14 +0000</pubDate>
<dc:creator>Eren</dc:creator>
<guid isPermaLink="false">719@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Bu anladığım kadarıyla istatistiği site üzerinde tutuyor. Yani bir eklenti değil. Google istatistik gibi. Benim üstde verdiğim ise buna benzer bir eklentiymiş ve admin panelinde takip ediliyormuş. Yani başka bir site üzerinde veri kaydı tutmuyor.
&#60;/p&#62;</description>
</item>
<item>
<title>erayendes konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-714</link>
<pubDate>Paz, 17 Dec 2006 23:21:25 +0000</pubDate>
<dc:creator>erayendes</dc:creator>
<guid isPermaLink="false">714@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://performancing.com/metrics/start&#34; rel=&#34;nofollow&#34;&#62;http://performancing.com/metrics/start&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Eren konu: "Pmetrics istatistik eklentisi (en iyisi)"</title>
<link>http://www.wordpress-tr.com/forum/topic/155#post-641</link>
<pubDate>Cts, 16 Dec 2006 00:50:07 +0000</pubDate>
<dc:creator>Eren</dc:creator>
<guid isPermaLink="false">641@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;PMetrics isimli bir istatistik eklentisi olduğunu öğrendim. Bu eklenti Google Analytics benzeri çok sağlam bir eklentiymiş. Site istatistiklerini çok iyi tutuyormuş.&#60;/p&#62;
&#60;p&#62;Ancak üretici sitesinde eklentiyi bulamadım. Üretici sitesi wordpress eklentilerini kaldırmış. Bu eklentiyi wordpress son sürümü için nereden bulabilirim.&#60;/p&#62;
&#60;p&#62;Bu yok ise buna benzer bir eklenti var mı?&#60;/p&#62;
&#60;p&#62;Teşekkürler.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
