Jump to content

rss con data in formato rfc822


ferdgamb

Recommended Posts

salve a tutti ho un problema con rssgraffiti non mi publica gli rss il problema sembra dovuto alla data di publicazione del rss che il modulo rss prodotti non crea.

mi potete aiutare a modificare il modulo in modo sa inserire la data in formato rfc822 (Wed, 2 ott 2002 15:00:00 +200)

non sono prafico di programmaione vi sono grato per l'aiuto

 

il file che viene creato dal modulo lo potete vedere a questo link http://computergf.altervista.org/modules/feeder/rss.php

 

rss.php è scritto cosi

 

<?php

/*

* 2007-2012 PrestaShop

*

* NOTICE OF LICENSE

*

* This source file is subject to the Academic Free License (AFL 3.0)

* that is bundled with this package in the file LICENSE.txt.

* It is also available through the world-wide-web at this URL:

* http://opensource.org/licenses/afl-3.0.php

* If you did not receive a copy of the license and are unable to

* obtain it through the world-wide-web, please send an email

* to [email protected] so we can send you a copy immediately.

*

* DISCLAIMER

*

* Do not edit or add to this file if you wish to upgrade PrestaShop to newer

* versions in the future. If you wish to customize PrestaShop for your

* needs please refer to http://www.prestashop.com for more information.

*

* @author PrestaShop SA <[email protected]>

* @copyright 2007-2012 PrestaShop SA

* @version Release: $Revision: 7310 $

* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)

* International Registered Trademark & Property of PrestaShop SA

*/

include(dirname(__FILE__).'/../../config/config.inc.php');

require_once(dirname(__FILE__).'/../../init.php');

// Get data

$number = ((int)(Tools::getValue('n')) ? (int)(Tools::getValue('n')) : 10);

$orderBy = Tools::getProductsOrder('by', Tools::getValue('orderby'));

$orderWay = Tools::getProductsOrder('way', Tools::getValue('orderway'));

$id_category = ((int)(Tools::getValue('id_category')) ? (int)(Tools::getValue('id_category')) : Configuration::get('PS_HOME_CATEGORY'));

$products = Product::getProducts((int)Context::getContext()->language->id, 0, ($number > 10 ? 10 : $number), $orderBy, $orderWay, $id_category, true);

$currency = new Currency((int)Context::getContext()->currency->id);

$affiliate = (Tools::getValue('ac') ? '?ac='.(int)(Tools::getValue('ac')) : '');

// Send feed

header("Content-Type:text/xml; charset=utf-8");

echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";

?>

<rss version="2.0">

<channel>

<title><![CDATA[<?php echo Configuration::get('PS_SHOP_NAME') ?>]]></title>

<link><?php echo _PS_BASE_URL_.__PS_BASE_URI__; ?></link>

<mail><?php echo Configuration::get('PS_SHOP_EMAIL') ?></mail>

<generator>PrestaShop</generator>

<language><?php echo Context::getContext()->language->iso_code; ?></language>

<image>

<title><![CDATA[<?php echo Configuration::get('PS_SHOP_NAME') ?>]]></title>

<url><?php echo _PS_BASE_URL_.__PS_BASE_URI__.'img/logo.jpg'; ?></url>

<link><?php echo _PS_BASE_URL_.__PS_BASE_URI__; ?></link>

</image>

<?php

foreach ($products AS $product)

{

$image = Image::getImages((int)($cookie->id_lang), $product['id_product']);

echo "\t\t<item>\n";

echo "\t\t\t<title><![CDATA[".$product['name']." - ".html_entity_decode(Tools::displayPrice(Product::getPriceStatic($product['id_product']), $currency), ENT_COMPAT, 'UTF-8')." ]]></title>\n";

echo "\t\t\t<description>";

$cdata = true;

if (is_array($image) AND sizeof($image))

{

$imageObj = new Image($image[0]['id_image']);

echo "<![CDATA[<img src="._PS_BASE_URL_._THEME_PROD_DIR_.$imageObj->getExistingImgPath()."-small_default.jpg' title='".str_replace('&', '', $product['name])."' alt='thumb' />";

$cdata = false;

}

if ($cdata)

echo "<![CDATA[";

echo $product['description_short']."]]></description>\n";

echo "\t\t\t<link><![CDATA[".htmlspecialchars($link->getproductLink($product['id_product'], $product['link_rewrite'], Category::getLinkRewrite((int)($product['id_category_default']), $cookie->id_lang))).$affiliate."]]></link>\n";

echo "\t\t</item>\n";

}

?>

</channel>

</rss>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...