Recommendations: Simple news/blog app?

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
redmonkey
Forum Regular
Posts: 836
Joined: Thu Dec 18, 2003 3:58 pm

Recommendations: Simple news/blog app?

Post by redmonkey »

Not really looking to re-invent the wheel so I'm searching for a simple news posting style script. Features wise, nothing spectacular, the ability to post news (obviously), easily customise the frontend output and that's about it (obviously secure etc.. too). I figure if I can't find a dedicated news app I could use a simple blog app and just disable the features I don't require.

So far, looking around, everything I've looked at is either feature packed (with no simple way of completely disabling those unwanted features) which means it's bloated for my use, or they are very time consuming to rewrite the front end.

So, anybody using anything that might do the trick and is worth raving about?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

WordPress is quite nice, feature rich, and fairly easy to extend/customize. Loads of plugins are available too
User avatar
Maugrim_The_Reaper
DevNet Master
Posts: 2704
Joined: Tue Nov 02, 2004 5:43 am
Location: Ireland

Post by Maugrim_The_Reaper »

Serendipity is what I'm currently using... http://www.s9y.org
User avatar
waradmin
Forum Contributor
Posts: 240
Joined: Fri Nov 04, 2005 2:57 pm

Post by waradmin »

Me and a small group of people coded a really simple blog script with admin functions and 1 mysql database. it just allows you to add new entries and for people to comment on them.

View it in action at http://www.open-server.org download at http://www.hotscripts.com/Detailed/54505.html

-steve
User avatar
nickman013
Forum Regular
Posts: 764
Joined: Sun Aug 14, 2005 12:02 am
Location: Long Island, New York

Post by nickman013 »

redmonkey
Forum Regular
Posts: 836
Joined: Thu Dec 18, 2003 3:58 pm

Post by redmonkey »

Thanks,

Wordpress, my initial concern with Wordpress is that requests for it show on a regular basis within my server access logs (it's not installed on my server), the query strings are quite clearly attempting to exploit vulnerabilities. It may be realtively secure, they may release updates often enough that it's not a huge problem but there are obviously bots roaming around trying out these exploits.

Serendipity, I looked at this recently, perhaps I was digging around in the wrong sections of the codebase but it seemed quite a large application for my modest needs.

SimpleBlog, after a quick glance at the main index page, I concluded that this was not the system for my needs.

Cutephp, doesn't seem to offer a simple method for customising layout/frontend.
User avatar
Maugrim_The_Reaper
DevNet Master
Posts: 2704
Joined: Tue Nov 02, 2004 5:43 am
Location: Ireland

Post by Maugrim_The_Reaper »

Serendipity is pretty large - I've found it to be simple enough for my needs though. There's quote a bit of extendibility built in for themes, plugins, etc. As for whether large makes it hard to modify, or adapt to your needs not a clue. Haven't found a pressing need to change it yet - ;)
redmonkey
Forum Regular
Posts: 836
Joined: Thu Dec 18, 2003 3:58 pm

Post by redmonkey »

Not so much modify, but disable features. The obvious quick method would be to simply modify the generated output to not display the bits I don't need/want but then the app itself is still loading and processing these components which is just both pointless and a waste of system resources.

So then the next option/approach is to go through the codebase and disable the unwanted components from loading at all during run time. The only issue with that is that one component/function/feature may be dependant on an other. I haven't looked too closely at Serendipity, I've really just been 'quick scanning' possible apps so far so it may be less effort than first impressions suggest.

Not so much difficult as potentially time consuming hence, the more simplistic the base app is to start with, the (hopefully) less time I'll have to spend on it modifying/disabling it to suit my needs.
User avatar
Moocat
Forum Contributor
Posts: 143
Joined: Wed Oct 12, 2005 9:28 am
Location: USA

Post by Moocat »

http://www.blogger.com

Googles version, you can use their version (on their servers) or you can even let it install it onto your own server (no messy setup).
redmonkey
Forum Regular
Posts: 836
Joined: Thu Dec 18, 2003 3:58 pm

Post by redmonkey »

I've been 'burned' by the third-party hosted solution before (not by google but still) as a result, I tend to avoid that route at all costs.

I've been looking around again on and off the last few days, perhaps I'm being too picky, I think I will just go re-invent the wheel.
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

How about myBloggie? It is built on the phpBB framework, uses a system similar to it (templates, themes, etc) and seems to be fairly lightweight. I haven't used it (I much prefer WordPress) but I have downloaded it and the code seems pretty straight forward.
Post Reply