При генерации description, SEOGenerator некоторые буквы ,Р в частности, записывает ввиде вопроса, на сайте всё нормально, Но description выглядит ужасно, нехватало, чтобы google это выдавал в раздачу. Как исправить?
Re: SEOGenerator Неправельно отображает некоторые буквы (Р в частности и другие) UTF-8 Тема актуальна, такие же проблемы, а плагин нужный Вот сам код Код (PHP): <?php /** * @author MCTrading (http://www.finanzen-nachrichten.com) * This plugin will automatically generate Keywords and Meta Description tags from your content and title. * version 1.0 */ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); // Import library dependencies jimport('joomla.event.plugin'); class plgSystemSEOGenerator extends JPlugin { // Constructor function plgSystemSEOGenerator( &$subject, $params ) { parent::__construct( $subject, $params ); } function onAfterDispatch() { global $mainframe, $thebuffer; $document =& JFactory::getDocument(); $docType = $document->getType(); // only mod site pages that are html docs (no admin, install, etc.) if (!$mainframe->isSite()) return ; if ($docType != 'html') return ; // load plugin parameters $plugin =& JPluginHelper::getPlugin('system', 'SEOGenerator'); $pluginParams = new JParameter( $plugin->params ); $titOrder = $pluginParams->def('titorder', 0); $fptitle = $pluginParams->def('fptitle','Home'); $fptitorder = $pluginParams->def('fptitorder', 0); $pageTitle = $document->getTitle(); $sitename = $mainframe->getCfg('sitename'); $sep = str_replace('\\','',$pluginParams->def('separator','|')); //Sets and removes Joomla escape char bug. if ($this->isFrontPage()): if ($fptitorder == 0): $newPageTitle = $fptitle . ' ' . $sep . ' ' . $sitename; elseif ($fptitorder == 1): $newPageTitle = $sitename . ' ' . $sep . ' ' . $fptitle; elseif ($fptitorder == 2): $newPageTitle = $fptitle; elseif ($fptitorder == 3): $newPageTitle = $sitename; endif; else: if ($titOrder == 0): $newPageTitle = $pageTitle . ' ' . $sep . ' ' . $sitename; elseif ($titOrder == 1): $newPageTitle = $sitename . ' ' . $sep . ' ' . $pageTitle; elseif ($titOrder == 2): $newPageTitle = $pageTitle; endif; endif; // Set the Title $document->setTitle ($newPageTitle); } function onPrepareContent( &$article, &$params, $limitstart ) { global $mainframe; $document =& JFactory::getDocument(); $plugin =& JPluginHelper::getPlugin('system', 'SEOGenerator'); $pluginParams = new JParameter( $plugin->params ); $blackList = $pluginParams->def('blacklist', ''); $minLength = $pluginParams->def('lengthofword', '3' ); $count = $pluginParams->def('count', '20' ); $saveAll = $pluginParams->def('regenerateall',1); $title = $article->title; $thelength = $pluginParams->def('length', 200); $thecontent = $article->text; $fpdesc = $pluginParams->def('fpdesc', 0); $credit = $pluginParams->def('credittag', 0); //Checks to see whether FP should use standard desc or auto-generated one. if ($this->isFrontPage() && $fpdesc == 0) { $document->setDescription($mainframe->getCfg('MetaDesc')); return; } //Bit of code to grab only the first content item in category list. if ($document->getDescription() != '') { if ($document->getDescription() != $mainframe->getCfg('MetaDesc')) return; } // Clean things up and prepare auto-generated Meta Description tag. $thecontent = $this->CleanText($thecontent); // Truncate the string to the length parameter - rounding to nearest word $thecontent = $thecontent . ' '; $thecontent = substr($thecontent,0,$thelength); $thecontent = substr($thecontent,0,strrpos($thecontent,' ')); // Set the description $document->setDescription($thecontent); // Set the keywords $keywords = $this->generatekeywords($title, $blackList, $count, $minLength); $document->setMetaData('keywords', $keywords); // save the modified keywords for all postings if ($saveAll == 0) { $db =& JFactory::getDBO(); $query = "SELECT `id`, `sectionid`, `catid`, `title`, `created_by_alias`, `created_by` FROM #__content"; $db->setQuery($query); $rows = $db->loadAssocList(); foreach ( $rows as $row ) { // create the keywords for the article $title = $row['title']; $keywords = $this->generatekeywords($title, $blackList, $count, $minLength); $query = "UPDATE #__content SET `metakey` = '" . $keywords . "' WHERE `id` = " . $row['id']; $db->setQuery($query); $db->query(); } } // Set optional Generator tag for SEOGenerator credit. if ($credit == 0) { $document->setMetaData('generator', 'SEOGenerator (http://www.finanzen-nachrichten.com)'); } } /* CleanText function scooped from JoomSEO plugin. Cheers guys. */ function CleanText($text) { // remove any javascript - OLLY // http://forum.joomla.org/index.php?topic=194800.msg1036857 $regex = "'<script[^>]*?>.*?</script>'si"; $text = preg_replace($regex, " ", $text); $regex = "'<noscript[^>]*?>.*?</noscript>'si"; $text = preg_replace($regex, " ", $text); // convert html entities to chars // this doesnt remove but converts it to ascii 160 // we handle that further down changing chr(160) to a space //$text = html_entity_decode($text,ENT_QUOTES,'UTF-8'); if(( version_compare( phpversion(), '5.0' ) < 0 )) { require_once(JPATH_SITE.DS.'libraries'.DS.'tcpdf'.DS.'html_entity_decode_php4.php'); $text = html_entity_decode_php4($text,ENT_QUOTES,'UTF-8'); }else{ $text = html_entity_decode($text,ENT_QUOTES,'UTF-8'); } // strip any remaining html tags $text = strip_tags($text); // remove any mambot codes $regex = '(\{.*?\})'; $text = preg_replace($regex, " ", $text); // convert newlines and tabs to spaces $text = str_replace(array("\r\n", "\r", "\n", "\t", chr(160)), " ", $text); // remove any extra spaces while (strchr($text," ")) { $text = str_replace(" ", " ",$text); } // general sentence tidyup for ($cnt = 1; $cnt < strlen($text); $cnt++) { // add a space after any full stops or comma's for readability // added as strip_tags was often leaving no spaces if (($text{$cnt} == '.') || ($text{$cnt} == ',')) { if ($text{$cnt+1} != ' ') { $text = substr_replace($text, ' ', $cnt + 1, 0); } } } // remove quotes $text = str_replace("\"", "", $text); return trim($text); } function isFrontPage() { $menu = & JSite::getMenu(); if ($menu->getActive() == $menu->getDefault()) { return true; } return false; } function killTitleinBuffer ($buff, $tit) { $cleanTitle = $buff; if (substr($buff, 0, strlen($tit)) == $tit) { $cleanTitle = substr($buff, strlen($tit) + 1); } return $cleanTitle; } // generate keywords function generatekeywords($title, $blackList, $count, $minLength) { $title = preg_replace('/<[^>]*>/', ' ', $title); $title = preg_replace('/[\.;:|\'|\"|\`|\,|\(|\)|\-]/', ' ', $title); $titleArray = explode(" ", $title); $titleArray = array_count_values(array_map('strtolower', $titleArray)); $blackArray = explode(",", $blackList); foreach($blackArray as $blackWord){ if(isset($titleArray[trim($blackWord)])) unset($titleArray[trim($blackWord)]); } arsort($titleArray); $i = 1; foreach($titleArray as $word=>$instances){ if($i > $count) break; if(strlen(trim($word)) >= $minLength ) { $keywords .= $word . ", "; $i++; } } $keywords = rtrim($keywords, ", "); return($keywords); } } Вот что получается с description Код (html): <meta name="description" content="� � Оригинальное название: Tripping the Rift: The Movie Премьера: 25 марта 2008 (мир) � ежиссер: Bernie Denk Сценарий: Марк Амато, Кен" />
Re: SEOGenerator Неправельно отображает некоторые буквы (Р в частности и другие) UTF-8 бегло вижу $titleArray = array_count_values(array_map('strtolower', $titleArray)); strtolower неврно работает при русских буквах +utf-8
Re: SEOGenerator Неправельно отображает некоторые буквы (Р в частности и другие) UTF-8 А если strtolower заменить на mb_strtolower ?