Ich hab mal bne Frage ich habe den Profil Mod v2.2 von externer Link installiert.
jetzt bekomme ich wenn ich im Profil was ausfülle diese Fehler Meldungen,aber gespeichert ist es trotzdem alles.
1 2 3 4 5 6 7 8 9 10 11 12 13 | Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 99 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 100 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 101 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 102 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 103 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 104 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 105 in /users/theevilwarriors/www/include/includes/func/db/mysql.php on line 68 |
Ich habe mal die Datei rausgesucht vielcleicht ist ja da ein Fehler drin.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | <?php # Copyright by Manuel # Support www.ilch.de defined ( 'main' ) or die ( 'no direct access' ); $count_query_xyzXYZ = 0; function db_connect () { if (defined( 'CONN' )) { return ; } define ( 'CONN' , @mysql_pconnect(DBHOST, DBUSER, DBPASS)); $db = @mysql_select_db(DBDATE, CONN); if (!CONN) { die ( 'Verbindung nicht möglich, bitte prüfen Sie ihre mySQL Daten wie Passwort, Username und Host<br />' ); } if ( ! $db ) { die ( 'Kann Datenbank "' .DBDATE. '" nicht benutzen : ' . mysql_error(CONN)); } if (function_exists( 'mysql_set_charset' ) and version_compare(mysql_get_server_info(CONN), '5.0.7' ) !== -1) { //Für ältere Installation die init.php nachladen if (!defined( 'ILCH_DB_CHARSET' ) && file_exists ( 'include/includes/init.php' )) { require_once 'include/includes/init.php' ; } mysql_set_charset(ILCH_DB_CHARSET, CONN); } $timeZoneSetted = false; if (function_exists( 'date_default_timezone_get' )) { $timeZoneSetted = mysql_query( 'SET time_zone = "' . date_default_timezone_get() . '"' ); } if (! $timeZoneSetted && version_compare(PHP_VERSION, '5.1.3' )) { $timeZoneSetted = mysql_query( 'SET time_zone = "' . date ( 'P' ) . '"' ); } } function db_close () { mysql_close ( CONN ); } function db_check_error (& $r , $q ) { if (! $r AND mysql_errno(CONN) <> 0 AND function_exists( 'is_coadmin' ) AND is_coadmin()) { // var_export (debug_backtrace(), true) echo ( '<font color="#FF0000">MySQL Error:</font><br>' .mysql_errno(CONN). ' : ' .mysql_error(CONN). '<br>in Query:<br>' . $q . '<pre>' .debug_bt(). '</pre>' ); } return ( $r ); } function db_query ( $q ) { global $count_query_xyzXYZ ; $count_query_xyzXYZ ++; if (preg_match ( "/^UPDATE `?prefix_\S+`?\s+SET/is" , $q )) { $q = preg_replace( "/^UPDATE `?prefix_(\S+?)`?([\s\.,]|$)/i" , "UPDATE `" .DBPREF. "\\1`\\2" , $q ); } elseif (preg_match ( "/^INSERT INTO `?prefix_\S+`?\s+[a-z0-9\s,\)\(]*?VALUES/is" , $q )) { $q = preg_replace( "/^INSERT INTO `?prefix_(\S+?)`?([\s\.,]|$)/i" , "INSERT INTO `" .DBPREF. "\\1`\\2" , $q ); } else { $q = preg_replace( "/prefix_(\S+?)([\s\.,]|$)/" , DBPREF. "\\1\\2" , $q ); } return (db_check_error(@mysql_query( $q , CONN), $q )); } function db_result ( $erg , $zeile =0, $spalte =0) { return (mysql_result ( $erg , $zeile , $spalte )); } function db_fetch_assoc ( $erg ) { return (mysql_fetch_assoc( $erg )); } function db_fetch_row ( $erg ) { return (mysql_fetch_row( $erg )); } function db_fetch_object ( $erg ) { return (mysql_fetch_object( $erg )); } function db_num_rows ( $erg ) { return (mysql_num_rows ( $erg )); } function db_last_id () { return ( mysql_insert_id (CONN)); } function db_count_query ( $query ) { return (db_result(db_query( $query ),0)); } function db_list_tables ( $db ) { return (mysql_list_tables ( $db , CONN)); } function db_tablename ( $db , $i ) { return (mysql_tablename ( $db , $i )); } function db_check_erg ( $erg ) { if ( $erg == false OR @db_num_rows( $erg ) == 0) { exit ( 'Es ist ein Fehler aufgetreten' ); } } function db_make_sites ( $page , $where , $limit , $link , $table , $anzahl = NULL) { $hvmax = 4; // hinten und vorne links nach page $maxpage = '' ; if ( empty ( $MPL ) ) { $MPL = '' ; } if ( is_null ( $anzahl ) ) { $resultID = db_query ( "SELECT COUNT(*) FROM prefix_" . $table . " " . $where ); $total = db_result( $resultID ,0); } else { $total = $anzahl ; } if ( $limit < $total ) { $maxpage = $total / $limit ; if ( is_double ( $maxpage )) { $maxpage = ceil ( $maxpage ); } $ibegin = $page - $hvmax ; $iende = $page + $hvmax ; $vgl1 = $iende + $ibegin ; $vgl2 = ( $hvmax * 2) + 1; if ( $vgl1 <= $vgl2 ) { $iende = $vgl2 ; } $vgl3 = $maxpage - ( $vgl2 -1); if ( $vgl3 < $ibegin ) { $ibegin = $vgl3 ; } if ( $ibegin < 1) { $ibegin = 1; } if ( $iende > $maxpage ) { $iende = $maxpage ; } $vMPL = '' ; if ( $ibegin > 1) { $vMPL = '<a href="' . $link . '-p1">«</a> ' ; } $MPL = $vMPL . '[ ' ; for ( $i = $ibegin ; $i <= $iende ; $i ++) { if ( $i == $page ) { $MPL .= $i ; } else { $MPL .= '<a href="' . $link . '-p' . $i . '">' . $i . '</a>' ; } if ( $i != $iende ) { $MPL .= ' | ' ; } } $MPL .= ' ]' ; if ( $iende < $maxpage ) { $MPL .= ' <a href="' . $link . '-p' . $maxpage . '">»</a>' ; } } return $MPL ; } ?> |
Hoffe einer kennt sich damit aus und findet den Fehler.
Danke schonmal
verwendete ilch Version: 1.1 P
betroffene Homepage: theevilwarriors.square7.ch