Перейти к публикации

OrenZeN

новички
  • Публикации

    6
  • Зарегистрирован

  • Посещение

Сообщения, опубликованные пользователем OrenZeN

  1. Доброе время суток. Есть сайт на dle mp3 песен, на сайте появляются дубликаты песен есть ли какая то возможность удалить дубликаты скажем по названием альбомов? через доп поле

  2. Доброе время суток, купил сборку кредитной тематики 
    Там стоят три модуля (собственно ради них и покупал) 

     

    1.Каталог Офферов

    2.Каталог Банков

    3.Каталог МФО

     

    Карта сайта для этих модулей создается но вот проблема priority пустой гугл и яша ругаются на это 

    <url>
    <loc>http://сайт.ру/mfo/</loc>
    <lastmod>2020-05-06</lastmod>
    <priority/>
    </url>
    <url>
    <loc>http://сайт.ру/mfo/all/</loc>
    <lastmod>2020-05-06</lastmod>
    <priority/>
    </url>
    <url>
    <loc>http://сайт.ру/mfo/all/mfo-platizaru/</loc>
    <lastmod>2020-05-06</lastmod>
    <priority/>
    </url>
    <url>
    <loc>http://сайт.ру/mfo/all/mfo-zaymert/</loc>
    <lastmod>2020-05-06</lastmod>
    <priority/>
    </url>
    <url>
    <loc>
    http://сайт.ру/mfo/all/mfo-platizaru/review/
    </loc>
    <lastmod>2020-05-06</lastmod>
    <priority/>
    </url>
    <url>
    <loc>
    http://сайт.ру/mfo/all/mfo-zaymert/review/
    </loc>
    <lastmod>2020-05-06</lastmod>
    <priority/>

     

    Где это можно исправить?

    Файл:google.class.php

     

    <?php
    /*
    =====================================================
     DataLife Engine - by SoftNews Media Group 
    -----------------------------------------------------
     http://dle-news.ru/
    -----------------------------------------------------
     Copyright (c) 2004-2020 SoftNews Media Group
    =====================================================
     This code is protected by copyright
    =====================================================
     File: google.class.php
    -----------------------------------------------------
     Use: Google Sitemap
    =====================================================
    */
    
    if( !defined( 'DATALIFEENGINE' ) ) {
    	header( "HTTP/1.1 403 Forbidden" );
    	header ( 'Location: ../../' );
    	die( "Hacking attempt!" );
    }
    
    class googlemap {
    	
    	var $allow_url = "";
    	var $home = "";
    	var $limit = 0;
    	var $news_priority = "0.5";
    	var $stat_priority = "0.5";
    	var $priority = "0.6";
    	var $cat_priority = "0.7";
    	
    	function __construct($config) {
    		
    		if (strpos($config['http_home_url'], "//") === 0) $config['http_home_url'] = "https:".$config['http_home_url'];
    		elseif (strpos($config['http_home_url'], "/") === 0) $config['http_home_url'] = "https://".$_SERVER['HTTP_HOST'].$config['http_home_url'];
    
    		$this->allow_url = $config['allow_alt_url'];
    		$this->home = $config['http_home_url'];
    	
    	}
    	
    	function build_map() {
    		
    		$map = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
    		$map .= $this->get_md1();
    		$map .= $this->get_md2();
    		$map .= $this->get_static();
    		$map .= $this->get_categories();
    		$map .= $this->get_news();
    		$map .= "</urlset>";
    		
    		return $map;
    	
    	}
    
    	function build_index( $count ) {
    		
    		$map = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
    
    		$lastmod = date( "Y-m-d" );		
    
    		$map .= "<sitemap>\n<loc>{$this->home}uploads/sitemap1.xml</loc>\n<lastmod>{$lastmod}</lastmod>\n</sitemap>\n";
    
    		for ($i =0; $i < $count; $i++) {
    			$t = $i+2;
    			$map .= "<sitemap>\n<loc>{$this->home}uploads/sitemap{$t}.xml</loc>\n<lastmod>{$lastmod}</lastmod>\n</sitemap>\n";
    		}
    
    		$map .= "</sitemapindex>";
    		
    		return $map;
    	
    	}
    
    	function build_stat() {
    		
    		$map = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
    		$map .= $this->get_static();
    		$map .= $this->get_categories();
    		$map .= "</urlset>";
    		
    		return $map;
    	
    	}
    
    	function build_map_news( $n ) {
    		
    		$map = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
    		$map .= $this->get_news( $n );
    		$map .= "</urlset>";
    		
    		return $map;
    	
    	}
    	
    	function get_categories() {
    		
    		global $db, $user_group;
    		
    		$cat_info = get_vars( "category" );
    		$this->priority = $this->cat_priority;
    		
    		if( ! is_array( $cat_info ) ) {
    			$cat_info = array ();
    			
    			$db->query( "SELECT * FROM " . PREFIX . "_category ORDER BY posi ASC" );
    			
    			while ( $row = $db->get_row() ) {
    				
    				if( !$row['active'] ) continue;
    				
    				$cat_info[$row['id']] = array ();
    				
    				foreach ( $row as $key => $value ) {
    					$cat_info[$row['id']][$key] = $value;
    				}
    			
    			}
    			
    			set_vars( "category", $cat_info );
    			$db->free();
    		}
    		
    		$xml = "";
    		$lastmod = date( "Y-m-d" );
    		
    		$allow_list = explode ( ',', $user_group[5]['allow_cats'] );
    		$not_allow_cats = explode ( ',', $user_group[5]['not_allow_cats'] );
    		
    		foreach ( $cat_info as $cats ) {
    			
    			if ($allow_list[0] != "all") {
    				if (!$user_group[5]['allow_short'] AND !in_array( $cats['id'], $allow_list )) continue;
    			}
    			
    			if ($not_allow_cats[0] != "") {
    				if (!$user_group[5]['allow_short'] AND in_array( $cats['id'], $not_allow_cats )) continue;
    			}
    			
    			if( $this->allow_url ) $loc = $this->home . $this->get_url( $cats['id'], $cat_info ) . "/";
    			else $loc = $this->home . "index.php?do=cat&category=" . $cats['alt_name'];
    			
    			$xml .= $this->get_xml( $loc, $lastmod );
    		}
    		
    		return $xml;
    	}
    	
    	function get_news( $page = false ) {
    		
    		global $db, $config,$user_group;
    		
    		$xml = "";
    		$this->priority = $this->news_priority;
    		
    		if ( $page ) {
    
    			$page = $page - 1;
    			$page = $page * 40000;
    			$this->limit = " LIMIT {$page},40000";
    
    		} else {
    
    			if( $this->limit < 1 ) $this->limit = false;
    			
    			if( $this->limit ) {
    				
    				$this->limit = " LIMIT 0," . $this->limit;
    			
    			} else {
    				
    				$this->limit = "";
    			
    			}
    		}
    		
    		$thisdate = date( "Y-m-d H:i:s", time() );
    		if( $config['no_date'] AND !$config['news_future'] ) $where_date = " AND date < '" . $thisdate . "'";
    		else $where_date = "";
    
    		$allow_list = explode ( ',', $user_group[5]['allow_cats'] );
    		$not_allow_cats = explode ( ',', $user_group[5]['not_allow_cats'] );
    		$stop_list = "";
    		$cat_join = "";
    
    		if ($allow_list[0] != "all") {
    			
    			if ($config['allow_multi_category']) {
    				
    				$cat_join = " INNER JOIN (SELECT DISTINCT(" . PREFIX . "_post_extras_cats.news_id) FROM " . PREFIX . "_post_extras_cats WHERE cat_id IN (" . implode ( ',', $allow_list ) . ")) c ON (p.id=c.news_id) ";
    			
    			} else {
    				
    				$stop_list = "category IN ('" . implode ( "','", $allow_list ) . "') AND ";
    			
    			}
    		
    		}
    
    		if( $not_allow_cats[0] != "" ) {
    			
    			if ($config['allow_multi_category']) {
    				
    				$stop_list = "p.id NOT IN ( SELECT DISTINCT(" . PREFIX . "_post_extras_cats.news_id) FROM " . PREFIX . "_post_extras_cats WHERE cat_id IN (" . implode ( ',', $not_allow_cats ) . ") ) AND ";
    			
    			} else {
    				
    				$stop_list = "category NOT IN ('" . implode ( "','", $not_allow_cats ) . "') AND ";
    			
    			}
    			
    		}
    		
    		$result = $db->query( "SELECT p.id, p.date, p.alt_name, p.category, e.access, e.editdate, e.disable_index, e.need_pass FROM " . PREFIX . "_post p {$cat_join}LEFT JOIN " . PREFIX . "_post_extras e ON (p.id=e.news_id) WHERE {$stop_list}approve=1" . $where_date . " ORDER BY date DESC" . $this->limit );
    
    		while ( $row = $db->get_row( $result ) ) {
    
    			$row['date'] = strtotime($row['date']);
    			
    			$row['category'] = intval( $row['category'] );
    
    			if ( $row['disable_index'] ) continue;
    			
    			if ( $row['need_pass'] ) continue;
    			
    			if (strpos( $row['access'], '5:3' ) !== false) continue;
    
    			if( $this->allow_url ) {
    				
    				if( $config['seo_type'] == 1 OR  $config['seo_type'] == 2 ) {
    					
    					if( $row['category'] and $config['seo_type'] == 2 ) {
    						
    						$loc = $this->home . get_url( $row['category'] ) . "/" . $row['id'] . "-" . $row['alt_name'] . ".html";
    					
    					} else {
    						
    						$loc = $this->home . $row['id'] . "-" . $row['alt_name'] . ".html";
    					
    					}
    				
    				} else {
    					
    					$loc = $this->home . date( 'Y/m/d/', $row['date'] ) . $row['alt_name'] . ".html";
    				}
    			
    			} else {
    				
    				$loc = $this->home . "index.php?newsid=" . $row['id'];
    			
    			}
    
    			if ( $row['editdate'] ){
    			
    				$row['date'] =  $row['editdate'];
    			
    			}
    			
    			$xml .= $this->get_xml( $loc, date( "Y-m-d", $row['date'] ) );
    		}
    		
    		return $xml;
    	}
    	
    	function get_static() {
    		
    		global $db;
    		
    		$xml = "";
    		$lastmod = date( "Y-m-d" );
    		
    		$this->priority = $this->stat_priority;
    		
    		$result = $db->query( "SELECT name, sitemap, disable_index, password FROM " . PREFIX . "_static" );
    		
    		while ( $row = $db->get_row( $result ) ) {
    			
    			if( $row['name'] == "dle-rules-page" ) continue;
    			if( !$row['sitemap'] OR $row['disable_index'] OR $row['password']) continue;
    			
    			if( $this->allow_url ) $loc = $this->home . $row['name'] . ".html";
    			else $loc = $this->home . "index.php?do=static&page=" . $row[name];
    			
    			$xml .= $this->get_xml( $loc, $lastmod );
    		}
    		
    		return $xml;
    	}
    	
    	function get_modul2($table, $xml)
        {
            global $db;
            $lastmod = date("Y-m-d");
    
            $cats = $db->super_query('select id, options from ' . PREFIX . '_' . $table . '_options where type="category"', true);
            $posts = $db->super_query('select alt_name, category from ' . PREFIX . '_' . $table . '_post where approve="1"', true);
            $postsCat = [];
    
            foreach ($posts as $post) {
    			$postFirstCat = explode(',', $post['category'])[0];
    			$postsCat[$postFirstCat][] = $post['alt_name'];
    		}
            unset($posts);
    
    
            $table .= '/';
    
            $loc = $this->home . $table;
            $xml .= $this->get_xml($loc, $lastmod);
            foreach ($cats as $cat) {
                $cat_alt = explode('|||alt_name=', $cat['options'])[1];
                $cat_alt = explode('|||', $cat_alt)[0];
    
                $loc = $this->home . $table . $cat_alt . '/';
                $xml .= $this->get_xml($loc, $lastmod);
                foreach ($postsCat[$cat['id']] as $post) {
                    $loc = $this->home . $table . $cat_alt . '/' . $post . '/';
                    $xml .= $this->get_xml($loc, $lastmod);
                }
    			foreach ($postsCat[$cat['id']] as $post) {
                    $loc = $this->home . $table . $cat_alt . '/' . $post . '/review/';
                    $xml .= $this->get_xml($loc, $lastmod);
                }
            }
            return $xml;
        }
    	
    	function get_modul1($table, $xml)
        {
            global $db;
            $lastmod = date("Y-m-d");
    
            $cats = $db->super_query('select id, options from ' . PREFIX . '_' . $table . '_options where type="category"', true);
            $posts = $db->super_query('select alt_name, category from ' . PREFIX . '_' . $table . '_post where approve="1"', true);
            $postsCat = [];
    
            foreach ($posts as $post) {
    			$postFirstCat = explode(',', $post['category'])[0];
    			$postsCat[$postFirstCat][] = $post['alt_name'];
    		}
            unset($posts);
    
    
            $table .= '/';
    
            $loc = $this->home . $table;
            $xml .= $this->get_xml($loc, $lastmod);
            foreach ($cats as $cat) {
                $cat_alt = explode('|||alt_name=', $cat['options'])[1];
                $cat_alt = explode('|||', $cat_alt)[0];
    
                $loc = $this->home . $table . $cat_alt . '/';
                $xml .= $this->get_xml($loc, $lastmod);
                foreach ($postsCat[$cat['id']] as $post) {
                    $loc = $this->home . $table . $cat_alt . '/' . $post . '/';
                    $xml .= $this->get_xml($loc, $lastmod);
                }
            }
            return $xml;
        }
    
        function get_md2()
        {
    
            global $db;
    
            $xml = "";
            $lastmod = date("Y-m-d");
    
            $this->priority = $this->city_priority;
    
            foreach ([
                         'banki',
                         'mfo'
                     ] as $table) {
                $xml = $this->get_modul2($table, $xml);
            }
            return $xml;
        }
    	
    	function get_md1()
        {
    
            global $db;
    
            $xml = "";
            $lastmod = date("Y-m-d");
    
            $this->priority = $this->city_priority;
    
            foreach ([
    					 'offers'
                     ] as $table) {
                $xml = $this->get_modul1($table, $xml);
            }
            return $xml;
        }
    	
    	function get_url($id, $cat_info) {
    		
    		if( ! $id ) return;
    		
    		$parent_id = $cat_info[$id]['parentid'];
    		
    		$url = $cat_info[$id]['alt_name'];
    		
    		while ( $parent_id ) {
    			
    			$url = $cat_info[$parent_id]['alt_name'] . "/" . $url;
    			
    			$parent_id = $cat_info[$parent_id]['parentid'];
    			
    			if( $cat_info[$parent_id]['parentid'] == $cat_info[$parent_id]['id'] ) break;
    		
    		}
    		
    		return $url;
    	}
    	
    	function get_xml($loc, $lastmod) {
    		
    		$loc = htmlspecialchars( $loc, ENT_QUOTES, 'ISO-8859-1' );
    		
    		$xml = "\t<url>\n";
    		$xml .= "\t\t<loc>$loc</loc>\n";
    		$xml .= "\t\t<lastmod>$lastmod</lastmod>\n";
    		$xml .= "\t\t<priority>" . $this->priority . "</priority>\n";
    		$xml .= "\t</url>\n";
    		
    		return $xml;
    	}
    
    }
    
    ?>

     

  3. В 19.11.2019 в 16:43, avdsm сказал:

    Оцените люди! https://vosmarket.ru/

    Сейчас трафик в основном от мобильного Гугла на 90 % , однако если в следующей  версии DLE поддержка AMP страниц не появится, скорее всего в 2020 году я останусь без трафика.
    Гугл уже выдает в мольный трафик AMP страницы, а Яндекс – Турбо страницы.
    С Турбо в DLЕ все нормально.

     

    Как у вас получилось прописать totalTime ? (микроразметка)

×
×
  • Создать...