jimmybcn92
Usuario habitual
Usuario habitual

Buenas, me he creado un espacio y ya lo he hecho todo perfectamennte, he subido el php-nuke y el sql/nuke a la base de datos, pero cuando intento entrar a la web, me sale lo siguiente.

https://cfifapconline.webcindario.com/

Esto que quiere decir.. que hago para solucionar, dice que es un problema del MySQL.., las tablas estan subidas perfectamente.. asi que no se que puede ser :(!

O quizas solo haya que esperar a que pasen las 24 horas..?

Avatar Image
Moderador
Moderador

Ese error lo suele mostrar cuando tienes algo mal configurado en el config.php

Lee este tema:
http://soporte.miarroba.com/80376/1[....]uentes-config-php-errores-en-foros/



El que vence a los demás es poderoso, el que se vence a sí mismo es invencible


jimmybcn92
Usuario habitual
Usuario habitual

Buenas,

Lo tengo todo bien enserio..

Mira el error que me da, y tengo subido el index.php:

http://img339.imageshack.us/img339/8302/dibujo1p.jpg

Lo tengo todo subido asi:

http://img192.imageshack.us/img192/3070/dibujo2pp.jpg

 Y en la base de datos lo tengo perfectamente dentro de mi sitio, lo que he hice es copiar el codigo del sql/nuke tal como viene en el sql de mi base de datos, dentro del apartado de mi web claro jeje.

Nse que mas a haer, quizas haya algun error en el codigo de config.php o el de index.php os pego los dos:

Config.php:

<?php

######################################################################
# PHP-NUKE: Advanced Content Management System
# ============================================
#
# Copyright (c) 2006 by Francisco Burzi
# http://phpnuke.org
#
# This program is free software. You can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License.
######################################################################

if (stristr(htmlentities($_SERVER['PHP_SELF']), "config.php")) {
       Header("Location: index.php");
    die();
}

######################################################################
# Database & System Config
#
# dbhost:       SQL Database Hostname
# dbuname:      SQL Username
# dbpass:       SQL Password
# dbname:       SQL Database Name
# $prefix:      Your Database table's prefix
# $user_prefix: Your Users' Database table's prefix (To share it)
# $dbtype:      Your Database Server type. Supported servers are:
#               MySQL, mysql4, sqlite, postgres, mssql, oracle,
#               msaccess, db2 and mssql-odbc
#               Be sure to write it exactly as above, case SeNsItIvE!
# $sitekey:    Security Key. CHANGE it to whatever you want, as long
#               as you want. Just don't use quotes.
# $gfx_chk:    Set the graphic security code on every login screen,
#        You need to have GD extension installed:
#        0: No check
#        1: Administrators login only
#        2: Users login only
#        3: New users registration only
#        4: Both, users login and new users registration only
#        5: Administrators and users login only
#        6: Administrators and new users registration only
#        7: Everywhere on all login options (Admins and Users)
#        NOTE: If you aren't sure set this value to 0
# $subscription_url: If you manage subscriptions on your site, you
#                    must write here the url of the subscription
#                    information/renewal page. This will send by
#                    email if set.
# $admin_file: Administration panel filename. "admin" by default for
#              "admin.php". To improve security please rename the file
#              "admin.php" and change the $admin_file value to the
#              new filename (without the extension .php)
# $nuke_editor: Turn On/Off the WYSIWYG text editor
#               0: Off, textareas in forms will not show any editor
#               1: On, all textarea in the forms will show the editor
# $display_errors:  Debug control to see PHP generated errors.
#                   false: Don't show errors
#                   true: See all errors ( No notices )
######################################################################

$dbhost = "http://mysql.webcindario.com";
$dbuname = "MINAME";
$dbpass = "MIPW";
$dbname = "MINAME";
$prefix = "nuke";
$user_prefix = "nuke";
$dbtype = "MySQL";
$sitekey = "SDSDSDASASASASASA";
$gfx_chk = 0;
$subscription_url = "";
$admin_file = "admin";
$nuke_editor = 1;
$display_errors = true;

/**********************************************************************/
/* You finished to configure the Database. Now you can change all     */
/* you want in the Administration Section.   To enter just launch     */
/* your web browser pointing it to http://xxxxxx.xxx/admin.php        */
/* (Change xxxxxx.xxx to your domain name, for example: phpnuke.org)  */
/*                                                                   */
/* Remember to go to Preferences section where you can configure your */
/* new site. In that menu you can change all you need to change.      */
/*                                                                   */
/* Congratulations! now you have an automated news portal!            */
/* Thanks for choose PHP-Nuke: The Future of the Web                  */
/**********************************************************************/

// DO NOT TOUCH ANYTHING BELOW THIS LINE UNTIL YOU KNOW WHAT YOU'RE DOING

$prefix = empty($user_prefix) ? $prefix : $user_prefix;
$reasons = array("As Is","Offtopic","Flamebait","Troll","Redundant","Insighful","Interesting","I nformative","Funny","Overrated","Underrated");
$badreasons = 4;
$AllowableHTML = array("b"=>1,"i"=>1,"strike"=>1,"div"=>2,"u"=>1,"a"=>2,"em"=>1,"br"=>1,"str ong"=>1,"blockquote"=>1,"tt"=>1,"li"=>1,"ol"=>1,"ul"=>1);
$CensorList = array("fuck","cunt","fucker","fucking","pussy","cock","c0ck","cum","twat"," clit","bitch","fuk","fuking","motherfucker");
$tipath = "images/topics/";

//***************************************************************
// IF YOU WANT TO LEGALY REMOVE ANY COPYRIGHT NOTICES PLAY FAIR AND CHECK: http://phpnuke.org/modules.php?name=Commercial_License
// COPYRIGHT NOTICES ARE GPL SECTION 2(c) COMPLIANT AND CAN'T BE REMOVED WITHOUT PHP-NUKE'S AUTHOR WRITTEN AUTHORIZATION
// THE USE OF COMMERCIAL LICENSE MODE FOR PHP-NUKE HAS BEEN APPROVED BY THE FSF (FREE SOFTWARE FOUNDATION)
// YOU CAN REQUEST INFORMATION ABOUT THIS TO GNU.ORG REPRESENTATIVE. THE EMAIL THREAD REFERENCE IS #213080
// YOU'RE NOT AUTHORIZED TO CHANGE THE FOLLOWING VARIABLE'S VALUE UNTIL YOU ACQUIRE A COMMERCIAL LICENSE
// (http://phpnuke.org/modules.php?name=Commercial_License)
//***************************************************************

$commercial_license = 0;

?>

Index.php:

<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2006 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

require_once("mainfile.php");
global $prefix, $db, $admin_file;

if (isset($op) AND ($op == "ad_click") AND isset($bid)) {
    $bid = intval($bid);
    $sql = "SELECT clickurl FROM ".$prefix."_banner WHERE bid='$bid'";
    $result = $db->sql_query($sql);
    list($clickurl) = $db->sql_fetchrow($result);
    $db->sql_query("UPDATE ".$prefix."_banner SET clicks=clicks+1 WHERE bid='$bid'");
    update_points(21);
    Header("Location: ".htmlentities($clickurl));
    die();
}

$modpath = '';
define('MODULE_FILE', true);
$_SERVER['PHP_SELF'] = "modules.php";
$row = $db->sql_fetchrow($db->sql_query("SELECT main_module from ".$prefix."_main"));
$name = $row['main_module'];
define('HOME_FILE', true);

if (isset($url) AND is_admin($admin)) {
    $url = urldecode($url);
    echo "<meta http-equiv=\"refresh\" content=\"0; url=$url\">";
    die();
}

if ($httpref == 1) {
    if (isset($_SERVER['HTTP_REFERER'])) {
    $referer = $_SERVER['HTTP_REFERER'];
    $referer = check_html($referer, "nohtml");
    }
    if (!empty($referer) && !stripos_clone($referer, "unknown") && !stripos_clone($referer, "bookmark") && !stripos_clone($referer, $_SERVER['HTTP_HOST'])) {
    $result = $db->sql_query("INSERT INTO ".$prefix."_referer VALUES (NULL, '".$referer."')");
    }
    $numrows = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_referer"));
    if($numrows>=$httprefmax) {
        $result2 = $db->sql_query("DELETE FROM ".$prefix."_referer");
    }
}
if (!isset($mop)) { $mop="modload"; }
if (!isset($mod_file)) { $mod_file="index"; }
$name = trim($name);
if (isset($file)) { $file = trim($file); }
$mod_file = trim($mod_file);
$mop = trim($mop);
if (stripos_clone($name,"..") || (isset($file) && stripos_clone($file,"..")) || stripos_clone($mod_file,"..") || stripos_clone($mop,"..")) {
    die("You are so cool...");
} else {
    $ThemeSel = get_theme();
    if (file_exists("themes/$ThemeSel/module.php")) {
        include("themes/$ThemeSel/module.php");
        if (is_active("$default_module") AND file_exists("modules/$default_module/".$mod_file.".php")) {
            $name = $default_module;
        }
    }
    if (file_exists("themes/$ThemeSel/modules/$name/".$mod_file.".php")) {
        $modpath = "themes/$ThemeSel/";
    }
    $modpath .= "modules/$name/".$mod_file.".php";
    if (file_exists($modpath)) {
        include($modpath);
    } else {
        define('INDEX_FILE', true);
        include("header.php");
        OpenTable();
        if (is_admin($admin)) {
            echo "<center><font class=\"\"><b>"._HOMEPROBLEM."</b></font><br><br>[ <a href=\"".$admin_file.".php?op=modules\">"._ADDAHOME."</a> ]</center>";
        } else {
            echo "<center>"._HOMEPROBLEMUSER."</center>";
        }
        CloseTable();
        include("footer.php");
    }
}

?>

FIN!

Si alguien me ayuda se lo a agradecer mucho por que ya no se que mas a hacer, y si nadie me ayuda no creo que pueda seguir...!

Un abrazo!!

Avatar Image
Come y duerme en el foro
Come y duerme en el foro

Has subido el index.php por lo que veo, no?. Esta en el sitio raiz o lo has metido en alguna carpeta?.

Y el config.php, cambia la variable $dbhost:

$dbhost=http://mysql.webcindario.com;

Por

$dbhost=mysql.webcindario.com

Saludos.

jimmybcn92
Usuario habitual
Usuario habitual

Esta todo en el sitio, YA ME FUNCIONA, POR FIN!!

Eso si, arriba de la web me da el siguiente error y cuando en el admin no me deja y me sale:

Warning: ini_set() has been disabled for security reasons in /home/webcindario/c/f/cfifapconline/mainfile.php on line 256

Como soluciono eso :S??!

Codigo mainfile.php / line 256:

ini_set('display_errors', 1);

Avatar Image
Come y duerme en el foro
Come y duerme en el foro

Esa funcion al parecer esta deshabilitada. Para quitar el warning te recomendaria usar el operador @.

@ini_set('display_errors',1);

Pruebalo a ver si te funciona todo perfecto y no te da ningun tipo de warning.

Saludos.

jimmybcn92
Usuario habitual
Usuario habitual

POR FIN, YA ME FUNFIONA, GRACIAS!!

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
No se han encontrado temas similares