<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mis apuntes oscommerce &#187; Bugs</title>
	<atom:link href="http://www.keleke.com/category/bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.keleke.com</link>
	<description>contribuciones, posicionamiento, google... oscommerce</description>
	<lastBuildDate>Mon, 28 Dec 2009 21:23:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Warning: set_time_limit(): Cannot set time limit in safe mode in</title>
		<link>http://www.keleke.com/2006/warning-set_time_limit-cannot-set-time-limit-in-safe-mode-in/</link>
		<comments>http://www.keleke.com/2006/warning-set_time_limit-cannot-set-time-limit-in-safe-mode-in/#comments</comments>
		<pubDate>Wed, 17 May 2006 12:06:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bugs]]></category>

		<guid isPermaLink="false">http://keleke.com/?p=25</guid>
		<description><![CDATA[Dependiendo del Safe Mode de nuestro servidor, puede darnos el siguiente error al eliminar categorías o productos desde la administración de nuestro OsCommerce.
Warning: set_time_limit(): Cannot set time limit in safe mode in /dir/oscommerce/admin/includes/functions/general.php on line 733
Warning: Cannot modify header information &#8211; headers already sent by (output started at /dir/oscommerce/admin/includes/functions/general.php:733) in /home/dir/oscommerce/admin/includes/functions/general.php on line 18&#8230;
Para arreglar [...]]]></description>
			<content:encoded><![CDATA[<p>Dependiendo del Safe Mode de nuestro servidor, puede darnos el siguiente error al eliminar categorías o productos desde la administración de nuestro OsCommerce.</p>
<p>Warning: set_time_limit(): Cannot set time limit in safe mode in /dir/oscommerce/admin/includes/functions/general.php on line 733</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /dir/oscommerce/admin/includes/functions/general.php:733) in /home/dir/oscommerce/admin/includes/functions/general.php on line 18&#8230;</p>
<p>Para arreglar esto , debemos editar el archivo admin/includes/functions/general.php y donde pone :</p>
<p><code>// Sets timeout for the current script.<br />
// Cant be used in safe mode.<br />
function tep_set_time_limit($limit) {<br />
if (!get_cfg_var('safe_mode')) {<br />
set_time_limit($limit);<br />
}<br />
}</code></p>
<p><strong>Cambiarlo por: </strong></p>
<p><code>// Sets timeout for the current script.<br />
// Cant be used in safe mode.<br />
function tep_set_time_limit($limit) {<br />
if (!ini_get('safe_mode')) {<br />
set_time_limit($limit);<br />
}<br />
}</code></p>
<p>Para corregir el error hay que usar, ini_get()</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleke.com/2006/warning-set_time_limit-cannot-set-time-limit-in-safe-mode-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
