Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - mediokre

Pages: [1]
1
Español / Castellano / ayuda con 4images y cutenews
« on: January 16, 2006, 08:40:19 AM »
:P Hola, estoy acomodando el 4images de acuerdo a mi sitio, todo iba bien
hasta que en la pagina www.mipagina.com/4images/templates/default/home.html (esta pagina la quiero hacer como si fuera mi index principal de mi pagina) le quiero agregar el codigo PHP que manda llamar al Cutenews(un editor de noticias chido), pero me manda a un error cuando hago esto y lo subo a internet

Este es el codigo de Cutenews para visualizarlo o mandarlo llamar
Code: [Select]
<?PHP

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  Path to the CuteNews directory (to make the includng easyer)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
$path = ".";

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  This is a fix if register_globals is turned off
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
if(!$PHP_SELF){
if($HTTP_POST_VARS) {extract($HTTP_POST_VARS, EXTR_PREFIX_SAME, "post_");}
if($HTTP_GET_VARS)  {extract($HTTP_GET_VARS, EXTR_PREFIX_SAME, "get_");}
if($HTTP_COOKIE_VARS) {extract($HTTP_COOKIE_VARS, EXTR_PREFIX_SAME, "cookie_");}
if($HTTP_ENV_VARS) {extract($HTTP_ENV_VARS, EXTR_PREFIX_SAME, "env_");}
}
if($PHP_SELF == ""){ $PHP_SELF = $HTTP_SERVER_VARS[PHP_SELF]; }

?>
Code: [Select]
<?PHP

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  Here we decide what page to include
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

if($do == "search" or $dosearch == "yes"){ $subaction = "search"; $dosearch = "yes"; include("$path/cutenews/search.php"); }
elseif($do == "archives"){ include("$path/cutenews/show_archives.php"); }
elseif($do == "stats"){ echo"You can download the stats addon and include it here to show how many news, comments ... you have"; /* include("$path/stats.php"); */ }
else{ include("$path/cutenews/show_news.php"); }

?>

y ya que hago esto me manda este error cuando lo subo y lo quiero visualizar

Code: [Select]
Warning: Unknown(): Unable to access ./cutenews/show_news.php in /www/sites/1/iespana.es/m/e/mediokre/site/4images/includes/template.php(101) : eval()'d code on line 119

Warning: Unknown(./cutenews/show_news.php): failed to open stream: No such file or directory in /www/sites/1/iespana.es/m/e/mediokre/site/4images/includes/template.php(101) : eval()'d code on line 119

Warning: (null)(): Failed opening './cutenews/show_news.php' for inclusion (include_path='.:/www/usr/lib/php') in /www/sites/1/iespana.es/m/e/mediokre/site/4images/includes/template.php(101) : eval()'d code on line 119

le entiendo que es para modificar algo de template pero no se como

no se si me explique¿

o alguna solucion de como insertar el Cutenews es bastante famoso segun yo
bueno espero respuesta gracias adios

Pages: [1]