adesa
Usuario habitual
Usuario habitual

Buenas.....


¿es posible usar el magnifico contador y las estadisticas de mi@ en el PHP-NUKE???.....se puede introducir el código del contador en el index???

Graciassssssss

Avatar Image
@man / @woman
@man / @woman

Si claro... tendras que meter el código del contador en el theme por ejemplo...

adesa
Usuario habitual
Usuario habitual

ok...pero en que archivo exactamente?

gracias

Avatar Image
@man / @woman
@man / @woman

Pues en el theme.php, junto a footmsg();

Añades un echo "<---- codigo --->"; y listo... lo único que el código le tienes que meter en php, que es como html pero con una / antes de los " para que les reconzoca como tal.

adesa
Usuario habitual
Usuario habitual

a la tercera va la vencida..este es el código que ma han asignado.....que barras son / ó \, y otra cosilla más......

¿tiene que ir junto a footmsg(); o en la siguiente linea. ¿y el echo done?

<!-- INICIO codigo contadores.miarroba.com -->
<SCRIPT LANGUAGE="JavaScript" src="http://contadores.miarroba.com/ver.php?id=234308"></SCRIPT>
<!-- FIN codigo contadores.miarroba.com -->

No se de programación.se nota no??

Gracias por adelantado!

Avatar Image
@man / @woman
@man / @woman

echo "<SCRIPT LANGUAGE=/"JavaScript/" src=/"http://contadores.miarroba.com/ver.php?id=234308/"></SCRIPT>";

En la siguiente línea del footmsg, por ejemplo.

demonmx
Usuario habitual
Usuario habitual

<!-- INICIO codigo contadores.miarroba.com --> <SCRIPT LANGUAGE="JavaScript" src="http://contadores.miarroba.com/ver.php?id=234643"></SCRIPT> <!-- FIN codigo contadores.miarroba.com -->
esta es la mia pero no se komo poner la la e guardao como contador.phpe provado a meterlo como bloke pero emvez de dentro se ve afuera y si lo pongo al krear el bloke en el kuadrito ese grande me da error y no me deja e provado en pegarlo en todos los sitios pero....

Avatar Image
@man / @woman
@man / @woman
Escrito originalmente por demonmx

esta es la mia pero no se komo poner la la e guardao como contador.phpe provado a meterlo como bloke pero emvez de dentro se ve afuera y si lo pongo al krear el bloke en el kuadrito ese grande me da error y no me deja e provado en pegarlo en todos los sitios pero....


Y has probado a meterlo donde previamente he indicado....
demonmx
Usuario habitual
Usuario habitual

en la carpeta thems en la k yo tengo puesta ahora mismos k se llama sub.. lo e puesto i nada

Avatar Image
@man / @woman
@man / @woman

Dentro del archivo theme.php, revisa el post.

demonmx
Usuario habitual
Usuario habitual

joder e metido el codigo del contador alfinal del arxivo thems.php lo e vuelto a suvir y ahora no consigo entrar en mi pagina web
https://demonmx.webcindario.com/html

Avatar Image
@man / @woman
@man / @woman

Pero a ver como lo metes... lee el post, que es dentro del theme.php, junto a determinada línea... lee el post.

demonmx
Usuario habitual
Usuario habitual

E KONSEGUIDO PONERLO PERO LO MALO K SE VE ARRIVA Y ESO K LO E PEGADO EN LA PARTE BAJA DEL THEMS.PHP COMO AGO PARA PONERLO ABAJO Y EN EL CENTRO PA K KEDEBIEN

Avatar Image
@man / @woman
@man / @woman

Pero donde lo has puesto en el theme.php????

demonmx
Usuario habitual
Usuario habitual

si
lo e puesto avajo y arriva pero de las dos formas siempre esta arriva mira

<?php

/************************************************************/
/* Theme Name: subBlack */
/* Theme Design: coldblooded (www.nukemods.com) */
/* version 2.0 */
/* */
/* Theme inspired by the phpbb2 style subBlack by */
/* spectre (http://www.gamerhaven.com/) */
/* */
/************************************************************/

/************************************************************/
/* Theme Colors Definition */
/* */
/* Define colors for your web site. $bgcolor2 is generaly */
/* used for the tables border as you can see on OpenTable() */
/* function, $bgcolor1 is for the table background and the */
/* other two bgcolor variables follows the same criteria. */
/* $texcolor1 and 2 are for tables internal texts */
/************************************************************/

$bgcolor1 = "212121";
$bgcolor2 = "212121";
$bgcolor3 = "212121";
$bgcolor4 = "212121";
$textcolor1 = "#FFCC00";
$textcolor2 = "#FFCC00";

include("themes/subBlack/tables.php&quot;

/************************************************************/
/* Function themeheader() */
/* */
/* Control the header for your site. You need to define the */
/* BODY tag and in some part of the code call the blocks */
/* function for left side with: blocks(left); */
/************************************************************/

function themeheader() {
global $admin, $user, $banners, $sitename, $slogan, $cookie, $prefix, $db, $nukeurl, $anonymous;
$numrows = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_banner WHERE type='0' AND active='1'&quot);
/* Get a random banner if exist any. */
/* More efficient random stuff, thanks to Cristian Arroyo from http://www.planetalinux.com.ar */

if ($numrows>1) {
$numrows = $numrows-1;
mt_srand((double)microtime()*1000000);
$bannum = mt_rand(0, $numrows);
} else {
$bannum = 0;
}
$sql = "SELECT bid, imageurl, clickurl, alttext FROM ".$prefix."_banner WHERE type='0' AND active='1' LIMIT $bannum,1";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$bid = $row[bid];
$imageurl = $row[imageurl];
$clickurl = $row[clickurl];
$alttext = $row[alttext];

if (!is_admin($admin)) {
$db->sql_query("UPDATE ".$prefix."_banner SET impmade=impmade+1 WHERE bid='$bid'&quot;
}
if($numrows>0) {
$sql2 = "SELECT cid, imptotal, impmade, clicks, date FROM ".$prefix."_banner WHERE bid='$bid'";
$result2 = $db->sql_query($sql2);
$row2 = $db->sql_fetchrow($result2);
$cid = $row2[cid];
$imptotal = $row2[imptotal];
$impmade = $row2[impmade];
$clicks = $row2[clicks];
$date = $row2[date];

/* Check if this impression is the last one and print the banner */

if (($imptotal <= $impmade) AND ($imptotal != 0)) {
$db->sql_query("UPDATE ".$prefix."_banner SET active='0' WHERE bid='$bid'&quot;
$sql3 = "SELECT name, contact, email FROM ".$prefix."_bannerclient WHERE cid='$cid'";
$result3 = $db->sql_query($sql3);
$row3 = $db->sql_fetchrow($result3);
$c_name = $row3[name];
$c_contact = $row3[contact];
$c_email = $row3[email];
if ($c_email != "&quot {
$from = "$sitename <$adminmail>";
$to = "$c_contact <$c_email>";
$message = ""._HELLO." $c_contact:\n\n";
$message .= ""._THISISAUTOMATED."\n\n";
$message .= ""._THERESULTS."\n\n";
$message .= ""._TOTALIMPRESSIONS." $imptotal\n";
$message .= ""._CLICKSRECEIVED." $clicks\n";
$message .= ""._IMAGEURL." $imageurl\n";
$message .= ""._CLICKURL." $clickurl\n";
$message .= ""._ALTERNATETEXT." $alttext\n\n";
$message .= ""._HOPEYOULIKED."\n\n";
$message .= ""._THANKSUPPORT."\n\n";
$message .= "- $sitename "._TEAM."\n";
$message .= "$nukeurl";
$subject = "$sitename: "._BANNERSFINNISHED."";
mail($to, $subject, $message, "From: $from\nX-Mailer: PHP/" . phpversion());
}
}
$showbanners = "<a href=\"banners.php?op=click&bid=$bid\" target=\"_blank\"><img src=\"$imageurl\" border=\"0\" alt='$alttext' title='$alttext'></a>";
} cookiedecode($user);
$username = $cookie[1];
if ($username == "&quot {
$username = "Anonymous";
}
echo "<body bgcolor=\"#000000\" text=\"#FFFFCC\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">";

if ($username == "Anonymous&quot {
$theuser = "&nbsp;&nbsp;<a href=\"modules.php?name=Your_Account&op=new_user\">Crear Una Cuenta";
} else {
$theuser = "&nbsp;&nbsp;Bienvenid@ $username!";
}
$public_msg = public_message();
$tmpl_file = "themes/subBlack/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(left);
$tmpl_file = "themes/subBlack/left_center.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* Function themefooter() */
/* */
/* Control the footer for your site. You don't need to */
/* close BODY and HTML tags at the end. In some part call */
/* the function for right blocks with: blocks(right); */
/* Also, $index variable need to be global and is used to */
/* determine if the page your're viewing is the Homepage or */
/* and internal one. */
/************************************************************/

function themefooter() {
global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
if ($index == 1) {
$tmpl_file = "themes/subBlack/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
$tmpl_file = "themes/subBlack/footer.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
echo "<center>\n";
$footer_message = footmsg();
echo "</center>\n";
echo "<center><br><font class=\"small\">:: subBlack phpbb2 style by <a href=\"http://www.gamerhaven.com/\">spectre</a> :: PHP-Nuke theme by <a href=\"http://www.nukemods.com\">www.nukemods.com</a> ::Traducido Y modificado por <a href=\"http://www.nukebazar.com\">NBdragon</a>::</font></center>";
echo "<br>\n";
}

/************************************************************/
/* Function themeindex() */
/* */
/* This function format the stories on the Homepage */
/************************************************************/

function themeindex ($aid, $informant, $time, $title, $counter, $topic, $thetext, $notes, $morelink, $topicname, $topicimage, $topictext) {
global $anonymous, $tipath;
if ($notes != "&quot {
$notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
} else {
$notes = "";
}
if ("$aid" == "$informant&quot {
$content = "$thetext$notes\n";
} else {
if($informant != "&quot {
$content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;username=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
}
$posted = ""._POSTEDBY." ";
$posted .= get_author($aid);
$posted .= " "._ON." $time $timezone ($counter "._READS.&quot";
$tmpl_file = "themes/subBlack/story_home.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* Function themearticle() */
/* */
/* This function format the stories on the story page, when */
/* you click on that "Read More..." link in the home */
/************************************************************/

function themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
global $admin, $sid, $tipath;
$posted = ""._POSTEDON." $datetime "._BY." ";
$posted .= get_author($aid);
if ($notes != "&quot {
$notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
} else {
$notes = "";
}
if ("$aid" == "$informant&quot {
$content = "$thetext$notes\n";
} else {
if($informant != "&quot {
$content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;username=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
}
$tmpl_file = "themes/subBlack/story_page.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* Function themesidebox() */
/* */
/* Control look of your blocks. Just simple. */
/************************************************************/

function themesidebox($title, $content) {
$tmpl_file = "themes/subBlack/blocks.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
?><!-- INICIO codigo contadores.miarroba.com -->
<SCRIPT LANGUAGE="JavaScript" src="http://contadores.miarroba.com/ver.php?id=235042"></SCRIPT>
<!-- FIN codigo contadores.miarroba.com -->

ves lo pongo avajo y sale arriva,pero si pruevo a ponerlo anteses decir antes del ?> me da error

Avatar Image
@man / @woman
@man / @woman

a) no lo has puesto como he dicho, repito lee el post
b) no lo has puesto donde he dicho, repito lee el post

demonmx
Usuario habitual
Usuario habitual

echo "<SCRIPT LANGUAGE="JavaScript" src="http://contadores.miarroba.com/ver.php?id=235042"></SCRIPT>";
$footer_message = footmsg();
echo "</center>\n";
echo "<center><br><font class=\"small\">:: subBlack phpbb2 style by <a href=\"http://www.gamerhaven.com/\">spectre</a> :: PHP-Nuke theme by <a href=\"http://www.nukemods.com\">www.nukemods.com</a> ::Traducido Y modificado por <a href=\"http://www.nukebazar.com\">NBdragon</a>::</font></center>";
echo "<br>\n";

ASI ES NO??
PERO ME DA ERROR

Avatar Image
@man / @woman
@man / @woman

Casi... pero lee el post porque no lo has puesto correctamente...

<SCRIPT LANGUAGE=\"JavaS.... fijate en el \ que hay en varios sitios....

demonmx
Usuario habitual
Usuario habitual

LLANO KIERO EN MEDIO AHORA LO KIERO METIDO EN IN BLOKE PERO SIEMPRE ME SALE ENCIMA Y YO LO KIERO DENTROOOO

codigo de mi contador:

<SCRIPT LANGUAGE="JavaScript" src="http://contadores.miarroba.com/ver.php?id=235042"></SCRIPT>


codigo transformado para bloke:


<?php
#### Generated by Block Creator by Disipal Site (www.disipal.net) ###
if (eregi("block-Block_Creator.php",$PHP_SELF)) {
Header("Location: index.php&quot;
die();
}
$content = "<SCRIPT LANGUAGE=\"JavaScript\" src=\"http://contadores.miarroba.com/ver.php?id=235042\"></SCRIPT>";
$content .= "
?>

codigo de mi contador de HTML a php:


<?php
#### Generated by Html to PHP converter By Disipal Site (www.disipal.net) ####


echo"<SCRIPT LANGUAGE=\"JavaScript\" src=\"http://contadores.miarroba.com/ver.php?id=235042\"></SCRIPT>"
. "
."";

?>

codigo de mi contador una vez pasado de html a php y transformado para bloke:



<?php
#### Generated by Block Creator by Disipal Site (www.disipal.net) ###
if (eregi("block-Block_Creator.php",$PHP_SELF)) {
Header("Location: index.php&quot;
die();
}
$content = "<?php";
$content .= "#### Generated by Html to PHP converter By Disipal Site (www.disipal.net) ####";
$content .= "";
$content .= "";
$content .= "echo\"<SCRIPT LANGUAGE=\\\"JavaScript\\\" src=\\\"http://contadores.miarroba.com/ver.php?id=235042\\\"></SCRIPT>\"";
$content .= " . \"";
$content .= " .\"\";";
$content .= "";
$content .= "?>";
?>

no se como acerlo e provado a meterlo en la carpeta block todo bien puesto de las 3 formas...por cierto como kito el enlace k tiene el contador

ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES,
te recomendamos abrir un nuevo tema en lugar de responder al actual
Opciones:
Ir al subforo:
Permisos:
TU NO PUEDES Escribir nuevos temas
TU NO PUEDES Responder a los temas
TU NO PUEDES Editar tus propios mensajes
TU NO PUEDES Borrar tus propios mensajes
Temas similares
TemaUsuariosRespuestasVisitasActividad
Por: , el 20/May/2006, 20:47
kanamit NoSetup.org kn1f3eg42kMay/06