Main Stuff

Setup Files
Unzip folders and move blog folder or files into the desired folder. Setup the user and database. The database file can be dumped 'as is'. The database user, database password and password settings can be added to the public.inc.php file.


 

Create, Edit and Delete a Simple Blog Post
Just login and add or edit a post.


 

Create a Video Post
Add simple Youtube, Vimeo or other 3rd party code.


 

Upload Images
You can upload and edit an image when you add or edit a post.


 

Manage Comments and Settings
You can upload and edit an image when you add or edit a post. The 'images' folder will need permissions to write to. Change to 777; if necessary.


 

Manage SEF URLS

Apache Server .htaccess

Root Folder
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)--(.*)\.html$ blog/index\.php?id=$1&title=$2 [NC]
Subfolder
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)--(.*)\.html$ blog/index\.php?id=$1&title=$2 [NC]

Nginx

Root Folder
if (!-f $request_filename){
set $rule_0 1$rule_0;
}
if (!-d $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.*)--(.*).html$ /index.php?id=$1&title=$2;
}
Subfolder
if (!-f $request_filename){
set $rule_0 1$rule_0;
}
if (!-d $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.*)--(.*).html$ /blog/index.php?id=$1&title=$2;
}
Blogify Any Website or HTML Page
Alter 2 files:
header_blog.inc.php
blog_footer.inc.php

To blogify,
1) Make backups before proceeding...just in case you make an error and want to get back to normal.
2) Open the file that you would like for the blog, like index.html or blog.html. Many Themeforest templates(like Themeforest) and others already a static HTML blog page.
3) Use Firebug to find the beginning '<div>' and closing </div> tag where you want to place the blog.
4) Add the code from the HTML file to the beginning <div> tag into the header_blog.inc.php file.
5) Add the line below into the head; above the other css and js files. This is the only css sheet specific to the blog code and you can alter it to suit your needs.
<link rel="stylesheet" href="css/style-everywhere.css"/>
6) Add the code below right before the ending </head> tag.
<?php if (!(is_numeric($blogger_id)) || $blogger_id!=1 || $blogger_login!= $_SESSION['blogger_login'] || $blogger_password!=substr($_SESSION['blogger_password'],4)) { }
else{ ?>

<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<?php
} ?>
7) Open blog_footer.inc.php. After that, add the end </div> tag and the remaining code into the file. The actual blog will fit nicely into the middle.
That's it. Need more help? Watch the video below.
If you have this method down, you can make a conversion in minutes!

 

XML Sitemap
View at sitemap.php

Use On Any Device

Create stunning blogs using today’s best themes. All pages will look ideal on all devices; laptop, desktop, ipad, Android and Iphone.

Save Time & Money

PhpBlogifier will save you up to $40 on a theme and can save you countless hours adding a blog vs the time assembling a blog.

Fast Loading / SEO

Build blog posts with text, images and video that will be delivered at lightning speed. Google likes page speed and fresh content.