Pafile DB error

Support for IntegraMOD 141

Moderator: Integra Moderator

Pafile DB error

PostAuthor: DjPorkchop » Wed May 30, 2007 1:35 am

I get the following error in My downloads section If I click on toplist button, then click Most Popular Files or Top Rated files.... The most recent files page works just fine.

Couldnt Query category info for parent categories

DEBUG MODE

SQL Error : 1054 Unknown column 'f1.file_id' in 'on clause'

SELECT f1.*, AVG(r.rate_point) AS rating, COUNT(r.votes_file) AS total_votes, u.user_id, u.username, c.cat_id, c.cat_name FROM phpbb_pa_files AS f1, phpbb_pa_cat AS c LEFT JOIN phpbb_pa_votes AS r ON f1.file_id = r.votes_file LEFT JOIN phpbb_users AS u ON f1.user_id = u.user_id WHERE c.cat_id = f1.file_catid AND f1.file_approved = '1' GROUP BY f1.file_id ORDER BY file_dls DESC LIMIT 0, 10

Line : 419
File : pa_toplist.php
Last edited by DjPorkchop on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Don't gain the world and lose your soul, wisdom is better than silver and gold" -Bob Marley

If you build it, I can break it! ~ Whispered in the tone of the movie Field of Dreams.
User avatar
DjPorkchop
Administrator
Administrator
 
Posts: 1593
Likes: 136 posts
Liked in: 26 posts
Images: 12
Joined: Fri Apr 21, 2006 7:59 pm
Cash on hand: 1,575.25
Location: Illinois
IntegraMOD version: phpBB2x

PostAuthor: bariq » Wed May 30, 2007 2:06 am

seems like mysql 5 error. make sure you run the same query in the query analyzer and hope it doesnt pop any error if it does then you need to change the query to match the only which is compatible with mysql 5. Iam enclosing the pa_toplist.php file iam having, replace and try

Code: Select all
   <php>auth_global['auth_toplist'])         {             if ( !$userdata['session_logged_in'] )             {                 redirect(append_sid("login.$phpEx?redirect=dload.$phpEx?action=stats", true));             }                 $message = sprintf($lang['Sorry_auth_toplist'], $this->auth_global['auth_toplist_type']);             message_die(GENERAL_MESSAGE, $message);         }           $mode = ( isset($_REQUEST['mode']) ) ? htmlspecialchars($_REQUEST['mode']) : 'newest';           $days = ( isset($_REQUEST['days']) ) ? intval($_REQUEST['days']) : 7;           $selected_date = ( isset($_REQUEST['selected_date']) ) ? $_REQUEST['selected_date'] : '';           $most_num = ( isset($_REQUEST['most_num']) ) ? intval($_REQUEST['most_num']) : 10;           $most_type = ( isset($_REQUEST['most_type']) ) ? htmlspecialchars($_REQUEST['most_type']) : 'num';                 if ($mode == 'downloads')         {             $l_current_toplist = $lang['Most_downloads'];         }         elseif ($mode == 'rating')         {             $l_current_toplist = $lang['Rated_downloads'];         }         else         {             $l_current_toplist = $lang['Latest_downloads'];         }           $pafiledb_template->assign_vars(array(             'DOWNLOAD' => $pafiledb_config['settings_dbname'],                 'U_INDEX' => append_sid('index.'.$phpEx),             'U_DOWNLOAD' => append_sid('dload.'.$phpEx),             'U_NEWEST_FILE' => append_sid('dload.'.$phpEx.'?action=toplist&mode=newest'),             'U_MOST_POPULAR' => append_sid('dload.'.$phpEx.'?action=toplist&mode=downloads'),             'U_TOP_RATED' => append_sid('dload.'.$phpEx.'?action=toplist&mode=rating'),                         'L_CURRENT_TOPLIST'  => $l_current_toplist,             'L_NEWEST_FILE' => $lang['Latest_downloads'],             'L_MOST_POPULAR' => $lang['Most_downloads'],             'L_TOP_RATED' => $lang['Rated_downloads'],             'L_INDEX' => sprintf($lang['Forum_Index'], $board_config['sitename']),             'L_TOPLIST' => $lang['Toplist'])         );                 $sql = 'SELECT file_time, file_id, file_catid             FROM ' . PA_FILES_TABLE . "             WHERE file_approved = '1'             ORDER BY file_time DESC";           if ( !($result = $db->sql_query($sql)) )         {             message_die(GENERAL_ERROR, 'Couldnt Query stat info', '', __LINE__, __FILE__, $sql);         }           while($row = $db->sql_fetchrow($result))         {             if($this->auth[$row['file_catid']]['auth_read'])             {                 $rowset[] = $row;             }         }                 $db->sql_freeresult($result);           switch ($mode)         {             case 'newest':                 //get number of files in the last week                 $file_num_week = 0;                 $day_time = (time()-(86400 * 7));                 for($i = 0; $i <count>= $day_time )                     {                         $file_num_week++;                     }                 }                     $file_num_month = 0;                   $day_time = (time()-(86400 * 30));                 for($i = 0; $i <count>= $day_time )                     {                         $file_num_month++;                     }                 }                   $pafiledb_template->assign_vars(array(                     'IS_NEWEST' => TRUE,                     'FILE_DATE' => (empty($selected_date)) ? TRUE : FALSE,                       'TOTAL_FILE_WEEK' => $file_num_week,                     'TOTAL_FILE_MONTH' => $file_num_month,                                         'L_TOTAL_NEW_FILE' => $lang['Total_new_files'],                     'L_LAST_WEEK' => $lang['Last_week'],                     'L_LAST_30_DAYS' => $lang['Last_30_days'],                     'L_SHOW' => $lang['Show'],                     'L_ONE_WEEK' => $lang['One_week'],                     'L_TWO_WEEK' => $lang['Two_week'],                     'L_30_DAYS' => $lang['30_days'],                     'L_NEW_FILES' => sprintf($lang['New_Files'], $days),                                         'U_ONE_WEEK' => append_sid('dload.'.$phpEx.'?action=toplist&mode=newest&days=7'),                     'U_TWO_WEEK' => append_sid('dload.'.$phpEx.'?action=toplist&mode=newest&days=14'),                     'U_30_DAYS' => append_sid('dload.'.$phpEx.'?action=toplist&mode=newest&days=30'))                 );                   if(empty($selected_date))                 {                     for($j = 0; $j <= $days - 1; $j++)                     {                         $day_time = (time()-(86400 * $j));                         $day_date = Date('Y-m-d', $day_time);                         $file_num = 0;                         for($i = 0; $i <count>assign_block_vars('files_date', array(                             'U_DATES' => append_sid('dload.'.$phpEx.'?action=toplist&mode=newest&days=7&selected_date='.$day_time),                             'DATES' => date('F d, Y', $day_time),                             'TOTAL_DOWNLOADS' => $file_num)                         );                     }                 }                 else                 {                     $pafiledb_template->assign_vars(array(                         'FILE_LIST' => TRUE,                           'L_NEW_FILE' => $lang['New_file'],                         'L_RATE' => $lang['DlRating'],                         'L_DOWNLOADS' => $lang['Dls'],                         'L_DATE' => $lang['Date'],                         'L_NAME' => $lang['Name'],                         'L_FILE' => $lang['File'],                         'L_SUBMITER' => $lang['Submiter'],                         'L_CATEGORY' => $lang['Category'])                     );                                         $file_ids = array();                     for($i = 0; $i <count>sql_query($sql)) )                         {                             message_die(GENERAL_ERROR, 'Couldnt Query stat info', '', __LINE__, __FILE__, $sql);                         }                           $file_rowset = array();                         while($row = $db->sql_fetchrow($result))                         {                             $file_rowset[] = $row;                         }                         $db->sql_freeresult($result);                     }                     else                     {                         $file_rowset = array();                     }                                             for ($i = 0; $i < count($file_rowset); $i++)                     {                           $cat_url = append_sid('dload.'.$phpEx.'?action=category&cat_id=' . $file_rowset[$i]['file_catid']);                         $file_url = append_sid('dload.'.$phpEx.'?action=file&file_id=' . $file_rowset[$i]['file_id']);                                                   //===================================================                         // Format the date for the given file                         //===================================================                           $date = create_date($board_config['default_dateformat'], $file_rowset[$i]['file_time'], $board_config['board_timezone']);                           //===================================================                         // Get rating for the file and format it                         //===================================================                           $rating = ($file_rowset[$i]['rating'] != 0) ? round($file_rowset[$i]['rating'], 2) . ' / 10' : $lang['Not_rated'];                           //===================================================                         // If the file is new then put a new image in front of it                         //===================================================                                 $is_new = FALSE;                         if (time() - ($pafiledb_config['settings_newdays'] * 24 * 60 * 60) </a>assign_block_vars('files_row', array(                             'CAT_NAME' => $cat_name,                             'FILE_NEW_IMAGE' => $images['pa_file_new'],                             'PIN_IMAGE' => $posticon,                               'IS_NEW_FILE' => $is_new,                             'FILE_NAME' => $file_rowset[$i]['file_name'],                             'FILE_DESC' => $file_rowset[$i]['file_desc'],                             'FILE_SUBMITER' => $poster,                             'DATE' => $date,                             'RATING' => $rating,                             'DOWNLOADS' => $file_rowset[$i]['file_dls'],                               'U_FILE' => $file_url,                             'U_CAT' => $cat_url)                         );                     }                 }                                   break;             case 'downloads':             case 'rating':                 $rating_field = ($mode == 'rating') ? ', AVG(r.rate_point) AS rating' : '';                 $join_statement = ($mode == 'rating') ? 'LEFT JOIN ' . PA_VOTES_TABLE . ' AS r ON f.file_id = r.votes_file' : '';                 $group_statement = ($mode == 'rating') ? 'GROUP BY f.file_id' : '';                   $sql = "SELECT file_id$rating_field                     FROM " . PA_FILES_TABLE . " AS f                     $join_statement                     WHERE f.file_approved = '1'                     $group_statement                     ORDER BY f.file_time DESC";                                     if ( !($result = $db->sql_query($sql)) )                 {                     message_die(GENERAL_ERROR, 'Couldnt Query category info for parent categories', '', __LINE__, __FILE__, $sql);                 }                                 $file_num = 0;                                 if($mode == 'downloads')                 {                     $file_num = $db->sql_numrows($result);                 }                 else                 {                     while($row = $db->sql_fetchrow($result))                     {                         if(!empty($row['rating']))                         {                             $file_num++;                         }                     }                 }                   $limit = $most_num;                 if($most_type == 'per')                 {                     $limit = $most_num / 100;                     $limit = $file_num * $limit;                     $limit = round($limit);                 }                 $limit = ($limit <0>assign_vars(array(                     'IS_POPULAR' => TRUE,                     'FILE_LIST' => TRUE,                                         'L_NEW_FILES' => sprintf( ($most_type == 'num') ? $lang['Popular_num'] : $lang['Popular_per'], $most_num, $file_num),                     'L_NEW_FILE' => $lang['New_file'],                     'L_SHOW_TOP' => $lang['Show_top'],                     'L_OR_TOP' => $lang['Or_top'],                     'L_RATE' => $lang['DlRating'],                     'L_DOWNLOADS' => $lang['Dls'],                     'L_DATE' => $lang['Date'],                     'L_NAME' => $lang['Name'],                     'L_FILE' => $lang['File'],                     'L_SUBMITER' => $lang['Submiter'],                     'L_CATEGORY' => $lang['Category'],                                                             'U_TOP_10' => append_sid('dload.'.$phpEx.'?action=toplist&mode='.$mode.'&most_type=num&most_num=10'),                     'U_TOP_25' => append_sid('dload.'.$phpEx.'?action=toplist&mode='.$mode.'&most_type=num&most_num=25'),                     'U_TOP_50' => append_sid('dload.'.$phpEx.'?action=toplist&mode='.$mode.'&most_type=num&most_num=50'),                                         'U_TOP_PER_1' => append_sid('dload.'.$phpEx.'?action=toplist&mode='.$mode.'&most_type=per&most_num=1'),                     'U_TOP_PER_5' => append_sid('dload.'.$phpEx.'?action=toplist&mode='.$mode.'&most_type=per&most_num=5'),                     'U_TOP_PER_10' => append_sid('dload.'.$phpEx.'?action=toplist&mode='.$mode.'&most_type=per&most_num=10'))                 );                 if ($limit)                 {                     $sort_method = ($mode == 'downloads') ? 'file_dls' : 'rating';                     $sql_limit = "LIMIT 0, $limit ";                     switch(SQL_LAYER)                     {                         case 'oracle':                             $sql = "SELECT f1.*, AVG(r.rate_point) AS rating, COUNT(r.votes_file) AS total_votes, u.user_id, u.username, c.cat_id, c.cat_name                                 FROM " . PA_FILES_TABLE . " AS f1, " . PA_VOTES_TABLE . " AS r, " . USERS_TABLE . " AS u, " . PA_CATEGORY_TABLE . " AS c                                 WHERE f1.file_id = r.votes_file(+)                                 AND f1.user_id = u.user_id(+)                                 AND c.cat_id = f1.file_catid                                 AND f1.file_approved = '1'                                 GROUP BY f1.file_id                                 ORDER BY $sort_method DESC                                 $sql_limit";                             break;                           default:                             $sql = "SELECT f1.*, AVG(r.rate_point) AS rating, COUNT(r.votes_file) AS total_votes, u.user_id, u.username, c.cat_id, c.cat_name                                 FROM " . PA_FILES_TABLE . " AS f1, " . PA_CATEGORY_TABLE . " AS c                                 LEFT JOIN " . PA_VOTES_TABLE . " AS r ON f1.file_id = r.votes_file                                 LEFT JOIN ". USERS_TABLE ." AS u ON f1.user_id = u.user_id                                 WHERE c.cat_id = f1.file_catid                                 AND f1.file_approved = '1'                                 GROUP BY f1.file_id                                 ORDER BY $sort_method DESC                                 $sql_limit";                             break;                     }                                         if ( !($result = $db->sql_query($sql)) )                     {                         message_die(GENERAL_ERROR, 'Couldnt Query category info for parent categories', '', __LINE__, __FILE__, $sql);                     }                 }                 $searchset = array();                 while( $row = $db->sql_fetchrow($result) )                 {                     $searchset[] = $row;                 }                                 for($i = 0; $i < count($searchset); $i++)                 {                     if($mode == 'rating')                     {                         if(empty($searchset[$i]['rating']))                         {                             continue;                         }                     }                       $cat_url = append_sid('dload.'.$phpEx.'?action=category&cat_id=' . $searchset[$i]['cat_id']);                     $file_url = append_sid('dload.'.$phpEx.'?action=file&file_id=' . $searchset[$i]['file_id']);                     //===================================================                     // Format the date for the given file                     //===================================================                       $date = create_date($board_config['default_dateformat'], $searchset[$i]['file_time'], $board_config['board_timezone']);                       //===================================================                     // Get rating for the file and format it                     //===================================================                       $rating = ($searchset[$i]['rating'] != 0) ? round($searchset[$i]['rating'], 2) . ' / 10' : $lang['Not_rated'];                       //===================================================                     // If the file is new then put a new image in front of it                     //===================================================                             $is_new = FALSE;                     if (time() - ($pafiledb_config['settings_newdays'] * 24 * 60 * 60) </a>assign_block_vars('files_row', array(                         'CAT_NAME' => $searchset[$i]['cat_name'],                         'FILE_NEW_IMAGE' => $images['pa_file_new'],                         'PIN_IMAGE' => $posticon,                           'IS_NEW_FILE' => $is_new,                         'FILE_NAME' => $searchset[$i]['file_name'],                         'FILE_DESC' => $searchset[$i]['file_desc'],                         'FILE_SUBMITER' => $poster,                         'DATE' => $date,                         'RATING' => $rating,                         'DOWNLOADS' => $searchset[$i]['file_dls'],                         'U_FILE' => $file_url,                         'U_CAT' => $cat_url)                     );                 }                 break;         }                 $this->display($lang['Download'], 'pa_toplist_body.tpl');     }}?>  
Last edited by bariq on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

bariq
Members
Members
 
Posts: 65
Likes: 0 post
Liked in: 0 post
Joined: Sun Apr 09, 2006 7:52 pm
Cash on hand: 0.00

Re: Pafile DB error

PostAuthor: found it » Wed May 30, 2007 3:32 am

I agree definitely a mysql 5 error ...easy to fix... though just look above...

:mrgreen:
Last edited by found it on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
[url=http]themes.[/url]
http://www.founditforum.com :: [url=http]Joining people together[/url]

[url=http][img=left]http://www.bbful.com/bbful_banner2.png[/img][/url]
User avatar
found it
Dev Team
Dev Team
 
Posts: 792
Likes: 0 post
Liked in: 0 post
Joined: Mon Mar 27, 2006 4:29 am
Cash on hand: 0.00


Return to IntegraMOD 141

Who is online

Registered users: App360MonitorBot, Bing [Bot], Google [Bot]