You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>phpBlog is a multi-purpose CMS (Content Management System). It can be used for blogs, portals, company and agency websites, magazines, newspapers and many other. It is clean, simple, lightweight, responsive and user-friendly.</p>
129
+
</section>
130
+
131
+
<sectionid="description">
132
+
<divclass="page-header">
133
+
<h3>Description</h3>
134
+
<hrclass="notop">
135
+
</div>
136
+
<p>phpBlog is a multi-purpose CMS (Content Management System). It can be used for blogs, portals, company and agency websites, magazines, newspapers and many other. It is clean, simple, lightweight, responsive and user-friendly.</p>
137
+
138
+
<p>With its powerful Admin Panel you can manage Posts, Categories, Comments, Gallery, Pages, Widgets, Themes, Website Settings, Messages and many more.</p>
139
+
</section>
140
+
141
+
<sectionid="features">
142
+
<divclass="page-header">
143
+
<h3>Features</h3>
144
+
<hrclass="notop">
145
+
</div>
146
+
<ul>
147
+
<li><strong>Posts</strong><br/>
148
+
Posts can be added, edited and deleted. HTML Editor is integrated.</li>
149
+
<li><strong>Categories</strong><br/>
150
+
Posts can be organized into Categories.</li>
151
+
<li><strong>Comments System</strong><br/>
152
+
Users can share their opinion in the Comments Section of the Posts.</li>
153
+
<li><strong>Gallery</strong><br/>
154
+
Gallery allows you to create a full portfolio of your images and works.</li>
155
+
<li><strong>Albums</strong><br/>
156
+
Gallery images can be organized into Albums.</li>
157
+
<li><strong>Users Login and Registration</strong><br/>
158
+
Users module provides user-friendly registration form, login form and profile page.</li>
159
+
<li><strong>Custom Pages</strong><br/>
160
+
Custom Pages can be added, edited and deleted. HTML Codes are supported.</li>
161
+
<li><strong>Widgets</strong><br/>
162
+
Custom Widgets can be added, edited and deleted.</li>
163
+
<li><strong>Search Module</strong><br/>
164
+
Searches for posts and displays results as a list.</li>
165
+
<li><strong>Newsletter</strong><br/>
166
+
Keep in touch with your site visitors and encourage them to return to your site.</li>
167
+
<li><strong>Themes</strong><br/>
168
+
The site can be redesigned in different themes. Many themes are added by default.</li>
169
+
<li><strong>Menu Editor</strong><br/>
170
+
Menu can be managed dynamically. Menus can be added, edited and deleted.</li>
171
+
<li><strong>Contact Page</strong><br/>
172
+
The Contact Form is providing the best ways to get in touch.</li>
173
+
<li><strong>Powerful Admin Panel</strong><br/>
174
+
The whole website can be managed via the Admin Panel.</li>
175
+
<li><strong>Dashboard with Stats</strong><br/>
176
+
On the Dashboard you can check the Statistics.</li>
177
+
<li><strong>File Manager</strong><br/>
178
+
File Manager allows you to upload, view and delete files.</li>
179
+
<li><strong>RSS Feed</strong><br/>
180
+
Web feed that allows users and applications to access updates to your website in a standardized, computer-readable format.</li>
181
+
<li><strong>XML Sitemap</strong><br/>
182
+
Sitemap is XML file that lists your website’s pages, making sure search engines can find and crawl them.</li>
183
+
<li><strong>Secure</strong><br/>
184
+
The script is integrated with special security functions borrowed from Project SECURITY to protect the whole site and its users.</li>
185
+
<li><strong>Very Optimized</strong><br/>
186
+
The script is very lightweight and optimized.</li>
187
+
<li><strong>Responsive Layout</strong><br/>
188
+
Looks good on many devices and screen resolutions.</li>
189
+
<li><strong>Easy to setup</strong><br/>
190
+
The script is integrated with Installation Wizard that will help you to install the app.</li>
191
+
</ul>
192
+
<em>and many more...</em>
193
+
194
+
</section>
195
+
196
+
<sectionid="requirements">
197
+
<divclass="page-header">
198
+
<h3>Requirements</h3>
199
+
<hrclass="notop">
200
+
</div>
201
+
<ul>
202
+
<li>PHP</li>
203
+
<li>MySQLi</li>
204
+
</ul>
205
+
</section>
206
+
207
+
<sectionid="installation">
208
+
<divclass="page-header">
209
+
<h3>Installation</h3>
210
+
<hrclass="notop">
211
+
</div>
212
+
<ol>
213
+
<li>Upload the files from the "Source" folder of the script on your host</li>
214
+
<li>Create a MySQL database (Your hosting provider can assist)</li>
215
+
<li>Visit your website where you uploaded the files (For example: yourwebsite.com/)</li>
216
+
<li>The Installation Wizard will open automatically, just follow the steps</li>
217
+
<li>Add ReCaptcha v2 keys on the Settings page of the Admin Panel.</li>
218
+
</ol><br/>
219
+
220
+
<p><b>Note:</b> If you are updating the script replace all files with the updated.
221
+
222
+
Run the following SQL queries via PHPMyAdmin (depending on the version upgrade):</p>
223
+
<p>- v1.4 to v1.5 update SQL queries:</p>
224
+
<code>
225
+
ALTER TABLE `posts` ADD `author_id` INT(11) NOT NULL DEFAULT '1' AFTER `content`;
226
+
<br/>
227
+
ALTER TABLE `posts` ADD `featured` VARCHAR(3) NOT NULL DEFAULT 'No' AFTER `active`;
228
+
<br/>
229
+
ALTER TABLE `settings` ADD `date_format` VARCHAR(50) NOT NULL DEFAULT 'd.m.Y' AFTER `gcaptcha_secretkey`, ADD `background_image` VARCHAR(255) NOT NULL AFTER `date_format`, ADD `rtl` VARCHAR(3) NOT NULL DEFAULT 'No' AFTER `youtube`;
230
+
</code>
231
+
232
+
233
+
<p>- v1.5 to v1.6 update SQL queries:</p>
234
+
<code>
235
+
ALTER TABLE `settings` ADD `head_customcode` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL AFTER `gcaptcha_secretkey`;
236
+
<br/>
237
+
ALTER TABLE `widgets` ADD `position` VARCHAR(10) NOT NULL DEFAULT 'Sidebar' AFTER `content`;
238
+
</code>
239
+
240
+
<p>- v1.7 to v1.8 update SQL queries:</p>
241
+
<code>
242
+
ALTER TABLE `settings` ADD `linkedin` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `youtube`;
243
+
<br/>
244
+
ALTER TABLE `settings` ADD `latestposts_bar` VARCHAR(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Enabled' AFTER `date_format`;
245
+
<br/>
246
+
ALTER TABLE `gallery` ADD `album_id` INT(11) NOT NULL DEFAULT 1 AFTER `id`;
247
+
<br/>
248
+
CREATE TABLE `albums` ( `id` INT NOT NULL , `title` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci;
249
+
<br/>
250
+
INSERT INTO `albums` (`id`, `title`) VALUES (1, 'General');
251
+
<br/>
252
+
ALTER TABLE `albums`
253
+
ADD PRIMARY KEY (`id`);
254
+
<br/>
255
+
ALTER TABLE `albums`
256
+
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
257
+
</code>
258
+
</section>
259
+
260
+
<sectionid="recaptcha">
261
+
<divclass="page-header">
262
+
<h3>ReCaptcha v2 - Configuration</h3>
263
+
<hrclass="notop">
264
+
</div>
265
+
<p>The Site Key and Secret Key can be generated on this page:
0 commit comments