re-generate all thumbnails

various scripts
Post Reply
canonknipser
Site Admin
Posts: 61
Joined: 30 May 2016, 17:49

re-generate all thumbnails

Post by canonknipser » 26 Aug 2016, 12:03

Save it as gen_thumb.php to the root-directory of your board and point to it with your browser (like http://example.com/[path-to-your-board]/gen_thumb.php). Use at your own risk and make a copy (binary ftp) of your files-folder before!

It generates up to 100 thumbs in one run, you can change this value by modifying the $interval-variable.
You can restart the script for the next block of attachments by clicking the link at the bottom or just by refreshing your browser.
When all thumbs are regenerated, the next run will start from the beginning ;)

Code: Select all

<?php
/**
* This script will re-generate all thumbnails for attachments from the attachment folder (default
* "files"), useful after changing the thumbnail width (= longest edge) via acp
*/

/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);

// Name of script - change if you use a different name for the script
$scriptname = 'gen_thumb.php';
// Specify the number of attachments to handle in one run - reduce if you receive a timeout from server
$interval = 100;

// read id of last attachement copied
if (isset($config['last_thumb_id']))
{
    $last_thumb_id = $config['last_thumb_id'];
}
else
{
    $last_thumb_id = 0;
    set_config('last_thumb_id', 0);
}

// count number of attachments to process
$sql = 'SELECT COUNT(attach_id) AS num_attach FROM ' . ATTACHMENTS_TABLE . ' WHERE attach_id > ' . (int) $last_thumb_id . '  AND thumbnail = 1 ORDER BY attach_id ASC';
$result = $db->sql_query($sql);
$attachs_count = (int) $db->sql_fetchfield('num_attach');

// Output Information
echo dheader();

// read required information from attachment table
$sql = 'SELECT attach_id, physical_filename, mimetype FROM ' . ATTACHMENTS_TABLE . ' WHERE attach_id > ' . (int) $last_thumb_id . ' AND thumbnail = 1 ORDER BY attach_id ASC';
$result = $db->sql_query_limit($sql, $interval);

// how many attachment do we copy in this run?
$actual_num = $db->sql_affectedrows($result);
if ($actual_num == 0)
{
    // nothing to do
    $complete = true;
}
else
{
    $complete = false;
    if ($attachs_count <= $interval)
    {
        // this is the last run
        $complete = true;
    }
    while ($row = $db->sql_fetchrow($result))
    {
        // for each attachment
        //remember id
        $last_thumb_id = $row['attach_id'];
        // build source filename including path (we fetch the path from config
        $source = $phpbb_root_path . $config['upload_path'] . '/' . $row['physical_filename'];
        // build destination filename including path
        $destination = $phpbb_root_path . $config['upload_path'] . '/thumb_' . $row['physical_filename'];
        // copy the file

        if (create_thumbnail($source, $destination, $row['mimetype']))
        {
                // write info to user
                echo sprintf("<tr><td class='succ'>creation of thumbnail succesful:</td><td>%s</td><td>%s</td><td>%s</td></tr>", $last_thumb_id, $source, $destination);
        }
        else
        {
                echo sprintf("<tr><td class='error'>creation of thumbnail failed:</span></td><td>%s</td><td>%s</td><td>%s</td></tr>", $last_thumb_id, $source, $destination);
        }
    }
    // write last attachment id in config
    if ($complete)
    {
        $last_thumb_id = 0;
        set_config('last_thumb_id', 0);
    }
    else
    {
        set_config('last_thumb_id', $last_thumb_id);
    }
}
// finished
echo dfooter();

function dheader()
{
    global $attachs_count, $interval, $last_thumb_id;
    if ($interval > $attachs_count)
    {
        $interval = $attachs_count;
    }
    $remain = $attachs_count - $interval;

    return '<html>
    <head>
        <title>copy ' . $interval . ' attachments in this run, ' . $remain . ' remain to generate, starting with id '. $last_thumb_id .'</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf8">
        <style>
                a:visited {COLOR: #3A4273; TEXT-DECORATION: none}
                a:link {COLOR: #3A4273; TEXT-DECORATION: none}
                a:hover {COLOR: #3A4273; TEXT-DECORATION: underline}
                .error {COLOR: red; ; FONT-WEIGHT: bold}
                .succ {COLOR: green; ; FONT-WEIGHT: bold}
                body, table, td {COLOR: #3A4273; FONT-FAMILY: Tahoma, Verdana, Arial; FONT-SIZE: 12px; LINE-HEIGHT: 20px; scrollbar-base-color: #E3E3EA; scrollbar-arrow-color: #5C5C8D}
                input {COLOR: #085878; FONT-FAMILY: Tahoma, Verdana, Arial; FONT-SIZE: 12px; background-color: #3A4273; color: #FFFFFF; scrollbar-base-color: #E3E3EA; scrollbar-arrow-color: #5C5C8D}
                .install {FONT-FAMILY: Arial, Verdana; FONT-SIZE: 20px; FONT-WEIGHT: bold; COLOR: #000000}
        </style>
    </head>
    <body bgcolor="#3A4273\" text="#000000">
        <table width="95%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" align="center">
                <tr>
                    <td>
                        <table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
                                <tr><th colspan="4">copy ' . $interval . ' attachments in this run, ' . $remain . ' remain to generate, starting with id '. $last_thumb_id .'</th></tr>
                                <tr>
                                    <th>Status</th><th>Attach_ID</th><th>phpBB internal file name</th><th>generated thumbail</th>
                                </tr>';
}

function dfooter()
{
    global $scriptname, $complete;
    if (!$complete)
    {
        $next_step_link = '<a href="' . $scriptname . '">Click to continue with next step</a>';
    }
    else
    {
        $next_step_link = "<b>Completed</b>";
    }

    return '<tr><td colspan="4" align="center">' . $next_step_link . '</td></tr>
                        </table>
                    </td>
                </tr>
        </table><br>
    </body>
</html>';
}

?>
All my phpBB-work is profit-free. If you like my extensions and want to help me keeping my webpages online, feel free to donate Image

canonknipser
Site Admin
Posts: 61
Joined: 30 May 2016, 17:49

Re: re-generate all thumbnails

Post by canonknipser » 27 Mar 2017, 11:00

Please find a slight modified version below, which also generates thumbnails for files which don't have one currently, but the file sizes meets the criteria to generate thumbnails. The thumbnail-flag is no longer read, but updated according to the results. You may recognize "thumbnail generation errors" for files, who
  • are not images
  • have larger dimensions or smaller file size than specified in acp
, so don't worry about those errors.

Code: Select all

<?php
/**
* This script will re-generate all thumbnails for attachments from the attachment folder (default
* "files"), useful after changing the thumbnail width (= longest edge) via acp
*/

/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);

// Name of script - change if you use a different name for the script
$scriptname = 'gen_thumb.php';
// Specify the number of attachments to handle in one run - reduce if you receive a timeout from server
$interval = 100;

// read id of last attachement copied
if (isset($config['last_thumb_id']))
{
    $last_thumb_id = $config['last_thumb_id'];
}
else
{
    $last_thumb_id = 0;
    set_config('last_thumb_id', 0);
}

// count number of attachments to process
$sql = 'SELECT COUNT(attach_id) AS num_attach FROM ' . ATTACHMENTS_TABLE . ' WHERE attach_id > ' . (int) $last_thumb_id . '  ORDER BY attach_id ASC';
$result = $db->sql_query($sql);
$attachs_count = (int) $db->sql_fetchfield('num_attach');

// Output Information
echo dheader();

// read required information from attachment table
$sql = 'SELECT attach_id, physical_filename, mimetype FROM ' . ATTACHMENTS_TABLE . ' WHERE attach_id > ' . (int) $last_thumb_id . ' ORDER BY attach_id ASC';
$result = $db->sql_query_limit($sql, $interval);

// how many attachment do we copy in this run?
$actual_num = $db->sql_affectedrows($result);
if ($actual_num == 0)
{
    // nothing to do
    $complete = true;
}
else
{
    $complete = false;
    if ($attachs_count <= $interval)
    {
        // this is the last run
        $complete = true;
    }
    while ($row = $db->sql_fetchrow($result))
    {
        // for each attachment
        //remember id
        $last_thumb_id = $row['attach_id'];
        // build source filename including path (we fetch the path from config
        $source = $phpbb_root_path . $config['upload_path'] . '/' . $row['physical_filename'];
        // build destination filename including path
        $destination = $phpbb_root_path . $config['upload_path'] . '/thumb_' . $row['physical_filename'];
        // copy the file

        if (create_thumbnail($source, $destination, $row['mimetype']))
        {
            // Update database information
            $sql_u = 'UPDATE '. ATTACHMENTS_TABLE .' SET thumbnail = 1 WHERE attach_id = '. $last_thumb_id;
                // write info to user
                echo sprintf("<tr><td class='succ'>creation of thumbnail succesful:</td><td>%s</td><td>%s</td><td>%s</td></tr>", $last_thumb_id, $source, $destination);
        }
        else
        {
            // Update database information
            $sql_u = 'UPDATE '. ATTACHMENTS_TABLE .' SET thumbnail = 0 WHERE attach_id = '. $last_thumb_id;
                echo sprintf("<tr><td class='error'>creation of thumbnail failed:</span></td><td>%s</td><td>%s</td><td>%s</td></tr>", $last_thumb_id, $source, $destination);
        }
        $result_u = $db->sql_query($sql_u);
    }
    // write last attachment id in config
    if ($complete)
    {
        $last_thumb_id = 0;
        set_config('last_thumb_id', 0);
    }
    else
    {
        set_config('last_thumb_id', $last_thumb_id);
    }
}
// finished
echo dfooter();

function dheader()
{
    global $attachs_count, $interval, $last_thumb_id;
    if ($interval > $attachs_count)
    {
        $interval = $attachs_count;
    }
    $remain = $attachs_count - $interval;

    return '<html>
    <head>
        <title>copy ' . $interval . ' attachments in this run, ' . $remain . ' remain to generate, starting with id '. $last_thumb_id .'</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf8">
        <style>
                a:visited {COLOR: #3A4273; TEXT-DECORATION: none}
                a:link {COLOR: #3A4273; TEXT-DECORATION: none}
                a:hover {COLOR: #3A4273; TEXT-DECORATION: underline}
                .error {COLOR: red; ; FONT-WEIGHT: bold}
                .succ {COLOR: green; ; FONT-WEIGHT: bold}
                body, table, td {COLOR: #3A4273; FONT-FAMILY: Tahoma, Verdana, Arial; FONT-SIZE: 12px; LINE-HEIGHT: 20px; scrollbar-base-color: #E3E3EA; scrollbar-arrow-color: #5C5C8D}
                input {COLOR: #085878; FONT-FAMILY: Tahoma, Verdana, Arial; FONT-SIZE: 12px; background-color: #3A4273; color: #FFFFFF; scrollbar-base-color: #E3E3EA; scrollbar-arrow-color: #5C5C8D}
                .install {FONT-FAMILY: Arial, Verdana; FONT-SIZE: 20px; FONT-WEIGHT: bold; COLOR: #000000}
        </style>
    </head>
    <body bgcolor="#3A4273\" text="#000000">
        <table width="95%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" align="center">
                <tr>
                    <td>
                        <table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
                                <tr><th colspan="4">copy ' . $interval . ' attachments in this run, ' . $remain . ' remain to generate, starting with id '. $last_thumb_id .'</th></tr>
                                <tr>
                                    <th>Status</th><th>Attach_ID</th><th>phpBB internal file name</th><th>generated thumbail</th>
                                </tr>';
}

function dfooter()
{
    global $scriptname, $complete;
    if (!$complete)
    {
        $next_step_link = '<a href="' . $scriptname . '">Click to continue with next step</a>';
    }
    else
    {
        $next_step_link = "<b>Completed</b>";
    }

    return '<tr><td colspan="4" align="center">' . $next_step_link . '</td></tr>
                        </table>
                    </td>
                </tr>
        </table><br>
    </body>
</html>';
}

?>
All my phpBB-work is profit-free. If you like my extensions and want to help me keeping my webpages online, feel free to donate Image

Post Reply