0

私が抱えている問題 (http://stackoverflow.com/questions/14263141/joomla-website-not-working-after-moving-to-new-server) を自分の Web サイトに投稿しました。そして、サイトに必要なコードを挿入したときにのみ問題が発生することに気付きました。コードにはクラスがあり、それをファイルの周りで使用しています。

物事は約2か月間機能し、現在は機能しません。私はコードを何も変更しておらず、過去に以前のテンプレートで使用していました。

Joomlaが好きなように正しく含めていないと思いますが、何が起こっているのか理解できません。

単純な DB 接続とリンク ID であるクラスは次のとおりです。

// Class db: Connects to database and returns linkid.
class MY_DB{

  var $sqlhost; 
  var $sqluser;
  var $sqlpass;
  var $sqldb;
  var $err;
  var $status;
  var $num_rows;
  var $result;
  var $linkid;
  var $query;
  var $rows     = Array();
  var $last_insert_id;

  function MY_DB( $query="", $db="" ){

    if( $db != "" ){ $this->sqldb = $db; }
    else{ $this->sqldb = "dbase"; }

    $this->sqlhost  = "localhost";
    $this->sqluser  = "root";
    $this->sqlpass  = "pass";


    $this->query    = $query;

    if( $this->query == "" ){
      $this->__Connect__();
    }
    else{
      $this->__Connect__();
      $this->__TalkToDB__();
    }




  }// end constructor Session


///////////////////////////////////////// 
  function __Connect__(){
      //connect to mysql
      $this->linkid = mysql_connect( $this->sqlhost, $this->sqluser, $this->sqlpass );

      if( $this->linkid ){
        $this->result = mysql_select_db( $this->sqldb, $this->linkid );
      }
      else
        $this->err = "Could not connect to MySQL server";
    }// end Connect function
/////////////////////////////////////////    
  function __TalkToDb__(){

      $this->result = mysql_query( $this->query, $this->linkid );

      if( !$this->result ){
        echo ( "Query: '" . $this->query . "', failed with error message: -- " . mysql_error() . " --" );
      }     
  }// end TalkToDb function
//////////////////////////////////////////

  function __CountRows__(){
      $this->num_rows = mysql_num_rows( $this->result );

      return $this->num_rows;

  }

//////////////////////////////////////////  
  function __LastInsertedId__()
  {
    return mysql_insert_id( $this->linkid );
  }


}// end class definition

?>

ここに私が含める別のファイルがあります:

<?php
// select random activity
$num_acts_display = 2;

$query = "select id from activity where enabled='Y'";
$all_ids  = array();

$act_id   = new MY_DB( $query ); 


while( $all = mysql_fetch_array($act_id->result,MYSQL_BOTH) ){

    $all_ids[] = $all['id'];

}

// shuffle it
shuffle( $all_ids );
// re-shuffle it
shuffle( $all_ids );

?>
<div class="random-figureo">
    <ul>  
<?

for( $i = 0; $i < $num_acts_display; $i++ ){

  $query = "select * from activity where id=".$all_ids[$i];
  $act = new MY_DB( $query ); 
  $a = mysql_fetch_array($act->result,MYSQL_BOTH)


?>

  <li>
    <div class="random_img">
     <a href="<?=$this->baseurl?>/index.php?option=com_content&view=article&id=537&Itemid=194&page=thumbnails&amp;act_id=<?=$a['id']?>">
     <?
      $portada = get_portada($a['id'], "", true);

      if( $portada == "none" ){
     ?>
      <div style="background:#666; width:100px; height:65px; padding:0px; margin:0px;"></div>
     <?}
        else{// "templates/" . $this->template .
     ?> 
       <img src="<?= "templates/" . $this->template . substr( $a['directory'],1,strlen($a['directory']) ) . "/" . $portada ?>" width="100" height="65" alt="<?=$a['act_name']?>" />
     <?}?>
     </a>
    </div>
    <br />
    <div class="random_title">
      <a href="<?=$this->baseurl?>/index.php?option=com_content&view=article&id=537&Itemid=194&page=thumbnails&amp;act_id=<?=$a['id']?>"><?=$a['act_name']?></a>
    </div>
  </li>   
<?
}
?>      
  </ul>
</div>

含める方法は次のとおりです。

include( "templates/" . $this->template . "/includes/db.class" );

include( "templates/" . $this->template . "/random-figureo.php" ); 

私は何を間違っていますか?J!2.5.8 を PHP バージョン: 5.3 で使用しています。

4

1 に答える 1

0

私はちょうど問題を見つけました:

Blockquote この拡張機能は PHP 5.5.0 で非推奨になり、将来的に削除される予定です。代わりに、MySQLi または PDO_MySQL 拡張機能を使用する必要があります。

そこで、ファイルの mysql 拡張子を mysqli に変更したところ、すべてが機能するようになりました...

私はまだphp 5.3を使用していますが、mysql_fetch_arrayが気に入らないようです...

お時間をいただきありがとうございます。これが将来誰かに役立つことを願っています。欲求不満、時間、サイトがオフラインになるまでに 3 日間かかりました。

于 2013-01-12T21:44:05.337 に答える