顶点网 > Instant Blog v1.4 - PHP博客杂志源码
Instant Blog v1.4 - PHP博客杂志源码

源码简介


Instant Blog是一个多用途的博客和杂志脚本。 您可以轻松创建Facebook Instant Articles和Google AMP页面。 Instant Blog拥有干净、响应迅速且用户友好的设计。
您可以使用功能强大的管理面板管理您的帖子、类别、用户以及设置。 用于创建帖子的动态表单。 广告管理已准备就绪,您可以轻松地向帖子添加广告。
它还具有安全、搜索引擎优化,快速且易于使用等功能。

什么是Facebook即时文章? Instant Articles是一种移动发布格式,使新闻发布者能够将文章分发到Facebook的应用程序,其加载和显示速度比标准移动网络快10倍。

什么是Google AMP? AMP项目是一项开源计划,旨在让所有人都能更好地使用网络。 该项目可以创建跨设备和分发平台一致快速,美观和高效的网站和广告。


在线演示




功能特性


Features:

Create Responsive Blog posts.
Create Facebook Instant Articles.
Create Google AMP pages.
Auto embed content with URL from Youtube, Twitter, Facebook, Instagram & Pinterest.
Social Logins..
Add pages.
RSS feed.
You can translate it with single file.
Dynamic form for creating posts.
Ads Ready.
Admin Panel.
Search engine accessible.
Responsive and mobile optimized.
Installation wizard. Easy to install.
Built with Laravel 5 and Bootstrap 4.


系统需求


PHP >= 5.6.4
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
MySQL 5.5.3+


安装方法


1、建立数据库
2、解压缩上传,将网站运行目录设置为public
3、打开http://www.yourdomain.com/install
4、点击Next Step下一步,输入website url 和数据库信息,点击Next Step下一步,然后一路下一步下一步,直到输入授权码。
5、程序由 顶点网 会员 @MCBBC 破解,请在授权码处填写:一只喵呜酱最漂亮 进行激活。
6、安装完毕。


感谢MCBBC提供和破解程序


下载地址


链接: https://pan.baidu.com/s/11i1NiY41R8mk0u71cmvQTw 提取码: 29mx


2018.11.23更新


将下面的代码复制然后替换public/index.php

<?php

/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <[email protected]>
 */

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels nice to relax.
|
*/

require __DIR__.'/../bootstrap/autoload.php';

/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/

$app = require_once __DIR__.'/../bootstrap/app.php';
/*
$app->bind('path.public', function () {
    return __DIR__;
});
*/

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);


返回