<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Getting errors when adding comments"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Getting errors when adding comments"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Getting errors when adding comments</title>
				<description><![CDATA[ Hello;<br /> <br /> Can someone please help...<br /> <br /> Getting the following errors:<br /> <br /> When entering Admin following error appears at the top:<br /> <br /> Warning: Cannot modify header information - headers already sent by (output started at /home/rincon/public_html/guestbook/lang/spanish.php:107) in /home/rincon/public_html/guestbook/lib/admin.class.php on line 36<br /> <br /> When trying to add a comment followin error comes up:<br /> <br /> Warning: Cannot modify header information - headers already sent by (output started at /home/rincon/public_html/guestbook/lang/spanish.php:107) in /home/rincon/public_html/guestbook/lib/comment.class.php on line 175<br /> <br /> I have done a search but could not find anything regarding these specific errors, Can some one tell me how I can fix this? would appreciate your help. Thank you]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13893.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13893.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 00:09:33]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: Getting errors when adding comments</title>
				<description><![CDATA[ [quote="Nelson"]<br /> When entering Admin following error appears at the top:<br /> <br /> Warning: Cannot modify header information - headers already sent by (output started at /home/rincon/public_html/guestbook/lang/spanish.php:107) in /home/rincon/public_html/guestbook/lib/admin.class.php on line 36<br /> ------<br /> Warning: Cannot modify header information - headers already sent by (output started at /home/rincon/public_html/guestbook/lang/spanish.php:107) in /home/rincon/public_html/guestbook/lib/comment.class.php on line 175<br /> [/quote]<br /> <br /> Have you recently edited any of these files? <br /> <br /> Per Amber222:<br /> Make sure there are no blank lines before or after the code or at the end of the document. Many html and text editors will insert blank lines, which I why I edit files in my ftp program or CPanel's File Manager. Note: An ftp program that does not have its own editor but uses Notepad may also cause this problem. <br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?p=13139&amp;highlight=#13139" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?p=13139&amp;highlight=#13139</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13894.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13894.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 00:54:06]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title>RE:Getting errors when adding comments</title>
				<description><![CDATA[ Hi Amber,<br /> <br /> Thanks for your help...This is the script in my public_html/guestbook/lib/admin.class.php... file..can you see any problems here?<br /> <br /> &lt;?php<br /> /**<br />  * ----------------------------------------------<br />  * Advanced Guestbook 2.3.1 (PHP/MySQL)<br />  * Copyright (c)2001 Chi Kien Uong<br />  * URL: <a class="snap_shots" href="http://www.proxy2.de" target="_blank" rel="nofollow">http://www.proxy2.de</a><br />  * ----------------------------------------------<br />  */<br /> <br /> class gb_admin {<br /> <br />     var $db;<br />     var $session;<br />     var $SELF;<br />     var $uid;<br />     var $VARS;<br />     var $table;<br /> <br />     function gb_admin($session,$uid) {<br />         global $HTTP_SERVER_VARS;<br />         $this-&gt;session = $session;<br />         $this-&gt;uid = $uid;<br />         $this-&gt;SELF = basename($HTTP_SERVER_VARS["PHP_SELF"]);<br />     }<br /> <br />     function get_updated_vars() {<br />         $this-&gt;db-&gt;query("SELECT * FROM ".$this-&gt;table['cfg']);<br />         $this-&gt;VARS = $this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result);<br />         $this-&gt;db-&gt;free_result($this-&gt;db-&gt;result);<br />     }<br /> <br />     function NoCacheHeader() {<br />         header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");<br />         header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");<br />         header("Cache-Control: no-cache, must-revalidate");<br />         header("Pragma: no-cache");<br />     }<br /> <br />     function show_panel($panel) {<br />         global $smilie_list, $smilie_data;<br />         $this-&gt;NoCacheHeader();<br />         include_once "./admin/panel_$panel.php";<br />         include_once "./admin/footer.inc.php";<br />     }<br /> <br />     function scan_smilie_dir() {<br />         $smilies = '';<br />         chdir("./img/smilies");<br />         $hnd = opendir(".");<br />         while ($file = readdir($hnd)) {<br />             if(is_file($file)) {<br />                 if ($file != "." &amp;&amp; $file != "..") {<br />                     if (ereg(".gif|.jpg|.png|.jpeg",$file)) {<br />                         $smilie_list[] = $file;<br />                     }<br />                 }<br />             }<br />         }<br />         closedir($hnd);<br />         if (isset($smilie_list)) {<br />             asort($smilie_list);<br />             for ($i=0;$i&lt;sizeof($smilie_list);$i++) {<br />                 $size = GetImageSize($smilie_list[$i]);<br />                 if (is_array($size)) {<br />                     $smilies[$smilie_list[$i]] = "&lt;img src=\"img/smilies/$smilie_list[$i]\" $size[3]&gt;";<br />                 }<br />             }<br />         }<br />         chdir("../../");<br />         return $smilies;<br />     }<br /> <br />     function show_entry($tbl="gb") {<br />         global $entry, $record, $GB_UPLOAD;<br />         if ($tbl=="priv") {<br />             $gb_tbl = $this-&gt;table['priv'];<br />             $book_id = 1;<br />         } else {<br />             $gb_tbl = $this-&gt;table['data'];<br />             $tbl="gb";<br />             $book_id = 2;<br />         }<br />         $entries_per_page = $this-&gt;VARS["entries_per_page"];<br />         if(!isset($entry)) {<br />             $entry = 0;<br />         }<br />         if(!isset($record)) {<br />             $record = 0;<br />         }<br />         $next_page = $entry+$entries_per_page;<br />         $prev_page = $entry-$entries_per_page;<br />         $this-&gt;db-&gt;query("select count(*) total from $gb_tbl");<br />         $this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result);<br />         $total = $this-&gt;db-&gt;record['total'];<br />         if ($record &gt; 0 &amp;&amp; $record &lt;= $total) {<br />             $entry = $total-$record;<br />             $next_page = $entry+$entries_per_page;<br />             $prev_page = $entry-$entries_per_page;<br />         }<br />         $result = $this-&gt;db-&gt;query("select x.*, y.p_filename, y.width, y.height from $gb_tbl x left join ".$this-&gt;db-&gt;table['pics']." y on (x.id=y.msg_id and y.book_id=$book_id) order by id desc limit $entry, $entries_per_page");<br />         $img = new gb_image();<br />         $img-&gt;set_border_size($this-&gt;VARS["img_width"], $this-&gt;VARS["img_height"]);<br />         $this-&gt;NoCacheHeader();<br />         include_once "./admin/panel_easy.php";<br />         include_once "./admin/footer.inc.php";<br />     }<br /> <br />     function del_entry($entry_id,$tbl="gb") {<br />         global $GB_UPLOAD;<br />         switch ($tbl) {<br />             case "gb" :<br />                 $this-&gt;db-&gt;query("select p_filename from ".$this-&gt;table['pics']." WHERE (msg_id = '$entry_id' and book_id=2)");<br />                 $result = $this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result);<br />                 if ($result["p_filename"]) {<br />                     if (file_exists("./$GB_UPLOAD/$result[p_filename]")) {<br />                         unlink ("./$GB_UPLOAD/$result[p_filename]");<br />                     }<br />                     if (file_exists("./$GB_UPLOAD/t_$result[p_filename]")) {<br />                         unlink ("./$GB_UPLOAD/t_$result[p_filename]");<br />                     }<br />                 }<br />                 $this-&gt;db-&gt;query("DELETE FROM ".$this-&gt;table['data']." WHERE (id = '$entry_id')");<br />                 $this-&gt;db-&gt;query("DELETE FROM ".$this-&gt;table['com']." WHERE (id = '$entry_id')");<br />                 $this-&gt;db-&gt;query("DELETE FROM ".$this-&gt;table['pics']." WHERE (msg_id = '$entry_id' and book_id=2)");<br />                 break;<br /> <br />             case "priv" :<br />                 $this-&gt;db-&gt;query("select p_filename from ".$this-&gt;table['pics']." WHERE (msg_id = '$entry_id' and book_id=1)");<br />                 $result = $this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result);<br />                 if ($result["p_filename"]) {<br />                     if (file_exists("./$GB_UPLOAD/$result[p_filename]")) {<br />                         unlink ("./$GB_UPLOAD/$result[p_filename]");<br />                     }<br />                     if (file_exists("./$GB_UPLOAD/t_$result[p_filename]")) {<br />                         unlink ("./$GB_UPLOAD/t_$result[p_filename]");<br />                     }<br />                 }<br />                 $this-&gt;db-&gt;query("DELETE FROM ".$this-&gt;table['priv']." WHERE (id = '$entry_id')");<br />                 $this-&gt;db-&gt;query("DELETE FROM ".$this-&gt;table['pics']." WHERE (msg_id = '$entry_id' and book_id=1)");<br />                 break;<br /> <br />             case "com" :<br />                 $this-&gt;db-&gt;query("DELETE FROM ".$this-&gt;table['com']." WHERE (com_id = '$entry_id')");<br />                 break;<br />         }<br />     }<br /> <br />     function update_record($entry_id,$tbl="gb") {<br />         global $HTTP_POST_VARS;<br />         $gb_tbl = ($tbl=="priv") ? $this-&gt;table['priv'] : $this-&gt;table['data'];<br />         if (!get_magic_quotes_gpc() ) {<br />             while (list($var, $value)=each($HTTP_POST_VARS)) {<br />                 $HTTP_POST_VARS[$var]=addslashes($value);<br />             }<br />         }<br />         reset($HTTP_POST_VARS);<br />         while (list($var, $value)=each($HTTP_POST_VARS)) {<br />             $HTTP_POST_VARS[$var]=trim($value);<br />         }<br />         if (!eregi(".+@[-a-z0-9_]+", $HTTP_POST_VARS['email'])) {<br />             $HTTP_POST_VARS['email'] = '';<br />         }<br />         if (!eregi("^http://[-a-z0-9_]+", $HTTP_POST_VARS['url'])) {<br />             $HTTP_POST_VARS['url'] = '';<br />         }<br />         $sqlquery= "UPDATE $gb_tbl set name='$HTTP_POST_VARS[name]', email='$HTTP_POST_VARS[email]', gender='$HTTP_POST_VARS[gender]', url='$HTTP_POST_VARS[url]', location='$HTTP_POST_VARS[location]', ";<br />         $sqlquery.="host='$HTTP_POST_VARS[host]', browser='$HTTP_POST_VARS[browser]', comment='$HTTP_POST_VARS[comment]', icq='$HTTP_POST_VARS[icq]', aim='$HTTP_POST_VARS[aim]' WHERE (id = '$entry_id')";<br />         $this-&gt;db-&gt;query($sqlquery);<br />     }<br /> <br />     function show_form($entry_id,$tbl="gb") {<br />         global $record;<br />         $gb_tbl = ($tbl=="priv") ? $this-&gt;table['priv'] : $this-&gt;table['data'];<br />         $this-&gt;db-&gt;query("select * from $gb_tbl where (id = '$entry_id')");<br />         $row = $this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result);<br />         for(reset($row); $key=key($row); next($row)) {<br />             $row[$key] = htmlspecialchars($row[$key]);<br />         }<br />         $this-&gt;NoCacheHeader();<br />         include_once "./admin/panel_edit.php";<br />         include_once "./admin/footer.inc.php";<br />     }<br /> <br />     function edit_template($tpl_name,$tpl_save) {<br />         global $HTTP_POST_VARS, $GB_TPL;<br />         $this-&gt;NoCacheHeader();<br />         $filename = "./templates/$tpl_name";<br />         if (file_exists("$filename") &amp;&amp; $tpl_name != '') {<br />             if ($tpl_save == "update") {<br />                 if (get_magic_quotes_gpc()) {<br />                    $HTTP_POST_VARS['gb_template'] = stripslashes($HTTP_POST_VARS['gb_template']);<br />                 }<br />                 $fd = fopen ($filename, "w");<br />                 fwrite($fd,$HTTP_POST_VARS['gb_template']);<br />                 $gb_template = $HTTP_POST_VARS['gb_template'];<br />             } else {<br />                 $fd = fopen ($filename, "r");<br />                 $gb_template = fread ($fd, filesize ($filename));<br />             }<br />             fclose ($fd);<br />         } else {<br />             $gb_template ='';<br />         }<br />         include_once "./admin/panel_template.php";<br />         include_once "./admin/footer.inc.php";<br />     }<br /> <br />     function show_settings($cat) {<br />         $this-&gt;db-&gt;query("select * from ".$this-&gt;table['words']);<br />         while ($this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result)) {<br />             $badwords[] = $this-&gt;db-&gt;record["word"];<br />         }<br />         $this-&gt;db-&gt;free_result($this-&gt;db-&gt;result);<br />         $this-&gt;db-&gt;query("select * from ".$this-&gt;table['ban']);<br />         while ($this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result)) {<br />             $banned_ips[] = $this-&gt;db-&gt;record["ban_ip"];<br />         }<br />         $this-&gt;db-&gt;free_result($this-&gt;db-&gt;result);<br />         $this-&gt;db-&gt;query("select * from ".$this-&gt;table['auth']." where ID=$this-&gt;uid");<br />         $row = $this-&gt;db-&gt;fetch_array($this-&gt;db-&gt;result);<br />         $this-&gt;NoCacheHeader();<br />         if ($cat == "general") {<br />             include_once "./admin/panel_main.php";<br />         } elseif ($cat == "style") {<br />             include_once "./admin/panel_style.php";<br />         } elseif ($cat == "pwd") {<br />             include_once "./admin/panel_pwd.php";<br />         }<br />         include_once "./admin/footer.inc.php";<br />     }<br /> <br /> }<br /> <br /> ?&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13896.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13896.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 01:17:14]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'm not Amber - I just directed you to the post by Amber - the answer is there.  <br /> <br /> I don't see anything right off hand in your script - maybe someone else will?  What, if anything, did you edit in that file?<br /> <br /> Did you edit the lang/spanish.php? <br /> <br /> Make certain to not have any empty/blank lines after the ?&gt; at the end of the scripts.  I believe that is what Amber is explaining.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13899.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13899.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 01:26:17]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Sorry ET...I realised that when I sent the reply...ops..<br /> <br /> Anyway....Yes, I edited my lang/Spanish.php<br /> <br /> Here is the script...Can anyone see anything wrong?<br /> <br /> &lt;?php<br /> # General<br /> <br /> $LANG["metatag"]    = "&lt;meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"&gt;";<br /> <br /> $LANG["BookMess1"]  = "C&amp;oacute;digo HTML deshabilitado";<br /> $LANG["BookMess2"]  = "C&amp;oacute;digo HTML habilitado";<br /> $LANG["BookMess3"]  = "Firmar el Libro de Visitas - Sign Our Guestbook";<br /> $LANG["BookMess4"]  = "Volver el Libro de Visitas - Return to our Guestbook";<br /> $LANG["BookMess5"]  = "Administraci&amp;oacute;n";<br /> $LANG["BookMess6"]  = "Gracias por venir a nuestro sitio. Aqu&amp;iacute; puedes dejarnos tu mensaje. - Thanks for visiting our Guestbook. Please leave us a message";<br /> $LANG["BookMess7"]  = "Comentarios - Comments";<br /> $LANG["BookMess8"]  = "Volver al formulario de env&amp;iacute;o";<br /> $LANG["BookMess9"]  = "Escribir un comentario para esta entrada del libro de visitas.";<br /> $LANG["BookMess10"] = "&lt;u&gt;Gracias por firmar el libro de visitas.&lt;/u&gt;&lt;br&gt;&lt;br&gt;&amp;iexcl;Tu mensaje ha sido a&amp;ntilde;adido con &amp;eacute;xito! Dentro de 2 segundos deber&amp;iacute;as haber regresado autom&amp;aacute;ticamente al libro de visitas.";<br /> <br /> $LANG["EmailAdminSubject"] = "Nueva entrada en el libro de visitas";<br /> $LANG["EmailGuestSubject"] = "Gracias por firmar en el libro de visitas - Thank you for signing our Guestbook";<br /> <br /> $LANG["AltIP"]    = "IP registrada";<br /> $LANG["AltICQ"]   = "Enviar Mensaje ICQ";<br /> $LANG["AltEmail"] = "Enviar E-mail";<br /> $LANG["AltUrl"]   = "Ver P&amp;aacute;gina Web";<br /> $LANG["AltAim"]   = "Instant Messenger";<br /> $LANG["AltCom"]   = "Escribir un comentario - Write a comment";<br /> <br /> # Form<br /> $LANG["FormMess1"]   = "Rellena los siguientes campos para firmar en el libro de visitas. Despu&amp;eacute;s de enviar tu mensaje, regresar&amp;aacute;s autom&amp;aacute;ticamente al libro de visitas. Los espacios marcados con (*) representan campos obligatorios.";<br /> $LANG["FormMess2"]   = "Smilies Activados";<br /> $LANG["FormMess3"]   = "AGCode Activado";<br /> $LANG["FormMess4"]   = "Mostrar leyenda";<br /> $LANG["FormMess5"]   = "A continuaci&amp;oacute;n se muestra tu mensaje.";<br /> $LANG["FormMess6"]   = "AGCode Desactivado";<br /> $LANG["FormMess7"]   = "Smilies Desactivados";<br /> $LANG["FormName"]    = "Nombre - Name";<br /> $LANG["FormEmail"]   = "E-mail";<br /> $LANG["FormLoc"]     = "Localizaci&amp;oacute;n - Location";<br /> $LANG["FormPic"]     = "Fotograf&amp;iacute;a - Photo";<br /> $LANG["FormUrl"]     = "P&amp;aacute;gina web";<br /> $LANG["FormGender"]  = "Sexo";<br /> $LANG["FormMale"]    = "Hombre";<br /> $LANG["FormFemale"]  = "Mujer";<br /> $LANG["FormMessage"] = "Tu mensaje - Your Message";<br /> $LANG["FormSelect"]  = "Libro de Visitas - Guestbook";<br /> $LANG["FormUser"]    = "Nombre de usuario";<br /> $LANG["FormPass"]    = "Contrase&amp;ntilde;a";<br /> $LANG["FormReset"]   = "Borrar todos los campos";<br /> $LANG["FormSubmit"]  = "Enviar - Submit";<br /> $LANG["FormPreview"] = "Vista previa";<br /> $LANG["FormBack"]    = "Volver atr&amp;aacute;s";<br /> $LANG["FormEnter"]   = "Libro de Visitas - Centro de Administraci&amp;oacute;n&lt;br&gt;&amp;iexcl;Antes de seguir tienes que introducir un nombre de usuario y contrase&amp;ntilde;a v&amp;aacute;lidos!";<br /> $LANG["FormButton"]  = "Ir";<br /> $LANG["FormPriv"]    = "Mensaje privado";<br /> <br /> # Navigation Bar<br /> $LANG["NavTotal"]   = "Registros en total:";<br /> $LANG["NavRecords"] = "Registros mostrados por p&amp;aacute;gina:";<br /> $LANG["NavPrev"]    = "P&amp;aacute;gina anterior - Previous Page";<br /> $LANG["NavNext"]    = "P&amp;aacute;gina siguiente - Next Page";<br /> <br /> # Post Errors<br /> $LANG["ErrorPost1"]  = "Has olvidado rellenar el campo Nombre. Por favor corr&amp;iacute;gelo y vuelve a enviar el mensaje.";<br /> $LANG["ErrorPost2"]  = "Has olvidado rellenar el campo Mensaje. Por favor corr&amp;iacute;gelo y vuelve a enviarlo.";<br /> $LANG["ErrorPost3"]  = "Tu mensaje es o demasiado corto o demasiado largo. Por favor corr&amp;iacute;gelo y vuelve a enviarlo.";<br /> $LANG["ErrorPost4"]  = "Al parecer uno de los campos de entrada no tiene un valor v&amp;aacute;lido.";<br /> $LANG["ErrorPost5"]  = "Libro de Visitas - Error";<br /> $LANG["ErrorPost6"]  = "El fichero de imagen es demasiado grande";<br /> $LANG["ErrorPost7"]  = "Tipo incorrecto de fichero de imagen";<br /> $LANG["ErrorPost8"]  = "Lo siento, tenemos activado el control anti-desbordamiento. Por favor int&amp;eacute;ntalo de nuevo dentro de un rato.";<br /> $LANG["ErrorPost9"]  = "&amp;iexcl;Tu direcci&amp;oacute;n IP est&amp;aacute; bloqueada!";<br /> $LANG["ErrorPost10"] = "Tu mensaje contiene algunas palabras no v&amp;aacute;lidas. Por favor corr&amp;iacute;gelo y vuelve a enviarlo.";<br /> $LANG["ErrorPost11"] = "Has olvidado rellenar el campo Comentario. Por favor corr&amp;iacute;gelo y vuelve a enviar el mensaje.";<br /> <br /> $LANG["PassMess1"] = "Por favor introduce un nombre de usuario y contrase&amp;ntilde;a v&amp;aacute;lidos:";<br /> $LANG["PassMess2"] = "Nombre de usuario o contrase&amp;ntilde;a incorrectos. Por favor int&amp;eacute;ntalo de nuevo.";<br /> $LANG["PassMess3"] = "Lo siento, la contrase&amp;ntilde;a que has introducido no es correcta.";<br /> <br /> # Days<br /> $weekday[0] = "Domingo";<br /> $weekday[1] = "Lunes";<br /> $weekday[2] = "Martes";<br /> $weekday[3] = "Mi&amp;eacute;rcoles";<br /> $weekday[4] = "Jueves";<br /> $weekday[5] = "Viernes";<br /> $weekday[6] = "S&amp;aacute;bado";<br /> <br /> # Months<br /> $months[0]  = "Enero";<br /> $months[1]  = "Febrero";<br /> $months[2]  = "Marzo";<br /> $months[3]  = "Abril";<br /> $months[4]  = "Mayo";<br /> $months[5]  = "Junio";<br /> $months[6]  = "Julio";<br /> $months[7]  = "Agosto";<br /> $months[8]  = "Septiembre";<br /> $months[9]  = "Octubre";<br /> $months[10] = "Noviembre";<br /> $months[11] = "Diciembre";<br /> <br /> ?&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13902.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13902.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 01:50:47]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Okay - so you have checked to make certain that there are not extra lines before &lt;?php and none after ?&gt; - right? <br /> <br /> What lines did you edit so that I know where to look for errors - I'm not going to waste my time looking thru each and every line for potential errors if you did not edit all the lines....]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13903.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13903.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 01:59:06]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi ET, I have singled out the lined I have edited, they are: (I pretty much, just added some english text with in the ""....Thanx<br /> <br /> <br /> $LANG["BookMess3"] = "Firmar el Libro de Visitas - Sign Our Guestbook"; <br /> <br /> $LANG["BookMess4"] = "Volver el Libro de Visitas - Return to our Guestbook"; <br /> puedes dejarnos tu mensaje. - Thanks for visiting our Guestbook. Please leave us a message"; <br /> <br /> $LANG["BookMess7"] = "Comentarios - Comments"; <br /> <br /> $LANG["BookMess8"] = "Volver al formulario de env&amp;iacute;o"; <br /> <br /> $LANG["EmailGuestSubject"] = "Gracias por firmar en el libro de visitas - Thank you for signing our Guestbook"; <br /> <br /> $LANG["AltCom"] = "Escribir un comentario - Write a comment"; <br /> <br /> $LANG["FormName"] = "Nombre - Name"; <br /> <br /> $LANG["FormEmail"] = "E-mail"; <br /> <br /> $LANG["FormLoc"] = "Localizaci&amp;oacute;n - Location"; <br /> <br /> $LANG["FormPic"] = "Fotograf&amp;iacute;a - Photo"; <br /> <br /> $LANG["FormUrl"] = "P&amp;aacute;gina web"; <br /> <br /> $LANG["FormMessage"] = "Tu mensaje - Your Message";<br />  <br /> $LANG["FormSelect"] = "Libro de Visitas - Guestbook"; <br /> <br /> $LANG["FormSubmit"] = "Enviar - Submit"; <br />  <br /> $LANG["NavPrev"] = "P&amp;aacute;gina anterior - Previous Page"; <br /> <br /> $LANG["NavNext"] = "P&amp;aacute;gina siguiente - Next Page";]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13904.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13904.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 02:09:21]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: RE:Getting errors when adding comments</title>
				<description><![CDATA[ In that 'really' big post, at the end there is this...<br /> <br /> [code]include_once &quot;./admin/footer.inc.php&quot;;<br />     &#125;<br /> <br /> &#125;<br /> <br /> ?&gt;[/code]<br /> <br /> Try changing it to...<br /> <br /> [code]include_once &quot;./admin/footer.inc.php&quot;;<br />     &#125;<br /> <br /> &#125;<br /> ?&gt;[/code]<br /> <br /> Also, in the lang file...<br /> <br /> [code]$months&#91;9&#93; = &quot;Octubre&quot;; <br /> $months&#91;10&#93; = &quot;Noviembre&quot;; <br /> $months&#91;11&#93; = &quot;Diciembre&quot;; <br /> <br /> ?&gt;[/code]<br /> <br /> Try changing to...<br /> <br /> [code]$months&#91;9&#93; = &quot;Octubre&quot;; <br /> $months&#91;10&#93; = &quot;Noviembre&quot;; <br /> $months&#91;11&#93; = &quot;Diciembre&quot;; <br /> ?&gt;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13906.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13906.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 02:16:15]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks for pointing those out - I don't see any errors in the modifications. <br /> <br /> What I would recommend that you do is to download the original AG script again - save it into a different folder on your harddrive so that you have the original version onhand that you don't modify.  Then upload that original spanish.php version back into the lang folder on your website to see if the error continues. <br /> <br /> Essentially, we are just in problem solving mode at this point since you are certain that there are no spaces in the files before &lt;?php and after ?&gt; .... Sorry that it's not an immediate solution - I know how frustrating it can be.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13907.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13907.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 02:19:23]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks Guys...(ET &amp; Auron)<br /> <br /> I did mods as per Auron and although it didn't completely fix the problem (errors still there) at least comment can be posted..(Thanx Auron)<br /> <br /> Have a try adding a comment on an existing message...<br /> <br /> <a class="snap_shots" href="http://rinconwebdesign.com/guestbook/index.php" target="_blank" rel="nofollow">http://rinconwebdesign.com/guestbook/index.php</a><br /> <br /> See what I mean?...<br /> <br /> Anyone has any other suggestions..? apart from "starting from scatch?"...<br /> <br /> Thanx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13908.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13908.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 03:05:17]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I tried to add a comment and still got the error.... <br /> Warning: Cannot modify header information - headers already sent by (output started at /home/rincon/public_html/guestbook/lang/spanish.php:107) in /home/rincon/public_html/guestbook/lib/comment.class.php on line 175<br /> <br /> Did you try reinstalling the original version of spanish.php file without your edits to see it it would work?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13909.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13909.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 03:11:42]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks ET...I can see your comment in my GB...<br /> <br /> No I haven't tried reinstalling the original version of spanish.php file without my edits yet...might give that a go a bit later...Il just try to brainstorm a bit more before I do that...<br /> <br /> Any other suggestions?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13910.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13910.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 03:18:33]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No other suggestions based on what we have - given that the error I got still leads back to the spanish.php file - It is my assumption that the problem is there.  I do have a question though....<br /> <br /> What type of editor do you use when editing the spanish.php file?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13911.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13911.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 03:24:58]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanx ET..you have been a great help and given me a few ideas..<br /> <br /> I edit the files via my hosting company Control Panel]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13912.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13912.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 03:38:07]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Editor in the Control Panel - That might be what is causing the problem.<br /> <br /> Have you normally used the control panel editor to modify your php scripts/pages without any problems?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13913.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13913.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 03:42:37]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes, I have done all my mods via Control Panel without any problems...until now.<br /> <br /> Thanx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13914.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13914.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 04:05:31]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Okay - so that might kinda rule the CP editor factor out. <br /> <br /> ummmmmmm..... I'll keep thinking on this one.  One immediate Problem Solving think I have is.... try a temporarily switch to another language (one that you know you did not edit) from the AG admin area. Then immediately go to the guestbook to try adding a comment to see if that error still shows up....]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13915.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13915.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 04:21:07]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ ET...I changed it back to English and it works perfectly...so the problem definetly lies somewhere on the Spanish file...mmmm<br /> <br /> <br /> Thanks for your help ET]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13916.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13916.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 04:37:31]]> GMT</pubDate>
				<author><![CDATA[ Nelson]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Glad to have been able to help a little bit! Sometimes it takes a few other thinks to begin to figure out what the problem might be <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" /> Hoping you get it all the way figured out. <br /> <br /> Be well and Good luck]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/13917.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/13917.php</link>
				<pubDate><![CDATA[Fri, 4 Feb 2005 04:45:16]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ the priblem lies in the fact that cPanel adds a blank line to the end of the file when you save it. This is why I always recommend using FTP and a decent text editor.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4212/16982.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4212/16982.php</link>
				<pubDate><![CDATA[Fri, 8 Jul 2005 21:05:10]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
	</channel>
</rss>