Integrating Simple PHP Blogs into an Existing Website

I want to create a blog page on my website.

There are many great blogging platforms: Wordpress, Blogger ... But the problem is that they offer many unnecessary features. Of course, I can create a simple blog. But it will cost a lot of time, and I do not want to reinvent the wheel.

So, I need the "basic" functions of the blogging system, such as:

  • Add, delete, edit messages, insert attachments, images o messages
  • Breakdown

I do not want to integrate wordpress because of the reasons that I explained above.

Any suggestions?

+4
source share
1 answer

I used cutewnews for a while, when I was new to coding ( http://cutephp.com ), it is almost the same as the blogging system. Create entries, edit posts, archived posts, categories, the template is very customizable, allow / block comments, require users to register to add comments, block IP addresses, WYSIWYG editor, etc. All this is done at the end, and then you add a few lines of code on your page and messages will appear. You can also specify how much you want to display on the page. It is simple, but effective and free. I believe there is a link at the bottom of the script, returning to http://cutephp.com/ , but you should be able to find it and remove it. It takes about 2 minutes to install and configure. You don't even need mysql. It will work with any frame frame work or coding style if you have the opportunity to create your own blank page where you can flip the code.

+4
source

Source: https://habr.com/ru/post/1386912/


All Articles