Comments

Comments on Password protect your blog

Password protecting a Movable Type blog using Movable Type’s own user database. Continue reading...

Comments

24

Trackback from Neil's Smaller World
August 14, 2004 1:48 AM
Password protect your blog
Excerpt: Use PHP to add password protection to your MT blog. Integrates with existing MT user database....

Trackback from Movalog
August 14, 2004 3:51 AM
Password Protection
Excerpt: Adam Kalsey has posted a tip on how to password protect your blog by adding PHP to your templates. The PHP is very easily integrated with MT’s database !...

Trackback from Gadgetopia
August 14, 2004 4:06 AM
Password Protecting Movable Type
Excerpt: Password protect your blog :: Kalsey Consulting Group: Good documentation on a long overdue improvement. I've got a new project, let's call it Project X, and one of the things I needed to do was set up a password-protected blog...

Wilson August 14, 2004 6:14 AM

I tried to do exactly the same thing about a year ago, and only halfway succeeded. This would have come in handy - hopefully it will come in handy again!

BillSaysThis August 14, 2004 9:47 AM

Looks very interesting and like, a bit generalized, it would work for most any secure PHP situation. Just a couple of questions:

while ($row = mysqlfetcharray($result)) {

Why is this in a while loop instead of just taking the one row?

Where is PHPAUTHUSER and PHPAUTHPW being set?

kellan August 14, 2004 10:58 AM

A quick note, this won’t work in PHP5.0.0 though it will in PHP5.0.1

Trackback from Warnadunia.NET Plug
August 14, 2004 12:13 PM
Password protected blog
Excerpt: If you are using MT, and you want to protect your blog. There is a method by Adam Kalsey....

Trackback from Learning Movable Type
August 14, 2004 12:22 PM
Movable Type Resources
Excerpt: Movable Type (MT) is a powerful web content publishing system, though often difficult for beginners to implement. Here are the links I have found most useful while implementing Movable Type weblogs. This list will grow as I continue to add features to ...

Scott August 14, 2004 9:51 PM

I would have just used the modauthmysql to protect the whole directory. But it works only if you have the rights to install an Apache module. http://www.diegonet.com/support/modauthmysql.shtml

If using the php solution, to avoid having to change every single template, you could put the code in a separate file and put this in .htaccess: phpvalue autoprepend_file /path/to/auth.php

Adam Kalsey August 14, 2004 9:59 PM

Bill: Those two variables are set when by the Web server when you submit the basic authentication form. The loop isn’t really a problem since the SQL always returns one row. So it only executes once.

Scott: The MySQL auth module should work, but as you said, you need to me able to install a module. Most people can’t. I’d also want to review the source of that before using it. (And you have to be using Apache.)

An alternative would be to write an authentication wrapper for Apache in Perl if you have mod_perl running.

Trackback from synapse
August 14, 2004 11:25 PM
Password protection and MT
Excerpt: Adam Kalsey has a dandy way to restrict your Movable Type blog to authors only.

cVaughn August 15, 2004 12:37 PM

This looks exactly like what I need.

You mentioned 5.0 won’t work. I’ve got php4.3.4- will it work? I’m also running cgi-wrap (php-cgiwrap), using mySQL, and configured for php files.

Joey Horne September 2, 2004 2:19 PM

When applying this code, I get the following error:

Warning: main(protect.php): failed to open stream: No such file or directory in /home/jhornef/public_html/journal/index.php on line 5

Warning: main(): Failed opening ‘protect.php’ for inclusion (includepath=’.:/usr/lib/php:/usr/local/lib/php’) in /home/jhornef/publichtml/journal/index.php on line 5

Any ideas?

Adam Kalsey September 2, 2004 2:26 PM

You have an error that says

Warning: main(protect.php): failed to open stream: No such file or directory

That always means you’re trying to include a file that doesn’t exist.

Either protect.php isn’t on your server or it iisn’t in the spot on your server where journal/index.php is at.

brad September 6, 2004 12:35 PM

it’s not working for me. it seems it never enters the first “if” loop.

using php 4.3.8

Trackback from Mama Write's Sideblog
September 14, 2004 11:11 AM
Password Please
Excerpt: Password protect a blog using MT author credentials. Something to consider if/when I include blogs in my 102 course website....

Trackback from Mama Write's Sideblog
September 14, 2004 11:19 AM
Password Please!
Excerpt: How to password protect a blog using MT author credentials. Intriguing idea for my 102 website if/when I include blogging as a course requirement....

Trackback from sideblog
September 17, 2004 3:45 PM
Need a password?
Excerpt: Password protect your blog :: Kalsey Consulting Group...

Trackback from Links
September 17, 2004 10:11 PM
Password Protecting Your Blog
Excerpt: In case you want to password protect an entry in Movable Type.

Christian September 18, 2004 9:32 AM

There’s a problem with the code. One of your curly brackets (whatever) is in the wrong place. The while statements should contain the following if statement. Like this:

    while ($row = mysql_fetch_array($result)) {
        $real_pass = $row['author_password'];

    if (crypt($_SERVER['PHP_AUTH_PW'], substr($real_pass, 0, 2)) == $real_pass) {
        $auth = true;
    }//end if

    }//end while

Trackback from Five Live Links
November 3, 2004 11:31 AM
Password protect your blog :: Adam Kalsey
Excerpt: Only works for some blogs and some hosts (where you control the templates, and can add and execute PHP). But still useful....

ByteRun November 17, 2004 12:46 PM

Probably last statement else statement ( …} else { return true; }… ) is useless because function always returns true or stops execution.

Ton Ensing November 17, 2005 2:07 PM

Discovered this more than a year later but it’s great nonetheless. I’m curious though if it would be possible to limit access to the author(s) associated with the blog_id=x, not just every author in the MySQL database.

crys December 8, 2005 1:44 PM

So, I’m trying to password protect my blog, could you break down the instructions for me? I’m sorry, I am a little computer illiterate.

Thanks Crys


Add your comments

This discussion has been closed.

Recently

Cloud Reliability (Aug 12)
Would you like to take bets as to whether Amazon or Google have better reliability and safety than your local network service providers?
George Carlin (Jun 22)
"I'm always relieved when someone is delivering a eulogy and I realize I'm listening to it."
Business lessons from the Kitchen (Jun 9)
The Gordon Ramsay School of Business
Under The Radar twittering (Jun 3)
My live stream from Under the Radar
Measuring a CEO's mind (May 29)
Not everything that's important can be measured. Not everything that can be measured is important.
Golden 1: breaking customer expectations (May 25)
Take a potential new user and give them a poor signup experience, then call them a liar.
Sprout Test (May 7)
A test post for Sprout widgets.

Subscribe to this site's feed.

Elsewhere

Feed Crier
Get alerted by IM when your favorite web sites and feeds are updated.
SacStarts
The Sacramento technology startup community.
Pinewood Freak
Pinewood Derby tips and tricks
Del.icio.us
My tagstream at del.icio.us.
Waddlespot
My son's Club Penguin community. News, blogs, tips, and tricks.

Contact

Adam Kalsey

Mobile: 916.600.2497

Email: adam AT kalsey.com

AIM or Skype: akalsey

PGP Key

©1999-2008 Adam Kalsey.
Content management by Movable Type.