heron
heron

Reputation: 3661

Integrating simple PHP blogging system into existing website

I want to, create blog page in my website.

There are bunch of huge blogging platforms such as: Wordpress, Blogger ... But the problem is, they are offering a loads of unneeded functions. Of course, I can create simple blog. But it will cost a lots of time and I don't want to reinvent the wheel.

So what I need is, "core" functions of blogging system such as:

I don't want to integrate wordpress because of reasons that I explained above.

Any suggestions?

Upvotes: 4

Views: 11732

Answers (1)

bowlerae
bowlerae

Reputation: 944

I used cutewnews for a while when I was new to coding (http://cutephp.com) it's pretty much the same as a blogging system. Create posts, edit posts, archive posts, categories, template is very customizable, allow/block comments, require users to register in order to add comments, block IPs, WYSIWYG editor, etc. It's all done in the back end and then you add a few lines of code in your page and the posts will appear. You can also designate how many you want to display per page. It's simple but effective and free. I believe there is a link at the bottom of the script going back to http://cutephp.com/ but you should be able to find it and delete it. It takes about 2 minutes to install and get set up. You don't even need mysql. Will work with any php frame work or coding style as long as you have the ability to create your own blank page where you can plop the code.

Upvotes: 4

Related Questions