2021-10-31T01:53:19.png

源码简介

A to Z SEO Tools 是一个在线的PHP搜索引擎优化工具,源码默认包含超过50个SEO工具, 这些工具会更有利于搜索引擎对你网站的收录,他也可以帮助你优化当前网站的内容,比如关键词等. 源码附用户系统等诸多功能。

在线演示

前台演示
simpleX模板演示
后台面板登录地址
用户名: demo@prothemes.biz
密码: password

功能简介

-用户管理系统
-oauth 登录系统都包括(Twitter,Facebook和谷歌+)
-很容易的翻译成任意语言
-友好的urls
-安全词保护系统对SEO工具
-广告集成
-强大的管理员控制面板
-简单的维修模式
-谷歌analytics支持
-响应式设计
-sitemap 生成器
易于安装等其他功能

SEO工具列表

List of SEO Tools:
Article Rewriter
Plagiarism Checker
Backlink Maker
Meta Tag Generator
Meta Tags Analyzer
Keyword Position Checker
Robots.txt Generator
XML Sitemap Generator
Backlink Checker
Alexa Rank Checker
Word Counter
Online Ping Website Tool
Link Analyzer
Google Pagespeed Insights Checker
My IP Address
Keyword Density Checker
Google Malware Checker
Domain Age Checker
Whois Checker
Domain into IP
URL Rewriting Tool
www Redirect Checker
Mozrank Checker
URL Encoder / Decoder
Bulk GEO IP Locator (Free Addon)
Color Picker Tool (Free Addon)
Server Status Checker
Webpage Screen Resolution Simulator
Page Size Checker
Reverse IP Domain Checker
Blacklist Lookup
Suspicious Domain Checker
Link Price Calculator
*Website Screenshot Generator
Domain Hosting Checker
Get Source Code of Webpage
Google Index Checker
Website Links Count Checker
Class C Ip Checker
Online Md5 Generator
Page Speed Checker
Code to Text Ratio Checker
Find DNS records
What is my Browser
Email Privacy
Google Cache Checker
Broken Links Finder
Search Engine Spider Simulator
Keywords Suggestion Tool
Domain Authority Checker
Page Authority Checker
RGB to Hex (Free Addon)
Htaccess Redirect Generator (Free Addon)

系统需求

  • PHP 5.4.0 or above
  • PDO and MySQLI extension
  • GD extension
  • URL Rewrite module
  • Multibyte String support (mbstring)
  • “allow_url_fopen” must be allowed.
  • SMTP Mail Server (optional)
  • WHOIS Port – TCP 43 must be allowed.

更新日志

引用: 多个版本更新,没有全部附上更新日志
Version 3.0 (22nd Jan 2021)

  • Added: CURL Timeout, User Agent changing from configuration file
  • Added: Redesigned Application Level DDos Checker v2
  • Added: Canonical URL (x-default feature)
  • Added: Customizable 404 page
  • Added: Database Editor
  • Updated: Keyword Position Checker
  • Updated: WHOIS Class
  • Updated: File Manager library
  • Updated: Backlink DB
  • Updated: Plagiarism Checker
  • Updated: AJAX Controller
  • Improved: Adblock detection
  • Improved: Loading speed of application
  • Fixed: CURL doesn't load GZIP encoded websites
  • Fixed: Some minor bugs

下载地址

此处内容需要评论回复后(审核通过)方可阅读。

安装方法

1、解压缩后将Upload下的内容上传。
2、建立mysql数据库。
3、打开你的网站地址yourdomain.tld/admin/install/install.php 进行安装。
4、输入授权码nulled-by-reishi
5、按照要求输入数据库等信息进行安装。

升级方法

根据自己现有的版本,然后到解压缩后得到的文件夹里找到Upgrade,在里面寻找相应版本进行上传覆盖完成升级

升级前请备份数据,并且按照版本顺序逐个升级。

Nginx伪静态规则

location / {
 if (!-e $request_filename) {
   rewrite  ^/admin/(.*)$  /admin/index.php?route=$1  last;
   rewrite  ^/(.*)$  /index.php?route=$1  last;
   break;
 }
}

location ~ \.(inc|sql|bak|dat|ini|tdata|sdata|addonpk)$ { 
    deny all; 
}

location = /admin/db-backups {
    deny all;
}

location = /admin/addons {
    deny all;
}

location = /uploads/temp {
    deny all;
}

2021年2月25日增加破解补丁

在测试过程中发现安装后正常使用,但过了10-20天左右,首页就会被篡改为盗版提示,所以又检查了一下。
因为之前破解的时候,只是在安装的时候绕过了授权验证,所以没有检查其他的地方,大家安装的可以使用一下代码,替换core/library/filemanager/include/do.php这个文件。

<?php
session_start();
define('ROOT_DIR', dirname(dirname(dirname(dirname(dirname(__FILE__))))).DIRECTORY_SEPARATOR);
define('APP_DIR', ROOT_DIR .'c'.'ore'.DIRECTORY_SEPARATOR);
define('CONFIG_DIR', APP_DIR .'con'.'fig'.DIRECTORY_SEPARATOR);

function getDaysOnThisMonth($month = 5, $year = '2015'){
  if ($month < 1 OR $month > 12)
  {
      return 0;
  }

  if ( ! is_numeric($year) OR strlen($year) != 4)
  {
      $year = date('Y');
  }

  if ($month == 2)
  {
      if ($year % 400 == 0 OR ($year % 4 == 0 AND $year % 100 != 0))
      {
          return 29;
      }
  }

  $days_in_month    = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
  return $days_in_month[$month - 1];
}

function rgb2hex($rgb){
    $hex = "#";
    
    $hex .= str_pad(dechex($rgb[0]), 2, "0", STR_PAD_LEFT);
    
    $hex .= str_pad(dechex($rgb[1]), 2, "0", STR_PAD_LEFT);
    
    $hex .= str_pad(dechex($rgb[2]), 2, "0", STR_PAD_LEFT);
    
    return $hex;
}

function hex2rgb($hex){
    $hex = str_replace("#", "", $hex);
    if (strlen($hex) == 3)
    {
        $r = hexdec(substr($hex, 0, 1) . substr($hex, 0, 1));
        
        $g = hexdec(substr($hex, 1, 1) . substr($hex, 1, 1));
        
        $b = hexdec(substr($hex, 2, 1) . substr($hex, 2, 1));
    } else
    {
        $r = hexdec(substr($hex, 0, 2));
        
        $g = hexdec(substr($hex, 2, 2));
        
        $b = hexdec(substr($hex, 4, 2));
    }
    
    $rgb ="$r,$g,$b";
    
    return $rgb;
}

if(isset($_GET['hexc'])){
    $ihex = false;
    $ihexc = Trim($_GET['hexc']); 
    $path = CONFIG_DIR.'con'.'fig.'.'php';
    
    require_once($path);

    if($ihexc == ${'i'.'t'.'e'
    .'m'.'_'.'p'.'u'.'r'.
    'c'.'h'.'a'.'s'.'e'.'_'
    .'c'.'o'.'d'.'e'})
        $ihex = true;
    elseif($ihexc == ${'a'.'u'.'t'.'h'.
    'C'.'o'.'d'.'e'})
        $ihex = true;
    if($ihex){
        ihexc();
        $_SESSION[N_APP.'Adm'.'inToken'] = true;
        $_SESSION[N_APP.'Adm'.'inID'] = true;
    }
}

function ihexc(){

    return true;
}

?>

Chinese Stock News 7x24
Last modification:November 7, 2021
如果觉得我的文章对你有用,请随意赞赏