Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post [SOLVED] Album Thumbnails Gone After Upgrade? 
 
I installed the latest version of XS, and now all my thumbnails for my album are missing.  I see the same thing happening here on this site.  I searched, but didn't find anything about it.  Any suggestions?
 



 
Edited by Round11, Tue 22 Aug, 2006 00:05: See resolution below.
Round11Send private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Album Thumbnails Gone After Upgrade? 
 
Uhm do you have set the mod rewrite?
Disable it and the thumbs comes back.
 




____________
[img]http://www.mediomondo.it/appoggio/yuqlogo.jpg[/img]
 
Antonio MercurioSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Album Thumbnails Gone After Upgrade? 
 
There is something wrong withe the way that the album holds the link:

URL_Rewrite generates the link (and is correct) but the html doesn't threath the link as image (if you click on it you'll see the thmb not the image).

For now I've solved in that way:

OPEN

includes/page_header.php

SEARC

Code: [Download] [Hide] [Select]
    $url_in = array(
            '/(?<!/)' . PORTAL_MG . '?topic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . FORUM_MG . '?' . POST_CAT_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . VIEWFORUM_MG . '?' . POST_FORUM_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)./' . VIEWFORUM_MG . '?' . POST_FORUM_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . VIEWTOPIC_MG . '?' . POST_POST_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . VIEWTOPIC_MG . '?' . POST_TOPIC_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_cat.php?cat_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_thumbnail.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_pic.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_picm.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_showpage.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(<img .*?)</a>/e',
            '/(?<!/)album_showpage.php?full=&pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(<img .*?)</a>/e',
            '/(?<!/)album_showpage.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_personal.php?user_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)dload.php?action=category&cat_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)dload.php?action=category&cat_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)dload.php?action=file&file_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=cat&amp;cat=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=article&amp;k=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=stats&amp;stats=mostpopular((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=stats&amp;stats=toprated((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=stats&amp;stats=latest((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=cat&amp;cat=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=article&amp;k=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=stats&amp;stats=mostpopular((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=stats&amp;stats=toprated((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=stats&amp;stats=latest((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e');

    $url_out = array(
            "make_url_friendly('6') . '-na1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vf1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vf1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vt1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-ac1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-at1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-apic1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-apm1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "'show-pic-asp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "'show-pic-full-asp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-asp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-aper1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-dc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-dc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-df1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-kbc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-kba1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('5') . '-kbsmp.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-kbstr.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-kbsl.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('6') . '-pc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-pa1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('5') . '-psmp.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-pstr.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-psl.html' . if_query('1') . stripslashes('45') . '</a>'");

    if ( isset($config_mg['url_rw']) && ($config_mg['url_rw'] === '1') )
    {
        $content = preg_replace($url_in, $url_out, $content);
    }

    return $content;

}


replace with

Code: [Download] [Hide] [Select]
    $url_in = array(
            '/(?<!/)' . PORTAL_MG . '?topic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . FORUM_MG . '?' . POST_CAT_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . VIEWFORUM_MG . '?' . POST_FORUM_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)./' . VIEWFORUM_MG . '?' . POST_FORUM_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . VIEWTOPIC_MG . '?' . POST_POST_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)' . VIEWTOPIC_MG . '?' . POST_TOPIC_URL . '=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_cat.php?cat_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_pic.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_picm.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_showpage.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(<img .*?)</a>/e',
            '/(?<!/)album_showpage.php?full=&pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(<img .*?)</a>/e',
            '/(?<!/)album_showpage.php?pic_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)album_personal.php?user_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)dload.php?action=category&cat_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)dload.php?action=category&cat_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)dload.php?action=file&file_id=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=cat&amp;cat=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=article&amp;k=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=stats&amp;stats=mostpopular((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=stats&amp;stats=toprated((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)kb.php?mode=stats&amp;stats=latest((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=cat&amp;cat=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=article&amp;k=([0-9]+)((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=stats&amp;stats=mostpopular((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=stats&amp;stats=toprated((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e',
            '/(?<!/)press.php?mode=stats&amp;stats=latest((&amp;)|(&)){0,1}([^>]+>)(.*?)</a>/e');

    $url_out = array(
            "make_url_friendly('6') . '-na1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vf1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vf1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-vt1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-ac1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-apic1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-apm1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "'show-pic-asp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "'show-pic-full-asp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-asp1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-aper1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-dc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-dc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-df1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-kbc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-kba1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('5') . '-kbsmp.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-kbstr.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-kbsl.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('6') . '-pc1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('6') . '-pa1.html' . if_query('2') . stripslashes('56') . '</a>'",
            "make_url_friendly('5') . '-psmp.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-pstr.html' . if_query('1') . stripslashes('45') . '</a>'",
            "make_url_friendly('5') . '-psl.html' . if_query('1') . stripslashes('45') . '</a>'");

    if ( isset($config_mg['url_rw']) && ($config_mg['url_rw'] === '1') )
    {
        $content = preg_replace($url_in, $url_out, $content);
    }

    return $content;

}


simply removed the "thumbs" url rewrited
 




____________
[img]http://www.mediomondo.it/appoggio/yuqlogo.jpg[/img]
 
Last edited by Antonio Mercurio on Sun 20 Aug, 2006 10:36; edited 1 time in total 
Antonio MercurioSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Album Thumbnails Gone After Upgrade? 
 
Wow, I have nothing like that in my page_tail.php file.
Code: [Download] [Hide] [Select]
<?php
/***************************************************************************
 *                              page_tail.php
 *                            -------------------
 *   begin                : Saturday, Feb 13, 2001
 *   copyright            : (C) 2001 The phpBB Group
 *   email                : support@phpbb.com
 *
 *   $Id: page_tail.php,v 1.27.2.3 2004/12/22 02:04:00 psotfx Exp $
 *
 *
 ***************************************************************************/

/***************************************************************************
 *
 *   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, or
 *   (at your option) any later version.
 *
 ***************************************************************************/

if ( !defined('IN_PHPBB') )
{
    die('Hacking attempt');
}
if ( $config_mg['switch_footer_table'] == 1 )
{
    $template->assign_block_vars('switch_footer_table', array(
        'FOOTER_TEXT' => $config_mg['footer_table_text'],
        'L_STAFF_MESSAGE' => $lang['staff_message'],
        )
    );
}

global $do_gzip_compress;
include($phpbb_root_path . 'ctracker/ct_footer.'.$phpEx);
// Show the overall footer.
include_once($phpbb_root_path . 'includes/functions_jr_admin.' . $phpEx);
$admin_link = jr_admin_make_admin_link();



$template->set_filenames(array('overall_footer' => ( empty($gen_simple_header) ) ? 'overall_footer.tpl' : 'simple_footer.tpl'));

//Begin Lo-Fi Mod
$lofi = '<a href="' . append_sid($path_parts . '?' . $_SERVER['QUERY_STRING'] .'&amp;lofi=' . (empty($_COOKIE['lofi']) ? '1' : '0')) . '">' . (empty($_COOKIE['lofi']) ? ($lang['Lofi']) : ($lang['Full_Version']) ) . '</a><br />';
$template->assign_vars(array(
    'L_LOFI' => $lang['Lofi'],
    'L_FULL_VERSION' => $lang['Full_Version'],
    'LOFI' => $lofi
    )
);
//End Lo-Fi Mod

$template->assign_vars(array(

    'TRANSLATION_INFO' => (isset($lang['TRANSLATION_INFO'])) ? $lang['TRANSLATION_INFO'] : ((isset($lang['TRANSLATION'])) ? $lang['TRANSLATION'] : ''),
    'ADMIN_LINK' => $admin_link
    )
);
if ( $config_mg['page_gen'] == 1 ){
// Page generation time for Admin - BEGIN
/* Un-comment the line below to restrict Admins only to view page generation info */
//if( ($userdata['session_logged_in']) and ($userdata['user_level'] == ADMIN) )
//{
$gzip_text = ($board_config['gzip_compress']) ? 'GZIP ' . $lang['Enabled']: 'GZIP ' . $lang['Disabled'];
$debug_text = (DEBUG == 1) ? $lang['Debug_On'] : $lang['Debug_Off'];
$excuted_queries = $db->num_queries;
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$endtime = $mtime;
$gentime = round(($endtime - $starttime), 4); // You can adjust the number 6
$sql_time = round($db->sql_time, 4);

$sql_part = round($sql_time / $gentime * 100);
$php_part = 100 - $sql_part;

$template->assign_vars(array(
    'PAGE_GEN_TIME' => $lang['Page_Generation_Time'],
    'GENERATION_TIME' => $gentime,
    'NUMBER_QUERIES' => $excuted_queries,
    'GZIP_TEXT' => $gzip_text,
    'SQL_QUERIES' => $lang['SQL_Queries'],
    'SQL_PART' => $sql_part,
    'PHP_PART' => $php_part,
    'OVERALL_QUERIES_TODAY' => $show_in_footer_today,
    'OVERALL_QUERIES_TOP' => $show_in_footer_top,
    'OVERALL_PAGES_VIEWED' => $spvt,
    'DEBUG_TEXT' => $debug_text,
    )
);

$template->assign_block_vars('generation_time_switch', array() );

//}
// Page generation time for Admin - END
}

if(!$layout_forum_wide_flag&&$portal_config['portal_tail']&&(!defined('HAS_DIED'))&&(!defined('IN_LOGIN')))
{
    $template->set_filenames(array('portal_tail' => 'portal_page_tail.tpl'));
    portal_parse_blocks($portal_config['default_portal'], TRUE, 'tail');
    $template->assign_var('FOOTER_WIDTH', $portal_config['footer_width']);
    $template->assign_var('PORTAL_TAIL', portal_assign_var_from_handle($template, 'portal_tail'));
}

$template->pparse('overall_footer');


//
// Close our DB connection.
//
$db->sql_close();

// Compress buffered output if required and send to browser
//
//
// begin keyword urls mod
//

if( function_exists(ob_gzhandler) && $board_config['gzip_compress'] == 1)
{
    $gzip_contents = rewrite_urls(ob_get_contents());
    ob_end_clean();
    ob_start('ob_gzhandler');
    echo $gzip_contents;
    ob_end_flush();
}
else
{
    $contents = rewrite_urls(ob_get_contents());
    ob_end_clean();
    echo $contents;
    global $dbg_starttime;
}

//
// end keyword urls mod
//

//
// end keyword urls mod
//

exit;

?>

 



 
Round11Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Album Thumbnails Gone After Upgrade? 
 
Nevermind.  Found the code in page_header.php

Working great!  Thanks for the help!
 



 
Round11Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Album Thumbnails Gone After Upgrade? 
 
Round11 wrote: [View Post]
Nevermind.  Found the code in page_header.php

Working great!  Thanks for the help!


Exact (i was modifing something else in page tail .. sorry)
 




____________
[img]http://www.mediomondo.it/appoggio/yuqlogo.jpg[/img]
 
Antonio MercurioSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Respuesta: Album Thumbnails Gone After Upgrade? 
 
Thanks, I had he himself problem.

Bye
 



 
dinoyocoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Respuesta: Album Thumbnails Gone After Upgrade? 
 
I think that this subject must be an "official" patches.
Because I have seen he himself error in all the updates of version.

Some see that they solved it executing script to reduce the XS load.

Greets.
 




____________
www.JanuWeb.Com - Webmaster
www.phpBB-Es.Com - Administrador
 
JANU1535Send private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Album Thumbnails Gone After Upgrade? 
 
Solved using the code posted by Antonio Mercurio THanks!
 




____________
www.LphantES.com
 
zankywSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Album Thumbnails Gone After Upgrade? 
 
I've modified the page_header.php in a different way... let me know if it's still working fine. You'll find my modifications in Patch 058-004.

Thank you.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Album Thumbnails Gone After Upgrade? 
 
@MG:
It's the same problem that was here?
 




____________
~~~ Andrea ~~~
User #379756 on Linux Counter
"If you can't apt-get something, it isn't useful or doesn't exist!!"
 
buldoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Album Thumbnails Gone After Upgrade? 
 
buldo wrote: [View Post]
@MG:
It's the same problem that was here?

Yes... Bicet enabled URL Rewrite when I was on vacation...

Anyway this problem should have been fixed with the latest patches I've released.

Let me know if you are still having problems.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Album Thumbnails Gone After Upgrade? 
 
Mighty Gorgon wrote: [View Post]
Yes... Bicet enabled URL Rewrite when I was on vacation...

I've noticed it  
Mighty Gorgon wrote: [View Post]
Anyway this problem should have been fixed with the latest patches I've released.
Let me know if you are still having problems.

Are you sure that the problem was only the URL Rewrite?
I say this because I'm still using an .htaccess (with URL Rewrite "ON") you provided me BEFORE your vacation and I haven't any problem with thumbnails!  
 




____________
~~~ Andrea ~~~
User #379756 on Linux Counter
"If you can't apt-get something, it isn't useful or doesn't exist!!"
 
buldoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Album Thumbnails Gone After Upgrade? 
 
The problem is not in HTACCESS... the problem is in page_header.php !
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Album Thumbnails Gone After Upgrade? 
 
Mighty Gorgon wrote: [View Post]
The problem is not in HTACCESS... the problem is in page_header.php !

Ok, but why does it get out if you enable URL Rw? And, in your opinion, why don't I have the same problem?
 




____________
~~~ Andrea ~~~
User #379756 on Linux Counter
"If you can't apt-get something, it isn't useful or doesn't exist!!"
 
buldoSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron