Short video seo source code deployment package sharing --- open source

Functional summary:

1. Search account ranking by keyword

2. Query video ranking by keyword layout

3. Development of billing by day function

4. Statistics on the number of days to reach the standard and the number of keywords

Development summary:

Different from other developers, similar products mostly use third parties, such as: Webmaster's Home, the code development of this system uses programming algorithm query, and the query results are relatively more accurate.

 deployment steps

  1. Download source code: Download short video SEO source code from code hosting platforms such as GitHub;

  2. Configuration environment: According to the environment configuration required by the source code, install related software and dependent libraries;

  3. Import database: import the SQL file provided by the source code into the MySQL database;

  4. Modify the configuration file: modify the configuration file in the source code according to your own needs, such as database connection information, cache settings, file upload path, etc.;

  5. Deploy the website: deploy the source code to the web server, you can choose common web server software such as Apache, Nginx, etc.;

  6. Configure the domain name: resolve the domain name to the IP address of the web server, and configure the virtual host;

  7. Start the application: start the web server and application through the command line or the service control panel;

  8. Test function: Enter the domain name in the browser to test whether the function is normal;

  9. Optimize SEO: Optimize SEO through website structure, page title, keywords, etc.

 

The source code is as follows

$row = self::$register_model->getRow(self::$sr_where);

if ($row) {

    //        $row['status'] = 3;

    $thirdInfo = $this->getCateById($row['sr_category_code']);

    $secondInfo = $this->getCateById($thirdInfo->Spid);

    $firstInfo = $this->getCateById($thirdInfo->Fpid);

    $row['cate_name'] = $firstInfo->Name . '-->' . $secondInfo->Name . '-->' . $thirdInfo->Name;

    $row['sr_registered_province_name'] = $this->area_obj->findCityNameByCode($row['sr_registered_province_code'])[0]['aa_name'];

    $row['sr_registered_city_name'] = $this->area_obj->findCityNameByCode1($row['sr_registered_city_code']);

    $province_id = $row['sr_province_id'];

    $city_id = $row['sr_city_id'];

    $third_id = $row['sr_category_code'];

    $second_id = $thirdInfo->Spid;

    $first_id = $thirdInfo->Fpid;

} else {

    $province_id = 0;

    $city_id = 0;

    $third_id = 0;

    $second_id = 0;

    $first_id = 0;

}

$this->output['third_id'] = $third_id;

$this->output['second_id'] = $second_id;

$this->output['first_id'] = $first_id;

$this->output['province_id'] = $province_id;

$this->output['city_id'] = $city_id;

$this->output['row_info'] = $row;

$this->displaySmarty('dydqtshoppc/register/register.html');

 Deployment instructions:

  1. alipay.php

  This file is mainly the configuration information for docking with Aliyun interface, including payment information, refund information, weather forecast configuration, express delivery query, news content acquisition, Alipay applet, etc.

  1. app.php

   This file is mainly the configuration information of the system, including the name, domain name, system environment, praise information, Gaode map information, etc.

  1. bilibili.php

This file is the interface configuration for docking with Bilibili, including Key, secret, domain name, etc.

  1. device.php

This file is the device configuration for Douyin, including the validity period of the activation code, the available version sequence of the activation code, the latest version of the client, the binding account plan (Douyin, Kuaishou, Xiaohongshu), the list of automated tasks, etc.

  1. jike.php

   This file is a special configuration for car models, including information such as review open platform, picture category, car model classification, applet path, store list gateway, event type, etc.

Guess you like

Origin blog.csdn.net/buda_l/article/details/131439807