@sesmatik: see post3, use the following in PhotoPlog's config file:
Code:
define('PHOTOPLOG_FWD','/home/bauforum/public_html/forum');
@chrisisonfire: check out the file_bit, file_list, rate_bit, rate_list templates. While there isn't a layout format option in the lite version, you might find the following bit of code useful. If you move the <tr> </tr> from file_bit to file_list, and use the following after the fetch_template('photoplog_file_bit') line in PhotoPlog's index file, with some editing, you should be able to get a box of thumbs instead of a list.
Code:
if ($photoplog_cnt_bits % 5 == 0)
{
$photoplog_file_bits .= "</tr><tr>";
}
@mvigod: thanks for the suggestion.