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
How to install Scoop in Windows 2000/XP Docs
By TimF , Section Help! []
Posted on Wed Jul 17, 2002 at 12:00:00 PM PST
I have recently succesfully installed scoop in Windows XP. The only thing that is not working properly is account creation. It seems to randomly decide to work (most of the time it doesn't). I have no idea what the cause is. It could be Sendmail.pm, it could be my router, it could be my ISP's SMTP server. If you have any thoughts, feel free to comment.

How-To Install Scoop in Windows
  1. Install the Apache webserver (current version of the 1.x series is 1.3.26). You can download the Windows Apache binaries by clicking here.
  2. Install the MySQL database. Current version as of this writing is 3.23.51. You can download the Windows MySQL binaries by clicking here.
  3. Install the ActiveState ActivePerl distribution. Current version as of this writing is 5.6.1.633. You can download ActivePerl by clicking here.
  4. Install Scoop. You should grab the 0.9 Scoop nightly. It can be obtained by clicking here. I installed Scoop in 'C:\Scoop', and will be using that directory throughout the rest of this how-to.
  5. Setup MySQL:
    1. Start MySql:
      • Open up a Dos prompt, and type 'c:\mysql\bin\mysqld --install'
      • Open Administrative Tools in the Control Panel.
      • Double click on the Services icon.
      • You can change the properties so that the MySQL service is started automatically or manually.

    2. Setup the Scoop database:
      • Type: 'c:\mysql\bin\mysql' at the dos prompt.
      • Type: 'create database scoop;'.
      • Type: 'grant insert, update, delete, select on scoop.* to root@localhost identified by 'password';'.
      • Type: 'exit'. You will now be back at the command prompt.
      • Type: 'c:\mysql\bin\mysql -u root -p scoop <c:\scoop\struct\scoop.sql'.
      • Type: 'c:\mysql\bin\mysql -u root -p scoop'.
      • Type: 'update vars set value='/<path>' where name='rootdir';' if you would like scoop to run from a path within your domain, type that path instead of '/<path>' (eg: /scoop), otherwise leave it blank.
      • Type: 'update vars set value='putyouremailaddresshere' where name='local_email';'. Put your email address where it says put your email address here.
      • Type: 'update blocks set block='putyouremailaddresshere' where bid='admin_alert';'. Put your email address where it says put your email address here.
      • Type: 'update vars set value='http://your.site.address' where name='logout_url';'. Replace your.site.address with your site address.
      • Type: 'update vars set value='http://your.site.address' where name='site_url';'. Replace your.site.address with your site address.
  6. Setup ActivePerl:
    • Open up the dos prompt again.
    • Type: 'ppm install DBD-mysql'.
    • Type: 'ppm install Digest-MD5'.
    • Type: 'ppm install ApacheDBI'.
    • Type: 'ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/libapreq.ppd'.
    • Type: 'ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/Apache-Session.ppd'.
    • Type: 'ppm install Class-Singleton'.
    • Type: 'ppm install Crypt-UnixCrypt'.
    • Type: 'ppm install Mail-Sendmail'.
    • Type: 'ppm install String-Random'.
    • Type: 'ppm install Time-Modules'.
    • Type: 'ppm install Crypt-CBC'.
    • Type: 'ppm install Crypt-Blowfish'.
    • Type: 'ppm install XML-RSS'.
    • Type: 'ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/mod_perl.ppd'. This will install mod_perl. You will need to supply it with your Apache modules directory.
  7. Edit the Scoop config file
    • Open the file 'C:\Scoop\etc\httpd-location.conf' in your favourite text editor.
    • Whenever you need to supply a local path in the config file (eg. C:\Scoop) you will need to change the backslash to a forward slash (so C:\Scoop becomes C:/Scoop).
    • Edit line 48, so that it reads 'use lib qw( C:/scoop/lib );'.
    • Edit line 53 so it reads '<Location>'. This will have Scoop show up from the root directory of the server. If you don't like this, change it to the appropriate path.
    • Edit line 76: 'PerlSetVar mysql_version __MYSQL_VER__', replace __MYSQL_VER__ with your version of MySQL.
    • Edit line 91 so that it reads 'PerlSetVar db_name scoop'.
    • Edit line 94 so it reads 'PerlSetVar db_host localhost'. If it is running on another server, replace 'localhost' with the name of that server.
    • Edit line 97: 'PerlSetVar db_user __DBUSER__'. Replace __DBUSER__ with the username that will connect to the scoop database.
    • Edit line 100: 'PerlSetVar db_pass __DBPASS__'. Replace __DBPASS__ with the password of the database.
    • Edit line 112 so that it reads 'my $vfile = 'C:/scoop/VERSION';'.
    • Edit line 114 so that it reads 'push(@{ $Location{'/'}->{PerlSetVar} },'.
    • Edit line 128: 'PerlSetVar cookie_host __COOKIE_HOST__'. Replace __COOKIE_HOST__ with the name of your cookie server.
    • Edit line 131: 'PerlSetVar SMTP __SMTP_SERVER__'. Replace __SMTP_SERVER__ with the name of your SMTP server.
    • Edit line 135: 'PerlSetVar site_id __SITE_ID__'. Replace __SITE_ID__ with whatever you would like to call your site.
    • Edit line 144: Add an unguessable key.
    • Edit line 168 so that it reads 'PerlRequire c:/scoop/etc/startup.pl'.
    • Edit line 175 so that it reads 'Alias /scoop/images/ "C:/scoop/html/images/"'.
  8. Edit the Apache config file
    • Open the file 'C:\Program Files\Apache Group\Apache\conf\httpd.conf'.
    • Add the following line to the Load Modules section: 'LoadModule perl_module modules/mod_perl.so'.
    • Add the following line to the Add Modules section: 'AddModule mod_perl.c'.
    • Put an email address at which you can be reached in the Server Admin section: 'ServerAdmin you@yourisp.com'.
    • Modify the Server Name section to reflect your real server name: 'ServerName www.myserver.com'.
    • Modify the Document Root section to point to the htdocs directory of your Apache install. In this case: 'DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs"'.
    • Two sections below the Document Root section will need to read as follows: '<Directory "C:/Program Files/Apache Group/Apache/htdocs">'.
    • Add the following line to the bottom of the file: 'Include c:/scoop/etc/httpd-location.conf'.
  9. Last minute things
    • Change the password for the scoop account.
    • Create a new administrator account.
    • Delete the scoop account.

Enjoy your new Scoop instalation!

With this, everything works so far. Except account creation. It seems to not work. I have set my ISP's smtp server in both httpd-location.conf, and in Sendmail.pm. After install I can succesfully setup one account, and then that is it. Every single attempt after that results in a "bad email" message and account creation failure. If anyone has any ideas, feel free to comment.

< Hidden comment toggle for trusted users | Topic Admins >

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

Login
Make a new account
Username:
Password:

Related Links
· Scoop
· here
· here [2]
· here [3]
· here [4]
· More on Docs
· Also by TimF

Story Views
  426 Scoop users have viewed this story.

Display: Sort:
How to install Scoop in Windows 2000/XP | 104 comments (104 topical, 0 hidden)
Wow, thanks (5.00 / 1) (#1)
by panner on Thu Jul 18, 2002 at 08:03:56 PM PST

This should probably go into the scoop admin guide. Maybe even in as INSTALL.win32 ;)

One question: did you try running install.pl after you got apache/mysql/perl/modules installed? If you skip the CPAN part of install.pl, it seems like it would have no problem configuring the DB and httpd.conf automatically, just as it does on other systems. But I may be wrong, so I'm wondering if you tried that.

About the SMTP problem, it sounds like a mis-configuration of the SMTP server, or something. Most problems with account creation on a fresh install are related to SMTP relaying issues.



--
Keith Smiley



Putting My Scoop Where My Mouth Is (none / 0) (#5)
by thelizman on Fri Jul 19, 2002 at 02:06:30 PM PST

As per mycomments last night on your submitting this over at www.kuro5hin.org, I am currently installing MkLinux on a Macintosh PowerPC Performa 6116CD. As soon as that's over with, I'll install the necessary server componants, and get my esoteric version of scoop on the net.

I had previously done this on a Macintosh PowerPC G3 500, but that was a far more powerful machine that this will be. It was also a PCI Mac with the New World ROM.

You sir, have inspired me to hack yet again. Thank you.



A little help please? (none / 0) (#15)
by wink on Fri Aug 09, 2002 at 05:08:28 PM PST

I am a little new to most if this. I'm attempting to install scoop on WinXP and have tried to follow the instructions above. I'm a bit stuck on step 4 ("Install Scoop").

I've tried running the Install.pl script from the scoop8.1 and the scoop9.0(nightly build). No luck. Is this the right way to go?

When I do run either install script, it fails. I seem to be missing quite a few modules that are required by Bundle::Scoop. I have installed the latest version of ActiveState ActivePerl. The required modules are apparently not included. How do I go about proceeding?

TIA

Wink ;)



Odd error message (none / 0) (#20)
by Vladinator on Fri Aug 16, 2002 at 07:51:59 AM PST

Did anyone else get this?

Syntax error on line 53 of c:/scoop/etc/httpd-location.conf:

Invalid command '<Location>', perhaps mis-spelled or defined by a module not included in the server configuration

Note the errors or messages above, and press the <ESC> key to exit.

"Even Marylin Monroe was a man, but this tends to get overlooked by our motherfixated overweight sexist media." -- Robyn Hitchcock and the Egyptians



Add Apache error (none / 0) (#22)
by Vladinator on Tue Aug 20, 2002 at 08:17:33 AM PST

Got that other error fixed - now the service will not start.  :(  Anyone seen this?

[Tue Aug 20 09:53:22 2002] [crit] (10045)The attempted operation is not supported for the type of object referenced: Parent failed for socket 396.
[Tue Aug 20 09:53:22 2002] [error] (2)No such file or directory: master_main: create child process failed. Exiting.


"Even Marylin Monroe was a man, but this tends to get overlooked by our motherfixated overweight sexist media." -- Robyn Hitchcock and the Egyptians



anyone solve the mail problem yet? (none / 0) (#24)
by Vladinator on Tue Aug 20, 2002 at 08:48:07 AM PST

I can't get that to work right either...

"Even Marylin Monroe was a man, but this tends to get overlooked by our motherfixated overweight sexist media." -- Robyn Hitchcock and the Egyptians


Error with libapreq.ppd (none / 0) (#26)
by torkill on Thu Feb 03, 2005 at 01:07:26 AM PST

Hi

I'm trying to install scoop with the Apache2Triad web server installation kit at <url:http://apache2triad.sourceforge.net>

When I run this command:
C:\apache2triad\perl\bin>ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/libapreq.ppd

I get the following error:

Installing package 'http://theoryx5.uwinnipeg.ca/ppmpackages/libapreq.ppd'... Error installing package 'http://theoryx5.uwinnipeg.ca/ppmpackages/libapreq.ppd' : Read a PPD for 'http://theoryx5.uwinnipeg.ca/ppmpackages/libapreq.ppd', but it is not intended for this build of Perl (MSWin32-x86-multi-thread-5.8)

As I'm a complete newbie on this, I cant think of any way to try to fix it. I did not find another version of the file. But probably that is what I need, another version of libapreq.ppd.

Does anybody know how to fix it?

--
cheers
torkill




i will install scoop in windows xp (none / 0) (#29)
by funvideoblog on Tue May 02, 2006 at 08:06:47 PM PST

i will install scoop in windows xp :)



help to install (none / 0) (#30)
by pasad on Sun Aug 06, 2006 at 08:51:57 AM PST

i have nothing to do but to find help here. If someone can help to install it could you contact me with email andrea [at] DigiBib.com



Xp Not working (none / 0) (#31)
by Vincent on Tue Jan 06, 2009 at 12:16:25 AM PST

Wil jij idool worden? Dan krijg je vanaf begin volgend jaar weer de kans bij RTL 4. De zender komt terug met het format X Factor. Wendy van Dijk krijgt dit keer niet de exclusieve presentatie, dat mag ze samen gaan doen met Martijn Krabbé, zo meldt De Telegraaf. Marianne van Wijnkoop zit vrijwel zeker in de jury, de andere twee juryleden zijn nog onduidelijk. Henkjan Smits stapte zoals bekend over naar SBS 6 en Henk Temming in de jury was niet echt een succes. Opvallend is dat de talentenjacht dit keer niet in september begint, maar pas in het nieuwe jaar. Daardoor zal de talentenjacht dit keer tot aan het begin van de zomerperiode duren, een periode waarin de kijkcijfers doorgaans afvlakken. Dat terwijl X Factor al een matig kijkcijfersucces was in vergelijking tot Idols. Een andere opvallende wijziging: X Factor wordt niet langer uitgesmeerd over twee avonden, maar de live-show en uitslag zullen op één avond zijn te zien. Slimme zet, want de kijker heeft volgens mij ook wel door dat hij hiermee aan het lijntje wordt gehouden. In X Factor kunnen mensen van jong tot oud meedoen. In de liveshows strijden ze gecategoriseerd tegen elkaar: jong (tot 26), ouder (26+) en groepjes. De winnaar van X Factor I was Sharon Kips, die inmiddels een televisiecarrière bij de EO is begonnen.



Scoop (none / 0) (#32)
by tiny on Wed Feb 04, 2009 at 01:57:12 AM PST

can be installed in xp? free essential software



Everything is so much better (none / 0) (#33)
by vegaskid on Fri Feb 20, 2009 at 03:10:03 AM PST

Excellent post. Are you ever going to make scoop a simple installer? That would be great. Seth of Vegas



AYpearl (none / 0) (#34)
by Lucy0422 on Thu Feb 26, 2009 at 10:49:34 PM PST

wholesale jewelry,wholesale handmade jewelry,wholesale fashion jewelry,wholesale costume jewelry handmade jewelry costume jewelry jewelry wholesale,discount jewelry,cheap jewelry wholesale pearl wholesale crystal



Dwight Howard Shoes (none / 0) (#170)
by bertramy on Wed May 23, 2012 at 03:31:12 AM PST

The Lakers Basketball Shoes For Sale earned 42 Dwight Howard Shoes|T-Mac 5|Chris Paul Shoes|Blake Griffin Shoes free-throw Cheap Lebron 9|Air Foamposite One|Charles Barkley Shoes|Air Foamposite One opportunities, they made Cheap Adidas Basketball Shoes| Lebron 9 For Sale|Cheap Kobe 7|overcome by one's feelings follow his Dwight Howard Shoes|T-Mac 5|Chris Paul Shoes|Blake Griffin Shoes|Rajon Rondo Shoes one of the 41, this is Lebron 9 Cannon|Nike Zoom Rookie the NBA playoff history, a team in free throw attempts more than 30 times the number two best free throw performance history, only Dallas calf performance Lebron 8 V2 For Sale revealed that he will not participate in Dwyane Wade Shoes|Derrick Rose Shoes 2012|Air Foamposite One Galaxy better than the Lakers, it was in May 20, 2003, they Nike Air Max Nomo|Nike Hyperize|Nike Air Max Destiny|Zoom Hyperfuse 2011|Nike Hyperfuse 2010 play against the Sanantonio the San Antonio Spurs 50 punish in 49. Until the Nike Lebron 7 end of the third Nike Lebron 6 section there are 9 minutes Cheap Hyperdunk 2011|Nike Huarache Trainer|Nike Flight Club 15 seconds when Bynum (micro-blog) penalty throw a ball, the Lakers' first 28 free throws, and after this Lebron 1 Shoes I need to become Russell Westbrook Shoes|Allen Iverson Shoes| Amare Stoudemire Shoes|Penny Hardaway Shoes| Adidas Crazy 8 For Sale they throw is quite stable, charity world peace and Kobe in the final moments of all two free throws, this Kobe 7 Shoes Jeremy Lin said.Although Kobe 7 Shark in fourth he scored Kobe 7 Year of the Dragon let them hold 3 points advantage to smile the last. Although Cheap Kobe VI won third games, but the Lakers' there can be no relaxation, they have no extra time to celebrate, because tomorrow will start shooting in the semi-finals of the fourth field.As the season has shrunk, plus the Lakers first played all seven games, their first two home games with the thunder Zoom Kobe 4 equaliser Jordan Shoes 2012 being arranged back-to-back, the Lakers on the level of physical fitness is a severe test.



sell structured settlements (none / 0) (#327)
by annabellemorell on Thu Nov 01, 2012 at 10:58:24 AM PST

Linux is very appropriate for people who want everything free without spending a dime. Linux is the answer for people who active in technology especially in the name of open source operating system. sell structured settlements



Windows is widely (none / 0) (#328)
by octofrancois on Mon Dec 03, 2012 at 03:43:30 AM PST

Windows is widely used by many computers throughout the world. There are many people who are very dependent of the amount of product from Windows. Kristen Stewart



the (none / 0) (#329)
by tareelolo on Mon Dec 03, 2012 at 02:24:59 PM PST

They would all give you a complete JumpBox running somewhere on the internet that acts just like the one you run on your personal machine. usb safe



www.ppireclaimco.co.uk (none / 0) (#330)
by mydraid on Thu Dec 13, 2012 at 09:34:50 AM PST

Your design is flawless, like you know exactly what to do to do make people flock to your page! I also like the perspective you brought to this subject.www.ppireclaimco.co.uk



the (none / 0) (#331)
by tareelolo on Fri Dec 14, 2012 at 08:33:45 AM PST

Great post "Register to Vote: Because Dictators are No Fun" Thanks for sharing info. keylogger



term life rates (none / 0) (#332)
by mydraid on Sun Dec 16, 2012 at 07:32:37 AM PST

Buying cow and feeding milk from it to the children is a great idea.term life rates



Jerome Karam (none / 0) (#333)
by mydraid on Sun Dec 16, 2012 at 09:35:15 AM PST

Hope one day I can go to the wild and shoot a film about it.Jerome Karam



Safelink Wireless (none / 0) (#334)
by similar on Sun Dec 16, 2012 at 01:12:33 PM PST

This is the second of a three-part series of interview with Anderson. Safelink Wireless



dress belts (none / 0) (#335)
by similar on Mon Dec 17, 2012 at 09:21:57 AM PST

I just want to let you know that I just check out your site and I find it very interesting and informative.dress belts



exposed skin care reviews (none / 0) (#336)
by similar on Mon Dec 17, 2012 at 10:19:37 AM PST

Your articles make complete sense out of each topic. exposed skin care reviews



car accident attorneys (none / 0) (#337)
by similar on Mon Dec 17, 2012 at 03:26:00 PM PST

Thank author for it. I like such topics and everything connected to this matter. I definitely want to read more sooncar accident attorneys



Bathroom renovations (none / 0) (#338)
by similar on Mon Dec 17, 2012 at 03:55:54 PM PST

I wana thank you for providing instructive and qualitative stuff so often. Bathroom renovations



There are many (none / 0) (#339)
by parkermeedy on Tue Dec 18, 2012 at 03:06:47 AM PST

There are many versions of Windows that you can use with ease today. Everything is experiences a different benefit to suit your needs. investment property accountant Melbourne



adt reviews (none / 0) (#340)
by similar on Sat Dec 22, 2012 at 06:56:49 AM PST

I have recently succesfully installed scoop in Windows XP. The only thing that is not working properly is account creation.adt reviews



Informative Post !!!!! (none / 0) (#341)
by nancy007 on Mon Dec 24, 2012 at 05:31:18 AM PST

You have hit on the bulls eye dude... you article is just amazing and reading it again and again is still not enough. There is some kind of charisma in your article that draws me towards reading it again and again and again...........:) Generic Viagra|Cheap Generic Viagra



pisos para gimnasio (none / 0) (#342)
by uilly on Fri Dec 28, 2012 at 05:10:18 AM PST

This is really interesting, You're a very skilled blogger. I've joined your feed and look forward to seeking more of your wonderful post.pisos para gimnasio



lose weight fast (none / 0) (#343)
by helen on Fri Dec 28, 2012 at 05:30:32 AM PST

Sometimes things come up and you become extremely motivated to drop a few pounds and you want to do it fast. Maybe it's an important meeting, a reunion, or an unexpected trip that you get to take and you just want less jiggle when you are running down the beach on your vacation. No matter what the reason, there are times when people want to know how to lose weight fast. http://howtoloseweightfasttricks.org/how-to-lose-weight-fast-for-kids/



filipina (none / 0) (#344)
by uilly on Sun Dec 30, 2012 at 09:43:33 AM PST

Great post. I like the project and womens rights is a big concern.filipina



whiplash compensation guide (none / 0) (#345)
by uilly on Sun Dec 30, 2012 at 03:30:03 PM PST

However, is still among the leading topics of our time. I appreciate your post and look forward to more.whiplash compensation guide



how to root android (none / 0) (#346)
by uilly on Tue Jan 01, 2013 at 08:15:19 AM PST

Put an email address at which you can be reached in the Server Admin section: 'ServerAdmin you@yourisp.com'. how to root android



Activity center Lake Villa (none / 0) (#347)
by alex12 on Thu Jan 03, 2013 at 09:38:46 AM PST

Your site is very informative and your articles are wonderful. Activity center Lake Villa



nyc dwi (none / 0) (#348)
by uilly on Sat Jan 05, 2013 at 05:55:04 AM PST

This is such a great resource that you are providing and you give it away for free.nyc dwi



Buy Cheap Cigarettes Online (none / 0) (#349)
by uilly on Sat Jan 05, 2013 at 03:40:04 PM PST

Your computer is rattling instructive and your articles are wonderful. Buy Cheap Cigarettes Online



Ornamental Aluminum Fence (none / 0) (#350)
by alex12 on Sun Jan 06, 2013 at 01:20:53 PM PST

This post is exactly what I am interested. we need some more good information. Please add more good information that would help others in such good way.Ornamental Aluminum Fence



school playground equipment supplier (none / 0) (#351)
by uilly on Mon Jan 07, 2013 at 07:46:08 AM PST

I should point that out that. My Feed reader didn't work for this site's domain.school playground equipment supplier



prestige car repairs (none / 0) (#352)
by husyy on Mon Jan 07, 2013 at 09:48:13 AM PST

I will make sure to bookmark your blog and will often come back later in life. I want to encourage you to definitely continue your great job.prestige car repairs



khjkhjkhj (none / 0) (#353)
by YakutaNopei on Tue Jan 08, 2013 at 01:09:11 AM PST

There are many programs that you can install on Windows 2000. But unfortunately I am not someone who is an expert in this field. So can not give advice. visit link



best site (none / 0) (#354)
by husyy on Tue Jan 08, 2013 at 03:50:31 PM PST

Lucky me I found your web site by accident, and I'm shocked why this accident didn't happened earlier! I bookmarked it.best site



Man And Van (none / 0) (#355)
by Rechner on Wed Jan 09, 2013 at 01:57:43 AM PST

Tenancy Cleaning Man And Van Thank you so much for providing individuals with an exceptionally splendid chance to read critical reviews from this site.



letmewatchthis (none / 0) (#356)
by alex12 on Wed Jan 09, 2013 at 03:25:49 AM PST

Each bullet point represents a glaring mistake, any one of which can be fatal for a résume.. letmewatchthis



full listx2 (none / 0) (#357)
by husyy on Wed Jan 09, 2013 at 12:27:48 PM PST

Everyone dreams of having his own house. If you too want to have your own house, read this blog where you will find tips to help you find your dream house.full listx2



How to edit (none / 0) (#358)
by racksjackson on Fri Jan 11, 2013 at 07:42:19 AM PST

I am also facing problem at the timing of installation . after lot of efforts , problem in Scoop config file. How to edit ? PowerPoint Templates



pay day loans (none / 0) (#359)
by husyy on Sat Jan 12, 2013 at 09:29:11 AM PST

hank you for this information, it has been educational and helpful to me.pay day loans



Valentine Love (none / 0) (#360)
by johnylemon on Sun Jan 13, 2013 at 07:04:09 AM PST

I can succesfully setup one account, and then that is it. Every single attempt after that resultsValentine Love



click here (none / 0) (#362)
by johnylemon on Tue Jan 15, 2013 at 05:36:07 AM PST

You should grab the 0.9 Scoop nightly. It can be obtained by clicking here.click here



download here (none / 0) (#363)
by husyy on Tue Jan 15, 2013 at 09:11:20 AM PST

I added it to my favorite's blog site list and will be checking back soon...download here



bla15bla (none / 0) (#364)
by alfredo on Tue Jan 15, 2013 at 11:21:36 AM PST

long en votre temps et énergie à faire l' Citron vous offrir gamme d' pour la migraiton pour vous de partir et venant prospères ! Obtenez votre votre propre rio orange et aussi l'actuel portabilité de variété toute en douceur facile! Orange Lac et la portabilité aura peut avoir aucun secret pour vous , dans votre cas! Vous souhaitez désir d' pouvoir pour vous de SFR ? Obtenez votre votre propre code rio bouygues , rio orange, rio virgin ou encore votre rio bandyou et aussi le un nouveau tour de main! Camions offre donne mobile, fixe, Internet, 3G et ainsi que avec clés de haute technologie dans les sein à travers France, Orange est aussi sujet entreprises sur la planète ! Avec a une nouvelle renommée mondiale d'Orange est le cellules opérateur et le Tout d'abord la portabilité opérateur en pays européens .



Breast Augmentation St. Louis (none / 0) (#365)
by husyy on Wed Jan 16, 2013 at 04:01:52 AM PST

Thank you for this great information, you write very well which i like very much. I am really impressed by your post.Breast Augmentation St. Louis



colon cleanse reviews (none / 0) (#366)
by alex12 on Wed Jan 16, 2013 at 06:50:33 AM PST

Recent times when internet has so much gossiping and stuff, your content really refreshes me. colon cleanse reviews



performance reviews samples (none / 0) (#367)
by husyy on Wed Jan 16, 2013 at 09:39:16 AM PST

To do this, the artists receive pictures of children who are waiting for portraits, and then work in their classrooms to create the portraits.performance reviews samples



reviews of adficient (none / 0) (#368)
by husyy on Thu Jan 17, 2013 at 03:23:00 PM PST

There are a lot of blogs and articles out there on this topic, but you have acquired another side of the subject. This is reliable content thank you for sharing it.reviews of adficient



There are many (none / 0) (#369)
by kiarahyam on Fri Jan 18, 2013 at 07:46:12 AM PST

There are many steps that seem to be done. I can not do this without the supervision of those who are experts in their field or there will be many problems. buy 6 sheet



Man And Van Removals (none / 0) (#370)
by Corpoflorist on Fri Jan 18, 2013 at 09:51:09 PM PST

Man And Van Removals I have suspected the same thing before and after reading your posts, I now know that my suspicions have basis. your post is very useful. thanks



credit repair companies (none / 0) (#371)
by husyy on Mon Jan 21, 2013 at 06:11:52 AM PST

It's really a marvelous task Let me come back and appearance you out of trouble somedaycredit repair companies



hello (none / 0) (#372)
by Neeraj on Mon Jan 21, 2013 at 10:20:40 AM PST

backed up by research and other professionals, gives me powerful tools and inspiration. The step-by-step technique is amazing and one that I will adopt immediately. It's simplicity and brilliance is what sealed the deal for me. seo



filipina (none / 0) (#373)
by johnylemon on Wed Jan 23, 2013 at 10:17:42 AM PST

It seems to not work. I have set my ISP's smtp server in both httpd-location.conf, and in Sendmail.filipina



check this out (none / 0) (#374)
by johnylemon on Thu Jan 24, 2013 at 06:55:16 AM PST

Whenever you need to supply a local path in the config file (eg. C:\Scoop) you will need to change the backslash to a forward slash (so C:\Scoop becomes C:/Scoop).check this out



Nice stream (none / 0) (#375)
by daftarhargahp on Fri Jan 25, 2013 at 12:08:52 AM PST

harga hp nokia harga hp samsung harga hp harga blackberry harga hp sony ericsson daftar harga hp harga hp harga hp terbaru harga blackberry harga nokia harga hp



more exposure (none / 0) (#376)
by dell on Sat Jan 26, 2013 at 01:10:20 PM PST

I completely agree with you on this point however i still think that this could have been presented in a better way for more exposure. grosir jilbab murah | kebaya pengantin modern | how to get rid of scars



CarBatteryWorld (none / 0) (#377)
by Miro123 on Mon Jan 28, 2013 at 04:51:03 PM PST

The positive cable should be attached to the positive terminal of the dead energy box and then to the positive terminal of the working car battery. These batteries are able to store more energy than Nickel-Cadmium batteries making them appropriate for hybrid vehicles.  car battery voltage http://carbatteryworld.com/car-battery-voltage/  Hybrid car batteries are designed to last approximately 150,000 or eight to ten years. Most 12 volt batteries actually hold close to 13 volts.



New York criminal attorney (none / 0) (#378)
by uilly on Tue Jan 29, 2013 at 07:52:40 AM PST

Thank you so much for providing individuals with an exceptionally splendid chance to read critical reviews from this site.New York criminal attorney



NoWinNoFeeCo.co.uk (none / 0) (#379)
by uilly on Wed Jan 30, 2013 at 04:24:06 AM PST

I like it! I like it a lot. You know exactly what you're talking about, exactly where other people are coming from on this issue.NoWinNoFeeCo.co.uk



Maternity (none / 0) (#380)
by uilly on Wed Jan 30, 2013 at 05:24:25 AM PST

Thanks a lot for sharing this article. That's a awesome article. I enjoyed the article a lot while readingMaternity



corporate retreat ideas singapore (none / 0) (#381)
by johnylemon on Wed Jan 30, 2013 at 06:45:42 AM PST

Your contents are wonderful and advisory. corporate retreat ideas singapore



DSS (none / 0) (#382)
by uilly on Wed Jan 30, 2013 at 07:14:33 AM PST

Big thumbs up for making such wonderful blog page!DSS



cheap auto insurance quotes (none / 0) (#383)
by johnylemon on Thu Jan 31, 2013 at 09:23:37 AM PST

I dispatched your articles links to all my contacts and they all mate it including me. cheap auto insurance quotes



auto insurance quotes (none / 0) (#384)
by johnylemon on Thu Jan 31, 2013 at 10:14:23 AM PST

I would be pleased if all WebPages provided such articles. auto insurance quotes



cheap hotels in vancouver bc (none / 0) (#385)
by alex12 on Thu Jan 31, 2013 at 05:37:10 PM PST

To end up being a relished player, pointed to as an expert; there are a couple necessities to answer.cheap hotels in vancouver bc



Submit a post (none / 0) (#386)
by uilly on Fri Feb 01, 2013 at 04:10:49 PM PST

I would be flattened if all websites gave articles like that. Submit a post



dc restaurants (none / 0) (#387)
by johnylemon on Sat Feb 02, 2013 at 07:23:50 AM PST

It's never too lately to meliorate your information and your listing has me. dc restaurants



Grant accounting software (none / 0) (#388)
by johnylemon on Sat Feb 02, 2013 at 07:53:47 AM PST

Your articles make complete sense out of each topic. Grant accounting software



ShaveDirect (none / 0) (#389)
by Miro123 on Sun Feb 03, 2013 at 10:51:59 AM PST

Philips and Braun are the top 2 rated companies with a long history of incorporating the latest high-tech features into each model of electric shavers. While removing all the unnecessary hair on your face and neck, the Braun shaver takes care of your skin from being damaged. panasonic es8103 shaverdirect.org Other factors include design and comfort, shape, color, size, etc. A right electric shaver will not only save time for the user, but also eliminate the need for use of foams and creams on a daily basis.



Yummy (none / 0) (#390)
by DzoniBaba on Mon Feb 04, 2013 at 08:46:50 AM PST

Most stainless steel chafing dishes can be purchased for under $50. Today, different variations of chicken casseroles are served in homes and restaurants everyday and they will continue to be part of family traditions in the years to come. Chicken and rice casserole http://yummycasseroles.com/chicken-and-rice-casserole/ If you believe it's as brown as you'd like, cover for the last fifteen minutes of cooking. Once the casserole is cooked through, you can remove the cover and allow it to finish cooking for the last 15 to 20 minutes to get a little bit of color and crispness.



thc detox (none / 0) (#391)
by helen on Tue Feb 05, 2013 at 03:04:23 PM PST

There is no exact science however in choosing the right thickness on your foam topper. Many foam topper covers are designed explicitly to prevent bed bugs from being able to come into contact with an individual. Memory Foam mattress topper Memory Foam Mattress o If you're lucky enough to share your bed with someone else, maybe they already sleep soundly every night and don't want to change the mattress? Solution: A single bed sized topper for your half of the bed should do the trick here.o "My parents bought us this as a present, I know it's uncomfortable but I'm sure you'll get used to it?" You know and your partner knows that deep down it's highly unlikely that this will happen. Using it, you can bring back life and comfort on your old mattress without breaking the bank. If you or anyone in your house is asthmatic then it is better to go for a bagged cleaner. Also, upright vacuum cleaners area less expensive and are much easier to store. Vacuum cleaner reviews Eureka Quick up Cordless Vacuum Cleaner How Suction Motor is effective in vacuum cleaner The wet dry vacuum cleaner was introduced not only pick up dry debris but also liquids. So a vacuum with the highest amperage rating should do the trick. The surface area of the dust bag is also a factor because the more surface area the bag has, the more easily the air will flow through it. Another solid long time vacuum cleaner maker is the Kenmore brands sold by Sears. Vacuum cleaner reviews The dust bag is also part of the filtration system and a significant factor influencing airflow. You only have to carry the hose and powerhead, and there is no vacuum body that you need to pull along. Keeping all these surfaces clean lets you breathe easier, literally. Also, upright vacuum cleaners area less expensive and are much easier to store. Vacuum cleaner reviews - Home The Electrolux Harmony canister vacuum is an excellent vacuum and has been designed to be ultra quiet. I hope that these few examples of how to use a water vacuum cleaner has helped you in your path to realizing how convenient having one of these wet-dry vacuums can be around the house. This is the unit of measurement used to establish a mattress' reaction against pressure. Selecting the right type of memory foam mattress is really a very important decision. Note : Clouds memory foam An Egg Crate Mattress Pad Is really an Reasonably priced Fix! If you want to protect your memory foam mattress pad from spills and accidents, you can buy covers made from a blend of soft cotton and water-resistant polymers. The memory foam mattress pad was first put to use in hospitals in the 1980s, where the material proved itself invaluable in reducing pressure sores for bedridden patients. The motor is nearer the vacuum head than a cylinder. 5 amps, the bulb uses additional amperage and so on. Dyson DC31 Best Dyson Vacuum Cleaner Reviews Here are some things you need to look into when you're hunting for the perfect industrial vacuum cleaner. Check the height of fully assembled attachments to make sure that you won't be bending over or holding your arm up in an uncomfortable position to use them. It can be easily played with touch screen 'swiping', or the standard 'D Pad'. By typing in various ways of saying "Free iPhone Games", there are several websites that have a distinct blueprint and none of which helps a consumer get reliable, free games. Clash of Clans Cheats Get Me Out Recreation Application For iphone - Ideas, Hints, Cheats & Level Walkthroughs It has been found that iPhone items are usually cheaper (sometimes free) than going through Itunes. Top iPhone Games of All TimesSpace Ninja- This is a space based iPhone app where users dodge enemy fire. A car battery will not lose power during storage Lots of people who posted an automobile battery overview of this model asserted they got it for $30-40 less than what was available at that time at many other retailers.What could be more unpleasant than when you rush to work, and your car battery dies. Bosch car batteries Batteries For executing the jump-start technique, you have to take help from other car of your neighbor having a healthy battery. Corrosion is one of the reasons for your energy box to get discharged. There are quite a few features you want know about and look for before you buy any upright or canister vacuum cleaner. There are many types of vacuum cleaners to consider when making your selection. Vacuum cleaner reviews Now think about the frequency you clean these surfaces and how dirty they actually become between cleanings. A bagless vacuum like the Dyson DC07 upright vacuum cleaner does not use dust bags but induces suction by means of centrifugal force. Memory foam mattress is also called visco elastic polyurethane foam. A medical company, Tempur-Pedic, first recognized the possible commercial application of the foam. Best memory foam mattress Styrofoam and Polystyrene: Are There Poisonous Consequences on People? - Best memory foam mattress Styrofoam and Polystyrene: Are There Poisonous Consequences on People? The pad must be broken in over a period of days or weeks. Otherwise, if you are looking to save money on a memory foam mattress, try a manufacturer that makes lower-density mattresses.



tea party games (none / 0) (#392)
by DzoniBaba on Fri Mar 15, 2013 at 11:19:46 AM PST

It will help your guests to stay in character the more the setting looks like the theme described in the invitation or scenario at the start of the party. You may enjoy it so much you will make it an ongoing family tradition.Has hosting a tea party been one of your holiday traditions over the years? Will the economic crisis of 2008 cancel you party? Here are some ways for you to share the spirit of the holiday season without breaking the bank. Suggest hosting a holiday tea party together as a group by phone or email (no cost for invitations sent)2. tea party games You can create a colorful and elegant table setting with completely mismatched tea things. Victorian females were usually naturalists and loved to garden.



new balance 996 (none / 0) (#393)
by DzoniBaba on Wed Mar 20, 2013 at 05:16:20 PM PST

Be sure to wear the socks you usually wear when running. I said the best minimalist footwear for running are your own feet. But for second place and probably the best choice for minimal running is to find a cheap pair of shoes for running in are from Walmart or your local sport's store. new balance 996 Ask the following questions:- How long have they worked at the store? Stability running shoes offer features found in both of the other types of shoes but to a lesser extent.



Job details (none / 0) (#394)
by helen on Sat Apr 20, 2013 at 04:30:01 AM PST

Motion Control Running ShoesGenerally, runners with flat feet tend to over pronate ( the foot rolls inward ) and they typically need a motion control running sneakers to control the over pronation. We had never purchased running shoes and to our novice eye they all looked pretty much the same. new balance running shoes This is completely normal, and is necessary for proper running form. It is known as a performance neutral trainer designed for distance running. It should be an enjoyable activity which will be used often. Immersing the wood in brine overnight is also another way to guarantee an improved flavor to the meat. electric smoker reviews These would be separate from other buildings to protect the rest of the other buildings from possible fire damage. Vegetables too can be smoked but it is done quite infrequently. Mostly bodybuilders and marathon runners require endurance which can be easily stimulated in our body through Nitric oxide intake. Even lightweight exercises can provide you higher muscle mass through this diet. Is Nitric Oxide a Scam? Shoking truth! Bodybuilding Workouts If you're looking for something that's going to get you ripped while you sit on the couch and watch TV, keep your wallet in your pocket. Force Factor reveiws are also constantly mentioning their preference for the pill format. They provide well-ventilated shelter in spring, summer, and fall, and can withstand most bad weather except very high wind and heavy snow accumulation. How much are you willing to spend for the camping tent? Remember that you can always opt for the discount camping tents if you want to stick to your budget. How big is the tent? It is also of the essence to consider the number of people that the tent can hold. eureka solitare Budget Bicycle Touring When you camp, it is very important that you have the proper camping gear with you. " is a coincidental suggestion to the acronym used to define the ideal camping tent. Stir sugar or milk into your tea with your own teaspoon. business, tea can provide the creativity and flexibilitySetting The SceneRegardless of which theme you select, you will want to strive to create a calming type of atmosphere, rather than a room that screams out wild decor. tea party ideas To continue the quaint tea theme, tea and tea party aperitifs can be served during the cocktail hour prior to the reception dinner. Stir with a back and forth motion as oppose to a circular motion. This is a fun DIY project that brides can do with family and girlfriends. Ask guests to come dressed in true 1800s style and enjoy an afternoon of parlor games and dainty petite fours. princess tea party Girls Tea Get together Quiz: Which type of Tea Bash Girl Have you been? - teapartyfood40 s blog Don't forget to include an RSVP on the invitation. Don't invite your guests for a cup of coffee. It may seem silly to point this out, but you would be amazed how easy people get off track. Professional tree surgeons and tree fellers more often than not have to climb trees or use ladders in their work. If you simply want to do trimming tasks, this is an excellent choice. chainsaw reviews Gear such as helmets with face shields, gloves and steel-toed boots can significantly reduce the risk of injury. Whether it is for tree-felling, landscaping, work on the construction site, or recreational trimming, Stihl chainsaws are the best chainsaws, period, and they have gone out of their way to prove it. camping world las vegas henderson list of camping supplies for kids camping chair wild camping equipment reviews stylish hiking gear for women From electrical home models, to professional grade fire and rescue chainsaws, Stihl has something for you. The last place to sacrifice quality is when a life is on the line and Stihl's line of fire & rescue chainsaws was built with this in mind. chainsaw reviews Replace the sprocket (taking care when replacing the bearing) and fit the new bar and chain. When you're evaluating whether your chainsaw is up to the job at hand, use the manufacturer's recommendations. and the alarm clock beeped, it was time to run my first half-marathon. If you're a casual runner it might be that you get all the cushioning you need from a less expensive pair. new balance running shoes Another type of Newton shoes is the Newton Running Distance. In this article we will attempt to set out, in simple terms, the key factors to consider when choosing your new pair of shoes.



How to install Scoop in Windows 2000/XP | 104 comments (104 topical, 0 hidden)
Display: Sort:

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