Archive for the ‘Products’ Category

Post Corrector Plugin Updated (v1.2)

Monday, April 14th, 2008

Added ability to add custom post perpend and append codes on single posts and on first N posts within the loop (just like with blogger.com) so now You may easily build custom adsesne blocks. Also added feature to add custom footer and header (nothing new but just all in one plugin functionality). Please report any bugs or considerations bout this plugin.

Download updated version

Popularity: 51% [?]

Post Corrector Plugin

Tuesday, March 25th, 2008
  • Allows to enable automatic category guessing. If you have many categories or you are posting remotely - greatly eases category assignments;
  • Allows Bulk Categories Creation - just enter Categories in Text Area and all of them will be created in a bulk.
  • Automatic Keyword Linking - Ideal for PPC programs - enter keywords you’d like to hyperlink in all posts and thats all.
  • Append and prepend certain html codes to single posts - no need to alter themes if you just want to add some Adsense codes.

INSTALL

1) Simply copy to your wp-content/plugins directory then go to Plugins Section in WP Admin and enable plugin.
2) Proceed to Options -> Post Corrector and Auto Keywords pages. Manage -> Bulk Create Categories to create categories in bulk.

UPDATES

Don’t forget to check periodically for updates here at http://www.lordtime.com

DOWNLOAD

Download Post Corrector Plugin

Tags: , , , ,

Popularity: 64% [?]

PressRow Tribute to Peugeot WordPress Theme Released

Tuesday, March 18th, 2008

I’m proud to present new Wordpress Theme inspired by PressRow

New theme has slightly modified design and Widgets support (missing on original theme). It has top Peugeot 308 images to reflect new breathe of this nice theme.

Below is a screenshot:

Download PressRow Peugeot Tribute Theme

Tags: , , ,

Popularity: 67% [?]

Fluid Red Wordpress Theme released

Thursday, January 10th, 2008

This theme is a direct descendant from Fluid Blue Wordpress theme created by Srini G

The main difference is that this theme is Red colored with some Gradient background

Second improvement it has embedded Adsense Code optimized for performance (tested on my several blogs)

Please find theme details and instructions here

Banking

Popularity: 48% [?]

Mobile Toys - Cell Phones Datbase Website was Launched

Friday, December 14th, 2007

I’m proud to announce opening of my new website in blogforward network – Mobile Toys. The site is aimed to provide its users recent up to date news about cell phone/gadget releases and give full access to directory of the cell phones available on the market. All users are free to leave any comments about phones they like/use.

Currently i’m are gathering affiliate information to provide more details and information about best prices available for the corresponding phones. If you want us to become your affiliate - please contact us via email/skype. Your link will be placed next to each phone in our database as buy here.

I hope you like my initiative and will let me know what else you’d consider to obtain from Mobile Toys

Site is built on Wordpress with custom product database plugin, that wil be available soon as a commercial wordpress plugin.

Popularity: 30% [?]

Wordpress Image Gallery Generator Plugin updated

Tuesday, December 11th, 2007

Folks, please accept new version of my old but useful wordpress plugin – Image Gallery Post Generator

New version supports:

  • Add images as attachments (so they can be resued)
  • Fixed some silly bugs (page/post selector)
  • More image generation options (no text, exif support, etc)

General improvement is a support of image attachments whcih makes this plugin really usefull when you want to publish your own set of images withiut using third party hosting services just using wordpress.

Download recent version

Tags: , ,

Popularity: 29% [?]

Newstrack product

Friday, December 7th, 2007

I’m pleased to announce close release date of one of my most popular products – Newstrack.

Newstrack is a system for feed crawling (engine that is used in NewsAlloy 2) and content reexport to external blogs. Easy setup and maintenece as release will be delivered as wordpress plugin!

Project is commercial and price will be announced in furthcoming weeks. All i need to do is to complete product documentation.

Some testimonials.

After starting 6 blogs on July on blogspot that is filled with newstrack my earnings in Adsense increased in 3.5 times (Was ~ 200 USD/month. Now they are reached ~ 750 USD/mo and keeps growing). So after installing this system in July i earned as low as $2100 USD. And ernings keeps growing. Now average income from Newstrack is about 600 USD /Mo.

News Alloy

PS. News Alloy 2 release is delayed as i focused on getting good income streams to fund development. Still no investors or purchasers. However i’m going to sell News Alloy via closed auction (not ebay). Price won’t be high.

Popularity: 23% [?]

Mass Post Manager for Wordpress Now suports Wordpress 2.3

Sunday, October 28th, 2007

Mass Post Manager for Wordpress Plugin was updated tonight.

Added support of taxonomy scheme present in Wordpress 2.3 and higher versions. Please consider this release as beta but it worked under my test environment.

Now Plugin must work on all Wordpress installations.

Popularity: 32% [?]

Mass Post Manager Updated

Wednesday, May 16th, 2007

I’m pleased to announce update of wordpress plugin Mass Post ManagerThis plugin allow to do the following things:

  • Delete all posts and/or commentsOF selected state
  • Move all posts from one category to another

UPDATE: Now you may delete all unapproved/spam comments (i e spam) in one click. Very useful if your blog full of pending junk!More details available here

Popularity: 15% [?]

How to post remotely to blogger.com - Working PHP Example

Thursday, May 3rd, 2007

Recently i met curious problem – how to make remote post to blogger.com.

This task was really trivial before Google implemented their complex authentication mechanisms. After spending 3 hours to debug things i made simple solution which is working fine for me.

All code was written and based on GData API .

I will not comment my code below – you must easily inderstand it yourself:

  • $arr – array to post ( indexes – title, subtitle, body, d_date, etc)
  • $blog – external blog parameters. $blog[’xmlrpc’] – XML RPC URL of your blogger blog to post to (see link above)

Here we go:

$entry .= “\r\n”;
$entry .= ““;
$entry .= ”

” . date(”c”, strtotime($arr[’d_date’])) . ““;
<![CDATA[{$arr[’title’]}]]> $entry .= “”;

if( $arr[’category’] ) {
$entry .= ““;
}

if( $arr[’body’] ) {
$entry .= ““;
$entry .= ““;
$entry .= “
“;
if( $arr[’subtitle’] ) {
$entry .= ““;
$entry .= ““;
$entry .= “
“;
}
}elseif( $arr[’subtitle’] ) {
$entry .= ““;
$entry .= ““;
$entry .= “
“;
}
if( $arr[’author’] ) {
$entry .= ““;
$entry .= “{$arr[’author’]}“;
$entry .= “
“;
}
$entry .= “”;

if( ! $this->blog_token[$this->blog_id][’Auth’] )
{
// AUTHENTICATE WITH GOOGLE !!!
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, “https://www.google.com/accounts/ClientLogin” );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 4);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, “Email={$blog[’auth_login’]}&Passwd={$blog[’auth_pwd’]}&service=blogger&source=Nst-Nst-4.0″);
curl_setopt($ch, CURLOPT_POST, true);

$this->client->auth = curl_exec($ch);

if (curl_errno($ch)) {
$this->ret = curl_error($ch);
break;
} else {
curl_close($ch);
$this->ret = 0;

if( strpos( $this->client->auth, ‘Auth=’) == false) {
$this->ret = 1;
$this->clent->error = “Google Unauthorized”;
break;
}
preg_match_all(’!(\S+)=(\S+)!msi’, $this->client->auth, $o, PREG_SET_ORDER);
for($_i=0; $_i
$this->blog_token[$this->blog_id][$o[$_i][1]] = $o[$_i][2];
}
}
}

$ch = curl_init();

$headers = array( “Authorization: GoogleLogin Auth={$this->blog_token[$this->blog_id][’Auth’]}”, “Content-type: application/atom+xml” );
curl_setopt($ch, CURLOPT_URL, $blog[’xmlrpc’]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 4);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_UNRESTRICTED_AUTH, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $entry);
curl_setopt($ch, CURLOPT_POST, true);

$this->client->message = curl_exec($ch);

if (curl_errno($ch)) {
$this->ret = curl_error($ch);
} else {
curl_close($ch);
$this->ret = 0;
}

Popularity: 28% [?]