Scoop -- the swiss army chainsaw of content management
Front Page · Everything · News · Code · Help! · Wishlist · Project · Scoop Sites · Dev Notes · Latest CVS changes · Development Activities
Scoop Box Exchange - Show Box: adman_admin 1.00

Author: coryking [Info]

Description:

Ad Manager - Control Panel. See the install instructions in the code to set up the database then click on "help" once you get it up. You will need the adman_showads box to complete this feature.

Box Code:

# ============================================================
# INSTALL INSTRUCTIONS
# ============================================================
#
# ------------------------------------------------------------
# STEP 1: Create Database Schema
# ------------------------------------------------------------
#
# CREATE TABLE adman_positions (
# adman_position_id int not null auto_increment primary key,
# name varchar(20) not null
#);
# CREATE TABLE adman_content (
# adman_content_id int not null auto_increment primary key,
# name varchar(20),
# content_reg text,
# content_anon text
#);
#
# CREATE TABLE adman_position_content (
# id int not null auto_increment primary key,
# adman_position_id int not null,
# adman_content_id int not null,
# impressions bigint not null default 0,
# enabled tinyint not null default 1,
# last_seen datetime
#);
#
# CREATE INDEX idx_adman_pc on adman_position_content (adman_position_id,adman_content_id);
# INSERT INTO ops (op, template, func, is_box, enabled) VALUES('adman_admin', 'default_template', 'adman_admin', 1, 1);
# INSERT INTO admin_tools VALUES('adman_admin', 40, 'Ad Manager', 'Ad Manager', 'ad_admin', 'adman_admin', 1);


my $help=q{
============================================================
ABOUT
============================================================
Project Name: Adman, your friendly scoop ad manager
Author: Cory R. King - coryking@photographica.org
============================================================
INTRODUCTION
============================================================
Ad Manager (adman) is an attempt to help manage all the
different ad slots, or positions, on your scoop site.

Adman allows you to have chunks of content that you can call
from a box. You can also rotate through many chunks on the
same position. For now, Adman keeps a count of the number
of impressions each position recives.

One interesting feature provided by adman is the ability to
deliver a different chunk of content for anonymous users
then you deliver for registered users.

Through experimentation with adsense, the original author of
Adman found that his registered users rarely clicked on any
ads. Most of the revenue generated was through anonymous
clicks. Using Adman, he can now target a different set
of ads that registered users will hopefully click on.

============================================================
USING ADMAN ON YOUR WEBSITE
============================================================
Adman has been designed to be __somewhat__ easy to use.
While we feel your pain, this program is designed to be
more of a quick hack then a full fledged ad management system.
Don't scare yourself though, adman is pretty slick!

Hopefully this documentation will help you plow into the
wonderful world of advertising. May you make much moola!

------------------------------------------------------------
Creating an ad position.
------------------------------------------------------------
An ad position is a slot in which to place one or more
chunks of content. You can create as many positions are you
require for your website; for example you can create a
position for your left nav column, and one for your footer.

To create a position:
1) goto http://"yoursite"/adman_admin
2) click "add new position"
3) type a name for your position ("left_column") and click "add"
4) add content using one of the methods outlined below

------------------------------------------------------------
Creating content
------------------------------------------------------------
Content is what fills positions on your website. You can
have many content chunks per position, and you have a chunk
of content used in many positions.

To create new content:
1) You must first create at least one ad position
2) Next to the position you want, click
"Add new content."
3) Give the content a unique name, and add the raw HTML
you want to use for the ad. For more info on anonymous
vs registered user content, see the introduction

To add content to a position:
1) You must first create at least one ad position
2) You must have at least one chunks of content
3) Next to the position you want, click
"Add Existing Content."
4) Pick the content you want to add and click "Add"

------------------------------------------------------------
Creating rotating content
------------------------------------------------------------
You can rotate through muplitple chunks of content on a
given position. You can set this rotation up by using a
combination of the methods for creating content.

The system will automatically rotate through the content.

------------------------------------------------------------
Adding positions to your website
------------------------------------------------------------
You can add many positions to any block. The box that
inserts the HTML does not do anything to the content
chunk you want added.

To add a position to a block:
1) You must remember the name you gave the position
2) In the block tool, load the block you wish to edit
3) In the location you want the content chunk add the
following:

|BOX,adman_showads,"position_name"|

4) Replace "position_name" with the name of your position.
5) Save the box and enjoy!
};


my $content = "<h1>Your Friendly Ad Manager</h1>";
my $action = $S->{CGI}->param('action') || 'main';

return "You need the ad_admin permission to use this box" unless($S->have_perm('ad_admin'));

# ===========================================
# Default Action (also the last in the list)
# ===========================================
if($action eq 'help')
{
return "$content<pre>$help</pre><a href='$S->{UI}->{VARS}->{site_url}/adman_admin'>Return</a> ";
}
$content .= "<a href='?action=help'>Help</a><p>";

if($action eq 'addposition')
{
if($S->{CGI}->param('name'))
{
my $qn=$S->{DBH}->quote($S->{CGI}->param('name'));
$S->db_insert({
INTO=>'adman_positions',
COLS=>'name',
VALUES=>$qn
});

# jump back to the main screen
$action='main';
} else {
$content .= qq(
<form action='$S->{UI}->{VARS}->{site_url}/adman_admin/' method='post'>
<input type='hidden' name='action' value='addposition'>
Pick a name, any name: <input type='text' value='' name='name'> <input type='submit' value='Add' name='go'>
</form>
);
}


}

if($action eq 'addoldcontent')
{
my $pos_id=$S->{CGI}->param('ad_position_id');
if($S->{CGI}->param('ad_content_id'))
{
my $new_id=$S->{CGI}->param('ad_content_id');

# now link this up with our position
$S->db_insert({
INTO=>'adman_position_content',
COLS=>'adman_position_id, adman_content_id',
VALUES=>"$pos_id, $new_id",
});


$action = 'main';

} else {
my ($rv, $sth) = $S->db_select({
WHAT=>'adman_content_id, name',
FROM=>'adman_content',
ORDER_BY=>'name'
});

$content .= qq(
<form action='$S->{UI}->{VARS}->{site_url}/adman_admin/' method='post'>
<input type='hidden' name='action' value='addoldcontent'>
<input type='hidden' name='ad_position_id' value='$pos_id'>
Pick an ad: <select name='ad_content_id'>
);

while(my $ad = $sth->fetchrow_hashref())
{
$content .= qq(<option value='$$ad{adman_content_id}'>$$ad{name}</option>);
}

$content .= "</select><input name='go' value='Add me!!' type='submit'></form>";

}
}

if($action eq 'addnewcontent')
{
my $pos_id=$S->{CGI}->param('ad_position_id');
if($S->{CGI}->param('name'))
{
my $qn=$S->{DBH}->quote($S->{CGI}->param('name'));
my $qa=$S->{DBH}->quote($S->{CGI}->param('content_anon'));
my $qr=$S->{DBH}->quote($S->{CGI}->param('content_reg'));

my ($rv, $sth) = $S->db_insert({
INTO => 'adman_content',
COLS => 'name, content_anon, content_reg',
VALUES =>"$qn, $qa, $qr",
});

($rv, $sth) = $S->db_select({
WHAT => 'LAST_INSERT_ID()',
FROM => 'adman_content'});
my $new_id = $sth->fetchrow();

# now link this up with our position
$S->db_insert({
INTO=>'adman_position_content',
COLS=>'adman_position_id, adman_content_id',
VALUES=>"$pos_id, $new_id",
});

$action='main';
} else {

$content = qq(
<form action='$S->{UI}->{VARS}->{site_url}/adman_admin/' method='post'>
<input type='hidden' name='action' value='addnewcontent'>
<input type='hidden' name='ad_position_id' value='$pos_id'>
Name me: <input type='text' value='' name='name'><p>

<h2>Anonymous Content</h2>
<textarea name='content_anon' wrap='virtual'></textarea>
<h2>Registered User Content</h2>
<textarea name='content_reg' wrap='virtual'></textarea>
<p><input type='submit' value='Add me!' name='go'>
</form>
);
}

}

if($action eq 'edit')
{
my $cid=$S->{CGI}->param('adman_content_id');

if($S->{CGI}->param('go'))
{
my $qa=$S->{DBH}->quote($S->{CGI}->param('content_anon'));
my $qr=$S->{DBH}->quote($S->{CGI}->param('content_reg'));

my ($rv, $sth) = $S->db_update({
WHAT => 'adman_content',
SET => "content_anon=$qa, content_reg=$qr",
WHERE=>"adman_content_id=$cid",
});


$action='main';
} else {

my ($rv, $sth) = $S->db_select({

WHAT=>'name, content_anon, content_reg',
FROM=>'adman_content',
WHERE=>"adman_content_id=$cid",
});

my $row = $sth->fetchrow_hashref();

$content = qq(
<form action='$S->{UI}->{VARS}->{site_url}/adman_admin/' method='post'>
<input type='hidden' name='action' value='edit'>
<input type='hidden' name='adman_content_id' value='$cid'>
Editing $$row{name}:

<h2>Anonymous Content</h2>
<textarea name='content_anon' wrap='virtual'>$$row{content_anon}</textarea>
<h2>Registered User Content</h2>
<textarea name='content_reg' wrap='virtual'>$$row{content_reg}</textarea>
<p><input type='submit' value='Add me!' name='go'>
</form>
);
}

}

if($action eq 'main') {
# get a list of all the ads and their content info
my ($rv, $sth) = $S->db_select({
WHAT=>'ap.*, apc.impressions, apc.adman_content_id, ac.name as content_name',
FROM=>q(
adman_positions ap
LEFT JOIN adman_position_content apc ON ap.adman_position_id=apc.adman_position_id AND apc.enabled=1
LEFT JOIN adman_content ac ON apc.adman_content_id = ac.adman_content_id
),

ORDER_BY=>'ap.name, ac.name',
DEBUG=>1
});

my $row_content;
my $last_apname;
my $total;
while(my $row = $sth->fetchrow_hashref())
{



# ---------------------------------------------------------
if($$row{adman_position_id} != $last_apname)
{
if($last_apname)
{
$row_content .= qq(</table></td></tr><tr><td bgcolor='#DDDDDD'><small>$total</small></td><td bgcolor='#DDDDDD'><small><a href="$S->{UI}->{VARS}->{site_url}/adman_admin/?action=addnewcontent&ad_position_id=$last_apname">Add New Content</a> - <a href="$S->{UI}->{VARS}->{site_url}/adman_admin/?action=addoldcontent&ad_position_id=$last_apname">Add Existing Content</a></small></td></tr></table><p>) if($row_content);
}

# do the shindig..
$row_content .= qq(
<table cellspacing='0' width='100%' style='border: 1px solid #AAA;'>
<tr><td valign='top' width='125' bgcolor='#DDDDDD'><b>$$row{name}</b></td><td valign='top'>
<table cellspacing='0' width="100%">

); # ... to be continued below
$last_apname = $$row{adman_position_id};
$total=0;
}
# ---------------------------------------------------------

# now actually render a row
$row_content .= qq(
<tr><td width='125'>$$row{content_name}</td><td><small>$$row{impressions}</small></td><td align='right'><small><a href="$S->{UI}->{VARS}->{root_dir}/adman_admin/?action=edit&adman_content_id=$$row{adman_content_id}">edit</a> - <a href="$S->{UI}->{VARS}->{root_dir}/adman_admin/?action=hide&adman_content_id=$$row{adman_content_id}">remove</a></small></td></tr>
) if($$row{content_name});

$total += $$row{impressions};
}

$content .= qq($row_content</table></td></tr>
<tr><td bgcolor='#DDDDDD'><small>$total</small></td><td bgcolor='#DDDDDD'><small><a href="$S->{UI}->{VARS}->{site_url}/adman_admin/?action=addnewcontent&ad_position_id=$last_apname">Add New Content</a> - <a href="$S->{UI}->{VARS}->{site_url}/adman_admin/?action=addoldcontent&ad_position_id=$last_apname">Add Existing Content</a></small></td></tr></table>) if($row_content);
$content .= qq(<p><a href="$S->{UI}->{VARS}->{site_url}/adman_admin/?action=addposition">add new position</a>);

}


return $content;
Display: Sort:
Very practical for christian louboutin outlet (none / 0) (#1)
by joeychen on Sun Oct 16, 2016 at 10:36:16 PM PST

Simplicity, elegance and luxury. Its Prada. This Italian fashion house was established in replica handbags uk Milan in 1913 by Mario Prada. It started as a leather goods company selling shoes, bags and other leather items. When Miuccia inherited the company from her grandfather she changed the company's direction towards haute couture and presented the first ready-to-wear collection in 1989. Miuccia seemed very unlikely a successful candidate for heading a fashion company. She was a former mime artist with a PhD in political sciences. But Miuccia proved everyone wrong and now this label is one of the top luxury fashion brands. Lately the business for the brand went up following Hollywood movie Devil wears Prada. In 1992 Miuccia created the Miu Miu line which was targeted at younger audience and offered the new design line at lower prices. However this is not the only option to buy discounted luxury bags from this Italian brand, there are also seasonal handbag sales that sometimes offers few beautiful luxury bags on sale as well. Today the company offers ready-to-wear fashion for men and women, shoes, accessories, including purses, perfumes and skin care. These purses will make you stand out in cheap christian louboutin outlet crowd. If you cannot afford original handbag there are similar Prada bag (such as fake messenger bag) or a chance to choose from affordable original Miu Miu line. There are many Prada purses or simply put the so called. These are not the genuine handbags from the brand but imitation handbags and copy handbags. One should always check the site, from which to buy the designer bag, not to purchase the designer bag. One of the top purses is the Prada Fairy Bag. An absolute beauty with romantic art print. This Fairy bag has been a success loved by all celebrities, although there have been reported some dye problems with this line. This purse - the Fairy bag - is still popular. Also the brand's logo jacquard doctor bag is quite noticeable. Another very girly bag is the Tessuto S Tote. This nylon tote is very romantic, right for the evening with girls or the loved one. These bags are popular and they deserve the credit. Although a bit pricey for nylon tote, they are still worth it. These nylon purses have the good quality, style and they are very practical for christian louboutin outlet causal wear.



juanlarson (none / 0) (#2)
by zacharymorgan on Fri Mar 30, 2018 at 03:07:54 AM PST

There are particular dissertation online sites over the internet if you ever buy of course proclaimed in the site. seo technical 2018



Your content is nothing short of brilliant in many (none / 0) (#3)
by mubashirkhatri on Sat Apr 07, 2018 at 02:41:13 AM PST

Your content is nothing short of brilliant in many ways. I think this is engaging and eye-opening material. Thank you so much for caring about your content and your readers. business and administrative communication 11th edition



juanlarson (none / 0) (#4)
by zacharymorgan on Sat Apr 14, 2018 at 03:21:11 AM PST

To check bought upon your website all the same positioning treatment plan simply merely a smaller amount of submits. Friendly way of capability long term future, People are book-marking at a time guarantee subspecies eliminate springs up at the same time. Board Certified in DUI Defense



Carolyn Turner (none / 0) (#5)
by zacharymorgan on Tue May 01, 2018 at 02:26:46 AM PST

I really like the different content pieces, I seriously appreciated, I want ideas relating to this, just because upon processed fantastic., Thank you with respect to commenting on. 1xbet



sohail khatri (none / 0) (#6)
by mubashirkhatri on Mon May 07, 2018 at 01:16:37 PM PST

What is an outstanding post! "I'll be back" (to read more of your content). Thanks for the nudge! Solution Manual for Statistics for Management and Economics 11th Edition by Keller



Mary Walters (none / 0) (#7)
by zacharymorgan on Tue May 08, 2018 at 12:51:54 AM PST

There are specific dissertation web-sites by way of the web to produce safe apparently documented inside your website. seo package



Sassi Sasso (none / 0) (#8)
by davidqq on Thu May 17, 2018 at 07:29:54 PM PST

I actually love easily looking through your complete blogs and forums. manufacturing consultant 



janice owens (none / 0) (#9)
by zacharymorgan on Sat May 19, 2018 at 04:06:15 AM PST

To visit achieved onto your blog site having said that arranging treatment solution plainly a little modest bit of submits. Pleasing way of possibility potential future, Efficient book-marking at a time obtain designs discontinue goes up mutually. professional moving and storage reviews



Brandon Clark (none / 0) (#10)
by davidqq on Tue May 22, 2018 at 05:18:44 PM PST

That can feel totally proper. Each one of more compact factors have been developed by means of several document schooling. I enjoy the application form lots. reckless driving meaning



Jean Bennett (none / 0) (#11)
by davidqq on Fri May 25, 2018 at 02:11:06 PM PST

This unique appears to be certainly superb. These types of really small truth is created utilizing wide selection associated with skills know-how. We prefer the concept a great deal. https://github.com/rosstaylorassociates



juanlarson (none / 0) (#12)
by zacharymorgan on Mon Jun 04, 2018 at 03:02:14 AM PST

Effortlessly the webpage will indisputably become popular somewhere between many posting together with site-building folk, that will a fastidious articles or blog posts or sometimes reviews. Holidays Lounge



Thomas (none / 0) (#13)
by davidqq on Fri Jun 08, 2018 at 06:39:35 AM PST

I favor your post. It happens to be exceptional to determine somebody explain in words from a center plus good quality using this type of vital subject theme could possibly be quickly seen. http://www.deliverzip.com/listings/ross-taylor-associates/



Seo master (none / 0) (#14)
by jamesjack9 on Sat Jun 30, 2018 at 06:55:42 AM PST

I enjoy each one of the posts, We appreciated, I would enjoy a lot more info with this particular, due to the fact it's very enjoyable., Be thankful meant for providing. http://kingcameranfoundation.ning.com/video/consumer-proposals



Carolyn Turner (none / 0) (#15)
by zacharymorgan on Sat Jun 30, 2018 at 08:19:41 AM PST

Well, I've just signed up for the trading signals and over there, I've already earned a lot. I'm thinking at this rate, my returns would come in about a week. It's been one of the best decisions I've even had to make financially.



Seo master (none / 0) (#16)
by jamesjack9 on Thu Jul 05, 2018 at 02:08:09 AM PST

hello!! Very interesting discussion glad that I came across such informative post. Keep up the good work friend. Glad to be part of your net community. Noocube Customer Reviews



nice post (none / 0) (#17)
by harry12 on Thu Jul 05, 2018 at 10:25:46 AM PST

Your blog is too much amazing. I have found with ease what I was looking. Moreover, the content quality is awesome. Thanks for the nudge! Samsung Galaxy J4 vs Samsung Galaxy J6 - Which should you get



nice post (none / 0) (#18)
by harry12 on Mon Jul 09, 2018 at 04:47:33 AM PST

Great website article.Really thank you! Awesome.Thanks-a-mundo for the website post.Thanks Again. Awesome.Alexander Burns Charleston SC



nice post (none / 0) (#19)
by harry12 on Tue Jul 10, 2018 at 02:44:26 PM PST

I really like and recognize your blog post. Significantly obliged.This is one great post.Thanks Again.I recognize you discussing this blog.Really thanks Top ranking medical college Philippines



great post (none / 0) (#20)
by harry12 on Thu Jul 12, 2018 at 05:51:33 AM PST

Major thankies for the blog.Much thanks again. Great.Really liked that post.Thanks Again. Great.Very nezt article. Awesome.Great roof leak repair



great post (none / 0) (#21)
by harry12 on Mon Jul 16, 2018 at 06:09:16 AM PST

Muchos Gracias for the blog.Really thank you! May study on...Great post.Much thanks again. Actually Great. autosys condition syntax



great post (none / 0) (#22)
by harry12 on Mon Jul 16, 2018 at 01:16:42 PM PST

Major thankies for the blog.Much thanks again. Great.Really liked that post.Thanks Again. Great.Very nezt article. Awesome.Great פיתוח אפליקציות לאייפון



nice post (none / 0) (#23)
by harry12 on Tue Jul 17, 2018 at 07:33:56 AM PST

Very good written article. It will be supportive to anyone who utilizes it, including me. Keep doing what you are doing - can'r wait to read more posts. painting contractors dubai



nice post (none / 0) (#24)
by harry12 on Tue Jul 17, 2018 at 10:55:49 AM PST

Major thankies for the blog.Much thanks again. Great.Really liked that post.Thanks Again. Great.Very nezt article. Awesome.Great buy essay



great post (none / 0) (#25)
by harry12 on Wed Jul 18, 2018 at 06:08:04 AM PST

Very good written article. It will be supportive to anyone who utilizes it, including me. Keep doing what you are doing - can'r wait to read more posts. voyance gratuite par telephone



great post (none / 0) (#26)
by harry12 on Sat Jul 21, 2018 at 12:55:59 PM PST

Excellent article. Very interesting to read. I really love to read such a nice article. Thanks! keep rocking. numero de voyance



great post (none / 0) (#27)
by harry12 on Sun Jul 22, 2018 at 01:12:39 PM PST

Wonderful website article.Really many thanks! Awesome.Thanks-a-mundo for the blog post.Thanks Again. Awesome.I love and appreciate your article. carnet de moto en madrid



nice post (none / 0) (#28)
by harry12 on Mon Jul 23, 2018 at 05:52:19 AM PST

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. Costa del Sol Property



great post (none / 0) (#29)
by harry12 on Tue Jul 24, 2018 at 11:47:26 AM PST

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. computer mouse



juanlarson (none / 0) (#30)
by zacharymorgan on Sat Jul 28, 2018 at 05:07:13 AM PST

Which may be what is more an outstanding present that i genuinely relished reading through. It's not possible regularly that marilyn and i handle the chance to know anything. How to Get Rid of Man Boobs Fast?



great post (none / 0) (#31)
by harry12 on Sat Jul 28, 2018 at 06:23:52 AM PST

Thank you for your post, I look for such article along time, today i find it finally. this post give me lots of advise it is very useful for me. Teeth cleaning Mumbai



nice post (none / 0) (#32)
by harry12 on Sat Jul 28, 2018 at 07:51:04 AM PST

Excellent article. Very interesting to read. I really love to read such a nice article. Thanks! keep rocking. custom framed mirrors



great post (none / 0) (#33)
by harry12 on Tue Jul 31, 2018 at 09:05:52 AM PST

I want you to thank for your time of this wonderful read!!! I definitely enjoy every little bit of it and I have you bookmarked to check out new stuff of your blog a must read blog. short to medium hairstyles



nice post (none / 0) (#34)
by harry12 on Fri Aug 03, 2018 at 07:05:41 AM PST

What a thrilling post. It is extremely chock-full of useful information. Thanks for such a great info. www.printingbrochures.us



nice post (none / 0) (#35)
by harry12 on Fri Aug 03, 2018 at 01:19:55 PM PST

It was wondering if I could use this write-up on my other website, I will link it back to your website though.Great Thanks FNaF World



UK Dissertation Writing services (none / 0) (#36)
by Charley on Sun Aug 05, 2018 at 05:39:05 AM PST

I was taking a gander at some of your posts on this site and I consider this site is truly informational! Keep setting up.. Dissertation Writing Service 



nice post (none / 0) (#37)
by harry12 on Mon Aug 06, 2018 at 07:48:06 AM PST

This is a wonderful article, Given so much info in it, These type of articles keeps the users interest in the website, and keep on sharing more ... good luck. How to Optimize a website?



nice post (none / 0) (#38)
by harry12 on Tue Aug 07, 2018 at 07:51:43 AM PST

Excellent Blog! I have bookmarked your online journal, the articles are path superior to anything other comparable web journals.. a debt of gratitude is in order for an extraordinary online journal! voyance web



nice post (none / 0) (#39)
by harry12 on Tue Aug 07, 2018 at 08:55:57 AM PST

This is really a nice and informative, containing all information and also has a great impact on the new technology. Thanks for sharing it tfs price action pdf



nice post (none / 0) (#40)
by harry12 on Mon Aug 13, 2018 at 07:07:43 AM PST

This is my first time visit to your blog and I am very interested in the articles that you serve. Provide enough knowledge for me Conventional dentures



nice post (none / 0) (#41)
by harry12 on Wed Aug 15, 2018 at 12:24:35 PM PST

This was really an interesting topic and I kinda agree with what you have mentioned here! Successful obagi tretinoin 0.01



nice post (none / 0) (#42)
by harry12 on Sat Aug 18, 2018 at 07:10:14 AM PST

This was really an interesting topic and I kinda agree with what you have mentioned here! SuccessfulVisit Roofing Website



nice post (none / 0) (#43)
by harry12 on Sun Aug 19, 2018 at 07:21:14 AM PST

Excellent information on your blog, thank you for taking the time to share with us. Amazing insight you have on this, it's nice to find a website that details so much information about different artists voyance gratuite par telephone numero non surtaxe sans cb



nice post (none / 0) (#44)
by harry12 on Fri Aug 24, 2018 at 12:19:51 PM PST

Excellent information on your blog, thank you for taking the time to share with us. Amazing insight you have on this, it's nice to find a website that details so much information about different artists https://bfgmuscle.com/best-meal-replacement-shakes/



great post (none / 0) (#45)
by harry12 on Wed Aug 29, 2018 at 07:48:24 AM PST

Excellent article. Very interesting to read. I really love to read such a nice article. Thanks! keep rocking חקירה במשטרה



nice post (none / 0) (#46)
by harry12 on Thu Aug 30, 2018 at 12:03:43 PM PST

it was a wonderful chance to visit this kind of site and I am happy to know. thank you so much for giving us a chance to have this opportunity liquorice



nice post (none / 0) (#47)
by harry12 on Fri Aug 31, 2018 at 10:39:11 AM PST

Very good points you wrote here..Great stuff...I think you've made some truly interesting points.Keep up the good work News Bangla



nice post (none / 0) (#48)
by harry12 on Sat Sep 01, 2018 at 03:31:12 AM PST

Good, thanks for discussing this article.Much thanks again. Cool.Im obliged for the post. Awesome.Very great website article adam eve promo code



nice post (none / 0) (#49)
by harry12 on Sat Sep 01, 2018 at 09:41:22 AM PST

Love to read it.Waiting For More new Update and I Already Read your Recent Post its Great Thanks. Applications from drivers



nice post (none / 0) (#50)
by harry12 on Sun Sep 02, 2018 at 10:31:34 AM PST

I needed to thank you for this awesome read!! I certainly getting a charge out of each and every piece of it I have you bookmarked to look at new stuff you post. every door direct mail flyer printing



nice post (none / 0) (#51)
by harry12 on Mon Sep 03, 2018 at 12:27:24 PM PST

Excellent website you have here, so much cool information!. voyance en ligne



Alzheimer disease (none / 0) (#52)
by jeangaray on Tue Sep 04, 2018 at 02:03:08 AM PST

I appreciate everything you have added to my knowledge base.Admiring the time and effort you put into your blog and detailed information you offer.Thanks. Alzheimers-disease



nice post (none / 0) (#53)
by harry12 on Tue Sep 04, 2018 at 09:31:13 AM PST

Love to read it.Waiting For More new Update and I Already Read your Recent Post its Great Thanks. wedding photography Grand Rapids Michigan



nice post (none / 0) (#54)
by harry12 on Wed Sep 05, 2018 at 01:28:06 PM PST

I was looking at some of your posts on this website and I conceive this web site is really instructive! Keep putting up 2021 jamb answrs



Great piece (5.00 / 1) (#55)
by eyalz on Tue Sep 11, 2018 at 05:32:47 AM PST

Excellent information on this blog, thank you for taking the time to share it all with us. Amazing insight you have on this, it's nice to find a website that details so much information about different artists הפקת אירועים לחברות



Brilliant (none / 0) (#56)
by Eithan on Tue Sep 11, 2018 at 05:39:49 AM PST

I think that your content is nothing short of brilliant in many ways. I think for the most part on בית חכם it is engaging and eye-opening material. Thank you so much for caring about your content and your readers.



nice post (none / 0) (#57)
by harry12 on Fri Sep 14, 2018 at 12:28:36 PM PST

Really getting excited about read more. Great. Thanks for the content post. Thanks Again canon plotter service dubai



nice post (none / 0) (#58)
by harry12 on Tue Sep 18, 2018 at 10:27:04 AM PST

A very awesome blog post. We are really grateful for your blog post. You will find a lot of approaches after visiting your post.Best Baby Gates For Stairs



nice post (none / 0) (#59)
by harry12 on Wed Sep 19, 2018 at 12:19:49 PM PST

Wow! Such an amazing and helpful post this is. I really really love it. It's so good and so awesome. I am just amazed. I hope that you continue to do your work like this in the future also Domestic robots



nice post (none / 0) (#60)
by harry12 on Thu Sep 27, 2018 at 12:38:11 PM PST

My partner and i favour your overall write-up. It could be great to look at any person describe inside terms from the aerobic in addition to lucidity because of this essential problem could be swiftly noticed. read more



nice post (none / 0) (#61)
by harry12 on Tue Oct 02, 2018 at 02:28:25 PM PST

It is great to have the opportunity to read a good quality article with useful information on topics that plenty are interested on.I concur with your conclusions and will eagerly look forward to your future updates how to make french press coffee at home



nice post (none / 0) (#62)
by harry12 on Thu Oct 04, 2018 at 02:52:31 PM PST

Do not forget that when reselling properties, earliest impressions undertake last. The main sight that others see delivers them a good idea what your whole deal beholds. pink lady body perfection lulus kkm



nice post (none / 0) (#63)
by harry12 on Fri Oct 05, 2018 at 01:27:59 PM PST

Good blog.Really getting excited about read more. Cool.Really liked this informative article postDumpster Rental



nice post (none / 0) (#64)
by harry12 on Mon Oct 08, 2018 at 01:10:37 PM PST

Thanks for sharing the post.. parents are worlds best person in each lives of individual..they need or must succeed to sustain needs of the family.voyante par telephone



nice post (none / 0) (#65)
by harry12 on Sun Oct 14, 2018 at 06:48:19 AM PST

This is my first time i visit here and I found so many interesting stuff in your blog especially it's discussion. thank you.voyance téléphone



Buy phone verified yahoo accounts (none / 0) (#66)
by Mk Soomro on Wed Oct 24, 2018 at 04:10:36 PM PST

This is truly a great read for me. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work!. Buy phone verified yahoo accounts



london manchester man and van  (none / 0) (#67)
by Mk Soomro on Fri Oct 26, 2018 at 09:43:31 AM PST

Very good points you wrote here..Great stuff...I think you've made some truly interesting points.Keep up the good work.Thank you for the update, very nice site..



london manchester man and van  (none / 0) (#68)
by Mk Soomro on Fri Oct 26, 2018 at 09:44:03 AM PST

Thank you for the update, very nice site.. london manchester man and van



SEO Dofollow Blog Comments (none / 0) (#69)
by Mk Soomro on Tue Nov 06, 2018 at 04:12:16 PM PST

A good blog always comes-up with new and exciting information and while reading I have feel that this blog is really have all those quality that qualify a blog to be a one. SEO Dofollow Blog Comments



www.plasticstorageboxes.net (none / 0) (#70)
by Mk Soomro on Wed Nov 07, 2018 at 05:23:28 AM PST

I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work... www.plasticstorageboxes.net



high quality 80 blog comments (none / 0) (#71)
by Mk Soomro on Wed Nov 07, 2018 at 03:35:35 PM PST

The information you have posted is very useful. The sites you have referred was good. Thanks for sharing..high quality 80 blog comments



sharebazar (none / 0) (#72)
by Mk Soomro on Thu Nov 08, 2018 at 12:21:15 PM PST

Only strive to mention one's content can be as incredible. This clarity with your post is superb! Thanks a lot, hundreds of along with you should go on the pleasurable get the job done. sharebazar



reclaimed wood panelling (none / 0) (#73)
by Mk Soomro on Fri Nov 09, 2018 at 11:08:24 AM PST

Great post, and great website. Thanks for the information! reclaimed wood panelling



stock option tips (none / 0) (#74)
by Mk Soomro on Thu Nov 15, 2018 at 09:54:44 AM PST

Pretty nice post. I just stumbled upon your weblog and wanted to say that I have really enjoyed browsing your blog posts. After all I'll be subscribing to your feed and I hope you write again soon! stock option tips



voyance serieuse (none / 0) (#75)
by Mk Soomro on Wed Nov 21, 2018 at 09:29:35 AM PST

I have recently started a blog, the info you provide on this site has helped me greatly. Thanks for all of your time & work. voyance serieuse



Click Here (none / 0) (#76)
by Mk Soomro on Sat Nov 24, 2018 at 06:56:31 AM PST

This blog website is pretty cool! How was it made ! Click here



nice post (none / 0) (#77)
by harry12 on Sat Dec 01, 2018 at 06:48:30 AM PST

This is actually the kind of information I have been trying to find. Thank you for writing this information. voyance pas cher



buy cc (none / 0) (#78)
by Mk Soomro on Tue Dec 04, 2018 at 03:55:29 PM PST

Recently, I have commenced a blog the info you give on this site has encouraged and benefited me hugely. Thanks for all of your time & work. buy cc



mk (none / 0) (#79)
by Mk Soomro on Tue Dec 11, 2018 at 02:27:00 AM PST

Attractive, post. I just stumbled upon your weblog and wanted to say that I have liked browsing your blog posts. After all, I will surely subscribe to your feed, and I hope you will write again soon! http://www.kxxv.com/story/39591308/aidan-booth-seo-expert-reveals-parallel-profits-secrets-to-buildi ng-a-7-figure-a-year-seo-company



Vidare till bloggen nu (none / 0) (#80)
by Mk Soomro on Mon Dec 17, 2018 at 06:40:26 AM PST

When you use a genuine service, you will be able to provide instructions, share materials and choose the formatting style. Vidare till bloggen nu



casino online terpercaya (none / 0) (#81)
by Mk Soomro on Tue Dec 18, 2018 at 08:01:45 AM PST

Great post, you have pointed out some fantastic points , I likewise think this s a very wonderful website. casino online terpercaya



Nice going (none / 0) (#82)
by Liaz Karl on Tue Jan 22, 2019 at 06:40:55 AM PST

בייביזמול הינו מתחם קניות אינטרנטי לתחום מוצרי התינוקות, מוצרים נלווים ולייף סטייל. האתר הוא למעשה קניון אינטרנטי ייחודי מסוגו, המחבר בין קונים המחפשים מוצרי תינוקות מיוחדים בהתאמה אישית, לבין יוצרים ויזמים עצמאיים המעוניינים למכור את תוצרתם. ב"בייביזמול" עומדים לתצוגה ולמכירה פריטי מדף מוכנים, כמו גם פריטים בעיצוב והתאמה אישית מלאה לבחירת הלקוח, כל זאת באמצעות ממשק ידידותי ונוח למשתמש.



Oh. one more thing (none / 0) (#83)
by Liaz Karl on Tue Jan 22, 2019 at 06:41:44 AM PST

כמובן שאנחנו לא היחידים בשוק, אבל אנחנו היחידים שנקראים 'סייטלינקס'



COol Guys (none / 0) (#84)
by sitelinx on Tue Jan 22, 2019 at 06:48:50 AM PST

Amazing insight you have on this, it's nice to find a website that details so much information about different artists קליקבנק



Down With It (none / 0) (#85)
by sitelinx on Tue Jan 22, 2019 at 06:53:08 AM PST

Excellent article. Very interesting to read. I really love to read such a nice article. קומפי רהיטים



nice post (none / 0) (#86)
by harry12 on Tue Jan 29, 2019 at 09:10:27 AM PST

A good blog always comes-up with new and exciting information and while reading I have feel that this blog is really have all those quality that qualify a blog to be a one. voyance qualité



nice post (none / 0) (#87)
by harry12 on Tue Jan 29, 2019 at 01:02:30 PM PST

Your blog provided us with valuable information to work with. Each & every tips of your post are awesome. Thanks a lot for sharing. Keep blogging. tie down strap



nice post (none / 0) (#88)
by harry12 on Fri Feb 08, 2019 at 10:21:02 AM PST

Great post, you have pointed out some excellent points, I as well believe this is a very superb website. tfs price action



nice post (none / 0) (#89)
by harry12 on Wed Mar 13, 2019 at 10:16:12 AM PST

Awesome! Its genuinely amazing piece of writing, I have got much clear idea regarding from this article. custom url shortener



nice post (none / 0) (#90)
by harry12 on Thu Mar 14, 2019 at 11:51:26 AM PST

Great article Lot's of information to Read...Great Man Keep Posting and update to People..Thanks Jewlery nyc



train terpene profiles (none / 0) (#91)
by Jack Son on Sat Mar 16, 2019 at 03:03:57 AM PST

Pretty nice post. I just stumbled upon your weblog and wanted to say that I have really enjoyed browsing your blog posts. After all I'll be subscribing to your feed and I hope you write again soon! train terpene profiles



mobile casinos (none / 0) (#92)
by Jack Son on Sun Mar 17, 2019 at 08:38:05 AM PST

Nice post! This is a very nice blog that I will definitively come back to more times this year! Thanks for informative post. mobile casinos



nice post (none / 0) (#93)
by harry12 on Sun Mar 17, 2019 at 10:55:09 AM PST

I am really appreciated for your useful article and the best information.I wanna following you again sarkari result



MK (none / 0) (#94)
by Jack Son on Tue Mar 19, 2019 at 06:49:42 AM PST

This is such a great resource that you are providing and you give it away for free. I love seeing blog that understand the value. Im glad to have found this post as its such an interesting one! I am always on the lookout for quality posts and articles so i suppose im lucky to have found this! I hope you will be adding more in the future... https://chrome.google.com/webstore/detail/tiff-to-pdf-converter/kelfafbbmcbnnepkijbkaniokbanfadi?hl= en



seo link building service (none / 0) (#95)
by Jack Son on Wed Mar 20, 2019 at 03:21:36 AM PST

I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your site to check out the new stuff you post. seo link building service



nice post (none / 0) (#96)
by harry12 on Thu Mar 21, 2019 at 12:13:21 PM PST

Thanks for sharing us. תלחצו כאן



nice post (none / 0) (#97)
by harry12 on Fri Mar 22, 2019 at 12:15:38 PM PST

very very impressive article i like it i read some more artical's on your site i really enjoye Free budget planner



biblical timeline (none / 0) (#98)
by Jack Son on Thu Mar 28, 2019 at 06:56:14 AM PST

Thanks for sharing this information. I really like your blog post very much. You have really shared a informative and interesting blog post with people.. biblical timeline



best free porn torrent (none / 0) (#99)
by Jack Son on Sat Mar 30, 2019 at 05:25:15 AM PST

Really appreciate you sharing this article post.Really looking forward to read more.best free porn torrent



nice post (none / 0) (#100)
by harry12 on Sat Mar 30, 2019 at 07:02:46 AM PST

Very Informative Blog. Keep sharing the blog like this Thanks for this post voyance gratuite sans file d'attente



Strength and Conditioning (none / 0) (#101)
by Jack Son on Wed Apr 24, 2019 at 06:01:33 AM PST

Great job for publishing such a beneficial web site. Your web log isn't only useful but it is additionally really creative too. Strength and Conditioning



nice post (none / 0) (#102)
by harry12 on Wed Jul 24, 2019 at 06:41:30 AM PST

I really like your blog. Great article. It's most evident, people should learn before they are able tonumero voyance



nice post (none / 0) (#103)
by harry12 on Fri Jul 26, 2019 at 12:19:29 PM PST

I love seeing blog that understand the value of providing a quality resource for freeRevolut



magzinetoday (none / 0) (#104)
by mtom78632 on Wed Dec 16, 2020 at 06:58:03 AM PST

An impressive share, I with all this onto a colleague who has been performing a small analysis for this. Anf the husband actually bought me breakfast since I found it for him.. smile. So let me reword that: Thnx for your treat! But yeah Thnkx for spending time to talk about this, I feel strongly about this and love reading more about this topic. If at all possible, as you grow expertise, does one mind updating your blog post with increased details? It really is highly useful for me. Huge thumb up in this text! Chronic carts runtz



Thanks (none / 0) (#105)
by McauleyHanna on Tue Jun 08, 2021 at 03:53:03 AM PST

I'd be happy to speak further about the affable and expert website specialist; you can email me if there a chance that you may have any inquiries. บาคาร่าออนไลน์ มือถือ



Hi (none / 0) (#106)
by McauleyHanna on Fri Aug 06, 2021 at 03:03:40 AM PST

You often find new and innovative solutions to a problem here in internet but a few have sense. Continue giving us future ideas. Great day! สูตรบาคาร่าฟรี



hi (none / 0) (#107)
by McauleyHanna on Wed Oct 20, 2021 at 03:08:15 AM PST

This is the reason and sign to Look outside the box of your ideas. To look on beyond the experience and work of others just to have a justification of your outcome. Great day dude. สล็อตออนไลน์



hi (none / 0) (#108)
by Nisha Knapp on Fri Oct 29, 2021 at 12:55:57 PM PST

I acknowledge accomplishments and recognize your work here. Keep it up. 메이저토토사이트



Menu
· create account
· faq
· search
· report bugs
· Scoop Administrators Guide
· Scoop Box Exchange

Scoop Site Scroller: Get one yourself!
Keepers of Lists
Got Lists? We've got over 1800

Login
Make a new account
Username:
Password:

Hosted by ScoopHost.com Powered by Scoop
All trademarks and copyrights on this page are owned by their respective companies. Comments are owned by the Poster. The Rest © 1999 The Management

create account | faq | search