Richiesta Problema Db

Hamachi00

Utente Esperto
Autore del topic
11 Luglio 2010
1.053
0
Miglior risposta
0
Salve,io vorrei avere i dcr new crypto infatti li ho però ho messo un cms spagnolo ma mi dà errori allora l'ho cambiato con quello DNT provvisorio o se lo modifico permanente ma per esempio se metto il db di Dnt mi dà l'errore in atom emu che c'è in più coming soon (non sò dove toglierlo) e s emetto quello spagnolo con dnt dice che mancano alcune tabelle le metto però dà alcuni errori io vorrei quindi eliminare questo "coming soon"



Screen EMU.


15q3ggw.png


@#Pako94 @xFrancesco,
@Alethebest17 @DarkPako @Dani. @Mirrors @BillieJoe. @~Cards
 
Riferimento: Problema Db

Che emulatore è? Non c'è bisogno di censurare. :emoji_alien:

Usi il suo database?
 
Riferimento: Problema Db

Si è Atom emu,modificato è diventato Rompez il cms postato da te era. @~Cards
 
Riferimento: Problema Db

Si ma io vorrei mettere dnt cms .Gli errori me li dà nel register e sopra esce l'errore data_classes core.php @~Cards
 
Riferimento: Problema Db

Appunto perché non è quello il db.
Per far funzionare il tutto devi usare il db dell'emulatore e usare Rompez cms.
 
Riferimento: Problema Db

@~Cards Nel pack del download sta questo.
ROMPEZ EMU
ROMPEZ DB
ROMPEZ CMS

IO ho messo Rompez Db il cms ho configurato mus e config e emu ho messo i miei no-ip
 
Riferimento: Problema Db

@~Cards Nel pack del download sta questo.
ROMPEZ EMU
ROMPEZ DB
ROMPEZ CMS

IO ho messo Rompez Db il cms ho configurato mus e config e emu ho messo i miei no-ip

Usati insieme nessun problema, che errore ti da? Se usi il suo db non te ne può dare..
''ma per esempio se metto il db di Dnt mi dà l'errore in atom emu che c'è in più coming soon''
Appunto è normale.
 
Riferimento: Problema Db

@~Cards aspetta ora rimetto tutto :l e ti screeno gli errori


Comunque prima avevo pensato una cosa siccome non andavano insieme avevo messo i 2 db però al config del cms avevo messo quello di dnt e all'emu gli ho messo quell'altro però dopo dovevo importare l'utente registrato sull'altra :l
--------------- AGGIUNTA AL POST ---------------
esce questo:Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\data_classes\server-data.php_data_classes-core.php.php on line 224

@~Cards @~Cards @~Cards
 
Ultima modifica:
Riferimento: Problema Db

@~Cards aspetta ora rimetto tutto :l e ti screeno gli errori


Comunque prima avevo pensato una cosa siccome non andavano insieme avevo messo i 2 db però al config del cms avevo messo quello di dnt e all'emu gli ho messo quell'altro però dopo dovevo importare l'utente registrato sull'altra :l
--------------- AGGIUNTA AL POST ---------------
esce questo:Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\data_classes\server-data.php_data_classes-core.php.php on line 224

@~Cards @~Cards @~Cards

Posta il config che si trova dentro data_classes e il config che si trova nei file.php come tutti i cms.
 
Riferimento: Problema Db

<?php

$MySQLhostname = "localhost";
$MySQLusername = "root";
$MySQLpassword = "MiaPasswordTopSecret";
$MySQLdb = "hotelri";
$cms_version = "1.0";
$avatar = "http://www.habbo.es/habbo-imaging/avatarimage?figure=";

?>
@~Cards
 
Riferimento: Problema Db

<?php

$MySQLhostname = "localhost";
$MySQLusername = "root";
$MySQLpassword = "MiaPasswordTopSecret";
$MySQLdb = "hotelri";
$cms_version = "1.0";
$avatar = "http://www.habbo.es/habbo-imaging/avatarimage?figure=";

?>
@~Cards
Pure l'altro.. Porta attenzione a quello che scriviamo.
 
Riferimento: Problema Db

<?php
/*=======================================================================*\
| Copyright (c) 2012, Leo 'Met0do' -
Perfavore, Entra oppure Registrati per vedere i Link!
|
| For more stuffs and data,
Perfavore, Entra oppure Registrati per vedere i Link!
- leo@met0do.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 3 of the License, or |
| (at your option) any later version. |
| ====================================================================== |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
\*=======================================================================*/

###################################### php stuff ######################################
error_reporting(0); /* no errors please */
session_start(); /* for user´s data */

###################################### configurations ######################################

/* mysql configuration */
$config["db"]["server"] = 'localhost'; /* server of mysql */
$config["db"]["username"] = 'root'; /* username of mysql */
$config["db"]["password"] = 'MiaPasswordTopSecret'; /* password of mysql */
$config["db"]["db_name"] = 'hotelri'; /* database name */

/* basic configuration */
$config["hImaging"] = 'http://habbo.es/habbo-imaging/avatarimage'; /* server of the creation of avatar images */
/* avatar configuration */
$config["defaultAvatar"] = 'ch-3111-63-62.hd-3103-1.hr-3163-39.lg-285-77.sh-305-78'; /* he looks like Leon */

###################################### special functions ######################################
/* connecting to mysql server [database] */
$con = mysql_connect($config["db"]["server"], $config["db"]["username"], $config["db"]["password"]) or die('Error in Mysql configuration details, open <b>config.php</b> file and edit them.');
$db = mysql_select_db($config["db"]["db_name"], $con) or die('Error in Database Selection, open <b>config.php</b> file and edit it.');

/* function to read data set of avatar */
function readAvatarSet($type, $gender, $publicDir = 'json/', $extFile = '.txt'){
/* formating avatar set file */ $set_file = $publicDir.$type.'-'.strtolower($gender).'.txt';
/* check if file exists */ if(file_exists($set_file) != false){ $x = fopen($set_file, "r");
/* reading file and returning data as string */ $s = fread($x, filesize($set_file)); fclose($x); return $s; } else { return null; }
}

/* function to check if a substring contains in a string */
function checkIfContains($substring, $string) {
$pos = strpos($string, $substring);
if($pos === false) { return false; } else { return true; }
}

/* function to create a hash for user´s session, this will be the ID of the users */
function createSecurityHash($length, $numbers, $upper){
if (1 > $length) $length = 8;
$chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$numChars = 62; $string = '';
if (!$numbers) { $numChars = 52; $chars = substr($chars, 10, $numChars); }
if (!$upper) { $numChars -= 26; $chars = substr($chars, 0, $numChars); }
for ($i = 0; $i < $length; $i++) { $string .= $chars[mt_rand(0, $numChars - 1)]; }
return $string;
}

?>



@~Cards
 
Riferimento: Problema Db

E' tutto ok, ma avrai editato il core.
Prendi un client da un altro cms.
 
Riferimento: Problema Db

@~Cards TESTO E TI DICO.

Ma comunque il core non lo ho toccato proprio poichè ora ho estratto tutto che stavo rifacendo :l


comunque se chiudo la pagina e la riapro (e sta fatto l'accesso esce questo)



Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\data_classes\server-data.php_data_classes-core.php.php on line 224

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\data_classes\server-data.php_data_classes-core.php.php:224) in C:\xampp\htdocs\index.php on line 202
 
Ultima modifica: