Merhaba beyler host değişikliği yaptıktan sonra bu hatayı görmeye başladım sebebi ne olabilir ?
----------------------------
Warning: DOMDocument::importNode(): ID pageHead already defined in /home/kullanıcı/public_html/wp-content/plugins/premium-seo-pack/lib/scripts/php-query/php-query.php on line 591
---
bu satırdaki kod aşağıdakidir eklentide herhangi bir sorun olduğunu düşünmüyorum çünki eski hostingte sorunsuz çalışıyordu
---
if (is_array($source) || $source instanceof DOMNODELIST) {
// dom nodes
self::debug('Importing nodes to document');
foreach($source as $node)
$return[] = $this->document->importNode($node, true);
} else {
// string markup
$fake = $this->documentFragmentCreate($source, $sourceCharset);
if ($fake === false)
throw new Exception("Error loading documentFragment markup");
else
return $this->import($fake->root->childNodes);
}