New plugin - MQ ReLinks

MQ ReLinks MQ ReLinks is a wordpress plugin which allows you to easy make all external links in posts, pages, comments and author links non external, by using a redirect. In stead of a direct link to another site, the plugin will create a link to a out.php file that will redirect to the requested UR
read more:

AdSense Revenue Sharing 1.2

New version 1.2 AdSense Revenue Sharing plugin released. Fixed it to work with wp 2.5 Added new option -> Position You can now choose where to place the ad when the “Show all” function is on. I.E: top, bottom, top left, top right, bottom left, bottom right You can grab it here: AdSe
read more:

Free youtube video downloader script

Here`s a free php youtube video downloader script. It can be integrated in wordpress or any other site that uses php. You can use it as by linking to yoursite/youtube.php or by including it with a iframe. To include it with a iframe you have to upload youtube.php to your blog and then go to the wp-a
read more:

MQ Punk Free WordPress Theme

MQ Punk Wordpress Theme comes with the following features: * Widget Ready * Compatible with the latest WordPress version (Ver.2.5) * 2 columns * Right sidebar * Simple banner rotator * Valid XHTML and CSS Tested on: * The following browsers: IE6, IE7, FireFox 2 Demo Download
read more:

Free Social Bookmark Script generator

Here`s a free Social Bookmark Script generator I made. It`s actually a clone of another website that I don`t want to mention. Check it out, you might like it and it could get you lots of backlinks. Host your own Social Bookmark Script generator website. Offer a free service to the world. Get free b
read more:

Bragging time

Categories:  Silenced general, Silenced news, Silenced websites

As you remember a few posts ago I announced the launch of my new site IntelliRank.net

Now I am going to describe what it dose so you can stop reading if you don`t care :P

There are some nice buttons for bloggers or website owners. Currently the buttons come in two sizes, small a one that only shows the Google Page Rank value of the visited page and the large one that comes in three colors and shows Google and Alexa Page Rank, the number of indexed links in Yahoo and the number of Technorati backlinks (blog reactions) of the visited page.

When you submit your URL to IntelliRank.net you get the following data:

  1. Page Ranks from Google, Alexa, Quantcast, Compte, Technorati
  2. Google Page Rank validation
  3. Google Page Rank prediction
  4. The number of backlinks in Google, Yahoo, Live Search, Altavista, Alltheweb
  5. The number of indexed pages in Google, Yahoo, Live Search, Altavista, Alltheweb
  6. The number of bookmarks in del.icio.us and technorati.com
  7. Checks Yahoo and DMOZ directories for backlinks

For those with more advanced needs the following should come in handy.

Webmaster Tools & SEO Tools

  1. Multiple data center page rank check
    Checks your page rank in multiple data centers.
  2. Keyword phrase list generator
    Works to create lists of various keyword phrase permutations based on individual keywords and phrases you input.
  3. Meta tag generator
    Generates perfect meta tags for your website.
  4. Search engine saturation tool
    Shows you how many pages you have indexed compared to competing sites. Each page has its own chance to rank. Sites with thousands of pages indexed are relevant for thousands and thousands of unique search queries because they have so many pages in the search lottery.
  5. Keyword Research Tool
    This tool allows you to do keyword research by cross referencing many SEO tools.
  6. Keyword Density Analyzer
    Using a keyword density analysis tool can make it easier to find a few good keyword phrases to use.
  7. Search Engine Spider Test
    Shows the source code of a page, all outbound links, and common words and phrases.
  8. Link suggestion
    Generates Google and Yahoo! searches for your keyword + the term from the keyword list. Keep in mind that the value of a link is typically going to be at least partly inversely proportional to how easy it is to get.
  9. Keyword List Cleaner And Number Stripper
    Cleans and strips your keyword list from unvwanted terms.
  10. Reciprocal link checking
    allows you to check your reciprocal links free to see if link partners are still linking back at your site.

Disable news in wp-admin

Categories:  Silenced general, Silenced tutorials, Silenced wordpress

This is the fastest way to remove the news from the wordpress admin dashboard.

Open up your favorite ftp program and connect to your blog.

In the wp-admin folder find the file index.php, make a backup of this file just in case u mess it up and you have to restore it later.

Now open up index.php and around line 15 you should find the following:

add_action( 'admin_head', 'index_js' );

Just comment out that line with double slashes like this:

//add_action( 'admin_head', 'index_js' );

Save the file and you`re done!

I only did this to my blog because I wanted to clean it up a bit.

Keep in mind that if you disable the news you will not see the latest updates from “WordPress Development Blog”. This can be a bad thing.

However, if you want to keep the “WordPress Development Blog” news and only disable the “Other WordPress News” do the following:

In stead of commenting out the line like told above, look for this:

jQuery('#planetnews').load('index-extra.php?jax=planetnews');

It should be around line 10. Just remove it, save the file and you`re done.

I only did this on Version 2.3 so if your version is prior to this it might not work exactly like this but you got the idea. It might not be the best way to do it but it`s the simplest and fastest for me.

Enjoy!

Simple text based hit counter

Categories:  Silenced general, Silenced tutorials, Silenced work

First make a new file called stats.txt and one called stats.php

Give write permission on the .txt file (CHMOD 666 or 777 if you don`t see a growing count)

php code for .php file


<?php
//set data file name/path
$data='stats.txt';
//read content fom the .txt file
$show = file_get_contents($data);
//write new content to the .txt file
$new=file_put_contents($data,$show+1);
//show your hit counter
echo $show;
?>

This is faster thran fopen() and if the data file dose not exists the script creates it, if it can.

continue: PreviousNext