Necesito ayuda con PHP Nuke
Hola experto !
Tengo un pequeño problema en la instalación de un clasificado de phpnuke.
Ya lo instale pero me da este problema que no se como resolver:
me dice esto : Fatal error: Call to undefined function: sql_fetch_row() in /var/www/html/pruebas/modules/NukeC/index.php on line 49
Pero he intentado de todo y nada he podido hacer para repararlo.
Este es el código de la función a la que se refiere en index.php: function Index() {
global $prefix,$dbi,$module_name,$multilingual,$currentlang,$MemberorNot,$perpage,$usecatgimg;
include("header.php");
$nowdate = date("Y-m-d");
MenuNukeC(0);
echo "<BR>";
OpenTable();
echo "<center><font class=\"title\"><b>"._NUKECADSMAINCAT."</b></font></center><br>";
$sql = "select id_catg,catg,catg_desc,image from ".$prefix."_ads_catg where parentid=0 ";
if ($multilingual) {
$sql .= "and language='$currentlang' ";
}
$sql = "order by catg";
$resultcatg = sql_query($sql,$dbi);
echo "<table align=\"center\" width=\"90%\" border=\"0\" cellspacing=\"4\" cellpadding=\"2\"><tr>";
while (list($id_catg,$catg,$cdesc,$imagecatg) = sql_fetch_row($resultcatg,$dbi)) {
$i = 0;
if ($count == 2) {
echo "<tr>\n";
$count = 0;
}
$listchild = "";
echo "<td width=\"45%\" valign=\"top\">";
echo "<table width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" border=\"0\">";
echo "<TR><TD width=\"10\" valign=\"top\">";
if ($usecatgimg) {
if ($imagecatg == "") {
$imagecatgsrc= "noimage.gif";
} else {
$imagecatgsrc = "$imagecatg";
}
$imgdimension = @getimagesize("modules/$module_name/imagecatg/$imagecatgsrc");
if ($imgdimension) {
$imgcatgwidth = $imgdimension[0];
$imgcatgheight = $imgdimension[1];
}
echo "<a href=\"modules.php?name=$module_name&op=ViewCatg&id_catg=$id_catg\" >";
echo "<img src=\"modules/$module_name/imagecatg/$imagecatgsrc\" width=\"$imgcatgwidth\" height=\"$imgcatgheight\" alt=\"$catg\" border=\"0\"></a>";
echo "</a>";
}
Espero que me ayude con esto, por Favor
Gracias !
Tengo un pequeño problema en la instalación de un clasificado de phpnuke.
Ya lo instale pero me da este problema que no se como resolver:
me dice esto : Fatal error: Call to undefined function: sql_fetch_row() in /var/www/html/pruebas/modules/NukeC/index.php on line 49
Pero he intentado de todo y nada he podido hacer para repararlo.
Este es el código de la función a la que se refiere en index.php: function Index() {
global $prefix,$dbi,$module_name,$multilingual,$currentlang,$MemberorNot,$perpage,$usecatgimg;
include("header.php");
$nowdate = date("Y-m-d");
MenuNukeC(0);
echo "<BR>";
OpenTable();
echo "<center><font class=\"title\"><b>"._NUKECADSMAINCAT."</b></font></center><br>";
$sql = "select id_catg,catg,catg_desc,image from ".$prefix."_ads_catg where parentid=0 ";
if ($multilingual) {
$sql .= "and language='$currentlang' ";
}
$sql = "order by catg";
$resultcatg = sql_query($sql,$dbi);
echo "<table align=\"center\" width=\"90%\" border=\"0\" cellspacing=\"4\" cellpadding=\"2\"><tr>";
while (list($id_catg,$catg,$cdesc,$imagecatg) = sql_fetch_row($resultcatg,$dbi)) {
$i = 0;
if ($count == 2) {
echo "<tr>\n";
$count = 0;
}
$listchild = "";
echo "<td width=\"45%\" valign=\"top\">";
echo "<table width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" border=\"0\">";
echo "<TR><TD width=\"10\" valign=\"top\">";
if ($usecatgimg) {
if ($imagecatg == "") {
$imagecatgsrc= "noimage.gif";
} else {
$imagecatgsrc = "$imagecatg";
}
$imgdimension = @getimagesize("modules/$module_name/imagecatg/$imagecatgsrc");
if ($imgdimension) {
$imgcatgwidth = $imgdimension[0];
$imgcatgheight = $imgdimension[1];
}
echo "<a href=\"modules.php?name=$module_name&op=ViewCatg&id_catg=$id_catg\" >";
echo "<img src=\"modules/$module_name/imagecatg/$imagecatgsrc\" width=\"$imgcatgwidth\" height=\"$imgcatgheight\" alt=\"$catg\" border=\"0\"></a>";
echo "</a>";
}
Espero que me ayude con esto, por Favor
Gracias !
1 respuesta
Respuesta de Jorge Vila
1