Entity line 1 parser error extra content at the end of the document

I am trying to give the option to get either a JSON or XML response. JSON works fine but when I view the XML, I get an error. http://lmsapi.com/?api_key=fba9e59d7af86b239e82581780ff987e&forma...

I am trying to give the option to get either a JSON or XML response.

JSON works fine but when I view the XML, I get an error.

http://lmsapi.com/?api_key=fba9e59d7af86b239e82581780ff987e&format=json
http://lmsapi.com/?api_key=fba9e59d7af86b239e82581780ff987e&format=xml

I’m not sure what is going wrong. I have searched and the only thing I see is to make sure that I don’t have any extra whitespace or even have spaces in my element names, which I don’t.

index.php

<?php
require_once('includes/inc.settings.php');
if(${'Response'}['format'] == 'json'){
    print_r(${'Results'});  
}elseif(${'Response'}['format'] == 'xml'){
    header('Content-type: application/xml');
    echo "<?xml version="1.0"?>";
    echo ${'Results'};
}
?>

inc.settings.php

<?php
// ****************************************
// Require other includes 
// ****************************************
    require('Excel/PHPExcel.php');
    require('inc.variables.php');
    require('inc.functions.php');
    require('inc.browser.php');
    require('class.phpmailer.php');

// ****************************************
// Initial page setup
// ****************************************

    // Set our Error Handling
    if($debug == true){
        error_reporting(E_ALL);
        ini_set('display_errors', 1);
    } else {
        error_reporting(E_ERROR);
        ini_set('display_errors', 1);
    }

    // Set our timeout limit
    set_time_limit(30);

    // Set our memory limit
    ini_set('memory_limit', '128M');

    // Start our PHP session
    session_start();

    // Set our charset to UTF-8
    mb_internal_encoding('UTF-8');

    // Get our browser information
    $browser = new Browser;

// ****************************************
// Connect to mySQL
// ****************************************
    mysql_connect(MYSQL_HOST.':'.MYSQL_PORT, MYSQL_USER, MYSQL_PASS) or die('Could not establish a connection to the MySQL Engine.');
    mysql_select_db(MYSQL_DB) or die('Could not locate the specified database');


// ****************************************
// Sanitize our possible api data
// ****************************************

    if(isset($_GET['api_key'])) { ${'API KEY'} = inputCleanSQL($_GET['api_key']); } else { ${'API KEY'} = ''; } 
    if(isset($_GET['format'])){ ${'Format'} = inputCleanSQL($_GET['format']); } else { ${'Format'} = ''; }
    if(isset($_GET['act'])){ ${'Action'} = inputCleanSQL($_GET['act']); } else { ${'Action'} = ''; }
    if(isset($_GET['phone_numer'])){ ${'Phone Number'} = inputCleanSQL(removeCHARSphone($_GET['phone_number'])); } else { ${'Phone Number'} = ''; }
    if(isset($_GET['limit'])){ ${'Limit'} = inputCleanSQL($_GET['limit']); } else { ${'Limit'} = ''; }

// ****************************************
// Begin the Response Array
// ****************************************

    ${'Response'} = array();
    ${'Response'}['status'] = '';
    ${'Response'}['reason'] = array();
    ${'Format Type'} = true;

// Check the API Key
if(isset(${'API KEY'})){
    ${'API Key Check'} = mysql_result(mysql_query('SELECT count(0) FROM `api`.`api_keys` WHERE `api_key` = "'.${'API KEY'}.'"'),0);
    if(!${'API Key Check'}) {
        ${'Response'}['status'] = 'failed';
        ${'Response'}['reason'][] = 'invalid api key';
    } else {
        // Log the API hit
        mysql_query('INSERT INTO `api`.`api_log` (`api_key`) VALUES ("'.${'API KEY'}.'")');

        // Check the format request
        if(${'Format'} != '' && ${'Format'} != 'json' && ${'Format'} != 'xml'){
            ${'Response'}['status'] = 'failed';
            ${'Response'}['reason'][] = 'invalid format specified (&format=)';
            ${'Format Type'} = false;
        }

        // Check the action request
        if(${'Action'} != '' && ${'Action'} != 'get' && ${'Action'} != 'details'){
            ${'Response'}['status'] = 'failed';
            ${'Response'}['reason'][] = 'invalid action type (&act=)';
        }

        if(${'Response'}['status'] != 'failed'){
            ${'Response'}['status'] = 'success';
            unset(${'Response'}['reason']);
        }

    }
} else {
    ${'Response'}['status'] = 'failed';
    ${'Response'}['reason'][] = 'api key required';
}


if(isset(${'Format'}) && ${'Format Type'}){
    if(${'Format'} == 'json'){
        ${'Response'}['format'] = 'json';
        ${'Results'} = json_encode(${'Response'});
    } elseif(${'Format'} == 'xml'){
        ${'Response'}['format'] = 'xml';
        ${'Results'} = arrayToXML(${'Response'});
    }
} else {
    ${'Response'}['format'] = 'json';
    ${'Results'} = json_encode(${'Response'});
}
?>

Any help would be much appreciated!

You hint us about the XML size but it may well not have anything to do with your problem.

If it worked fine for years, I would suspect something has changed in the XML format.

If the XML file appears to be valid (since it works in 9.3), you may be hitting a bug with previous versions of POSTGRES.

Try comparing 2 XMLs, before and after it started failing.

Apparently POSTGRES wasn’t working well with XML files having DOCTYPE elements in it. This is only an example (although that could be it)

So while the XML file may be technically good, a change in its format may have place you in the way of a bug in versions prior to 9.3.

For your test, try an older XML file and a new one on the 9.1 version. If one works, you know it’s a problem in the file format. If not, you at least know it’s not the XML format.

You may also want to verify if there was any patching of the OS done. Postgres uses libxml2 to parse XMLs. if that has changed, this could be it and a downgrade could solve your problem.

Фатальная ошибка: Extra content of the end of the document. Ошибка разбора XML: — [1,1].

Такую фигню выдает 1с при обмене через веб-сервис. Вот текст XML-ки,, на которую он ругается:

<?xml version=»1.0″ encoding=»UTF-8″?>

<v8msg:Message xmlns:v8msg=»http://v8.1c.ru/messages»>;

    <v8msg:Header>

        <v8msg:ExchangePlan>кпкОбменПолный</v8msg:ExchangePlan>

        <v8msg:To>001</v8msg:To>

        <v8msg:From>TP4</v8msg:From>

        <v8msg:MessageNo>7</v8msg:MessageNo>

        <v8msg:ReceivedNo>24</v8msg:ReceivedNo>

    </v8msg:Header>

    <v8msg:Body xmlns:v8=»http://v8.1c.ru/data»; xmlns:xsi=»http://www.w3.org/2001/XMLSchema-instance»>;

        <DocumentObject.кпкЗаказ>

            <Ref>a355466a-3971-fb19-01fc-a52cb9c46780</Ref>

            <DeletionMark>false</DeletionMark>

            <Date>2014-02-11T15:23:32</Date>

            <Number>Ц-КМ0000617</Number>

            <Posted>true</Posted>

            <кпкОрганизация>06b8615c-e2c0-11e2-85e6-0015174c80a1</кпкОрганизация>

            <кпкКонтрагент>331ed844-ee79-11e2-a746-0015174c80a1</кпкКонтрагент>

            <кпкТипЦен>dc06b125-e2fd-11e2-85e6-0015174c80a1</кпкТипЦен>

            <Автор>06b86163-e2c0-11e2-85e6-0015174c80a1</Автор>

            <СуммаДокумента>2160</СуммаДокумента>

            <Комментарий/>

            <Синхронизирован>false</Синхронизирован>

            <Товары>

                <Row>

                    <кпкНоменклатура>516f4255-ee74-11e2-a746-0015174c80a1</кпкНоменклатура>

                    <Количество>12</Количество>

                    <Цена>180</Цена>

                    <Сумма>2160</Сумма>

                </Row>

            </Товары>

        </DocumentObject.кпкЗаказ>

    </v8msg:Body>

</v8msg:Message>

Вроде все правильно с точки зрения протокола XML… Но не работает обмен и все тут.

При инициализации файлов более 3 mb возникает вот такая ошибка:

Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 2: parser error : internal error in /var/www/rest_od_ua/data/www/rest.od.ua/uploads/oboi_price/PHPExcel/PHPExcel/Reader/Excel2007.php on line 466

Warning: simplexml_load_string() [function.simplexml-load-string]: pg, 320x240=http://img2.goodfon.ru/original/320x240/e/95/novyy-god-elka-nlo.jpg, in /var/www/rest_od_ua/data/www/rest.od.ua/uploads/oboi_price/PHPExcel/PHPExcel/Reader/Excel2007.php on line 466

Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in /var/www/rest_od_ua/data/www/rest.od.ua/uploads/oboi_price/PHPExcel/PHPExcel/Reader/Excel2007.php on line 466

Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 2: parser error : Extra content at the end of the document in /var/www/rest_od_ua/data/www/rest.od.ua/uploads/oboi_price/PHPExcel/PHPExcel/Reader/Excel2007.php on line 466

Warning: simplexml_load_string() [function.simplexml-load-string]: pg, 320x240=http://img2.goodfon.ru/original/320x240/e/95/novyy-god-elka-nlo.jpg, in /var/www/rest_od_ua/data/www/rest.od.ua/uploads/oboi_price/PHPExcel/PHPExcel/Reader/Excel2007.php on line 466

Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in /var/www/rest_od_ua/data/www/rest.od.ua/uploads/oboi_price/PHPExcel/PHPExcel/Reader/Excel2007.php on line 466

Все что нагуглил, это проблемы с оперативной памятью, но на сервере ее 4гб.

Запускаю вот так:

$Reader = PHPExcel_IOFactory::createReaderForFile($file);
$Reader->setReadDataOnly(true); // set this, to not read all excel properties, just data
$objXLS = $Reader->load($file);

Отваливается вот тут $Reader->load($file).

Подскажите в чем проблема ?

Hi,

Thanks for posting this issue.
This has actually been a long lasting problem with collapse_text, which unfortunately sits at the foundation of the module.

This is certainly an issue that should be watched carefully….

I have tested again with collapse_text-7.x-2.x at 686576f and wysiwyg-7.x-2.2+75-dev with CKEditor and wasn’t able to reproduce the error, on a simple test case scenario.

If anybody encounters this problem again, could you please provide more information about:

  • The text format used and in particular the order of the filters configuration
  • Any special wysiwyg configuration for the text format
  • Screenshots would be great
  • a copy/paste of the exact error encountered
  • a copy/paste of the code used in node’s body, which prompted the error

Ideally, I would need to be able to reproduce the exact same steps taken which led to the error message.

Also, before reporting here, could you please first test the patch at #2487193-1: Support double quotes in the title attribute? Reporting your test results here or in that issue, would be very helpful.

Thanks in advance to everyone for your testing, reviews, reporting and feedback.
Cheers!

If anybody could be kind enough to help me solve this problem I would be most grateful. I have gone through and read all the material and everything I see appears to be set to local host. But it still doesn’t work. I have currently disabled the MAPS plugin while I try and sort the issue. I am a little unsure of where to find the geocoding type? If it is the option within the plugin I have this set to local search but still I get this issue below. Please help.

Location of Waterfall Lodge at Wainui Country Retreat

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : AttValue: » or ‘ expected in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: lor: #fff; color: #000; }</style></head><body><div><table><tr><td><b><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : attributes construct error in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: lor: #fff; color: #000; }</style></head><body><div><table><tr><td><b><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Couldn’t find end of Start Tag font line 1 in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: lor: #fff; color: #000; }</style></head><body><div><table><tr><td><b><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: b line 1 and font in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ead><body><div><table><tr><td><b><font face=times color=#0039b6 size=100>G</font> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : AttValue: » or ‘ expected in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: div><table><tr><td><b><font face=times color=#0039b6 size=100>G</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : attributes construct error in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: div><table><tr><td><b><font face=times color=#0039b6 size=100>G</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Couldn’t find end of Start Tag font line 1 in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: div><table><tr><td><b><font face=times color=#0039b6 size=100>G</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: td line 1 and font in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: es color=#0039b6 size=100>G</font><font face=times color=#c41200 size=100>o</font> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : AttValue: » or ‘ expected in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 039b6 size=100>G</font><font face=times color=#c41200 size=100>o</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : attributes construct error in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 039b6 size=100>G</font><font face=times color=#c41200 size=100>o</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Couldn’t find end of Start Tag font line 1 in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 039b6 size=100>G</font><font face=times color=#c41200 size=100>o</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: tr line 1 and font in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: es color=#c41200 size=100>o</font><font face=times color=#f3c518 size=100>o</font> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : AttValue: » or ‘ expected in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 41200 size=100>o</font><font face=times color=#f3c518 size=100>o</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : attributes construct error in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 41200 size=100>o</font><font face=times color=#f3c518 size=100>o</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Couldn’t find end of Start Tag font line 1 in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 41200 size=100>o</font><font face=times color=#f3c518 size=100>o</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: table line 1 and font in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: es color=#f3c518 size=100>o</font><font face=times color=#0039b6 size=100>g</font> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : AttValue: » or ‘ expected in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 3c518 size=100>o</font><font face=times color=#0039b6 size=100>g</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : attributes construct error in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 3c518 size=100>o</font><font face=times color=#0039b6 size=100>g</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Couldn’t find end of Start Tag font line 1 in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 3c518 size=100>o</font><font face=times color=#0039b6 size=100>g</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: div line 1 and font in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: es color=#0039b6 size=100>g</font><font face=times color=#30a72f size=100>l</font> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : AttValue: » or ‘ expected in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 039b6 size=100>g</font><font face=times color=#30a72f size=100>l</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : attributes construct error in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 039b6 size=100>g</font><font face=times color=#30a72f size=100>l</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Couldn’t find end of Start Tag font line 1 in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: 039b6 size=100>g</font><font face=times color=#30a72f size=100>l</font><font face= in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: body line 1 and font in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: es color=#30a72f size=100>l</font><font face=times color=#c41200 size=100>e</font> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Opening and ending tag mismatch: html line 1 and b in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: olor=#30a72f size=100>l</font><font face=times color=#c41200 size=100>e</font></b> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: Entity: line 1: parser error : Extra content at the end of the document in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: olor=#30a72f size=100>l</font><font face=times color=#c41200 size=100>e</font></b> in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Warning: SimpleXMLElement::__construct() [simplexmlelement.—construct]: ^ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Fatal error: Uncaught exception ‘Exception’ with message ‘String could not be parsed as XML’ in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php:501 Stack trace: #0 /home/wainueat/public_html/plugins/content/plugin_googlemap2.php(501): SimpleXMLElement->__construct(‘<html><head><me…’) #1 /home/wainueat/public_html/plugins/content/plugin_googlemap2.php(1055): PluginGoogleMap2->get_geo(‘ 990 Wainui Rd …’, ‘ABQIAAAAtLYSHaz…’, ‘utf-8’) #2 /home/wainueat/public_html/plugins/content/plugin_googlemap2.php(243): PluginGoogleMap2->core(‘1′, Object(stdClass), Object(JParameter), 0, Object(JParameter), ’41’, 1.5) #3 [internal function]: Pre15x_PluginGoogleMap2(Object(stdClass), Object(JParameter), 0) #4 /home/wainueat/public_html/libraries/joomla/event/dispatcher.php(136): call_user_func_array(‘Pre15x_PluginGo…’, Array) #5 /home/wainueat/public_html/components/com_content/views/category/view.html.php(229): JDispatcher->trigger(‘onPrepareConten…’, Array) #6 /home/wainueat/public_html/components/com_content/v in /home/wainueat/public_html/plugins/content/plugin_googlemap2.php on line 501

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Epc vag ошибка
  • Empyrion galactic survival как изменить имя игрока
  • Entext dll ошибка
  • Epc mercedes ошибка w210
  • Enterprise pki error

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии