forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: versus7 on March 14, 2005, 12:17:08 pm

Title: theme do not show ..
Post by: versus7 on March 14, 2005, 12:17:08 pm
hi first i musts say what happens

i tryed to install com_coppermine to mambo to feet coppermine in my site

i replaced the following line in include/functions.inc.php

Code: [Select]
$template = fread(fopen($template_file, 'r'), filesize($template_file));
with this

Code: [Select]
//$template = fread(fopen($template_file, 'r'), filesize($template_file));
ob_start();                     // Start output buffering
include ($template_file);       // Parsed file goes to buffer
$template = ob_get_contents();  // Assign buffer to $template
ob_end_clean();                 // Clear buffer and turn off output buffering


after i uploaded the special theme for this job

all that don't worked

although i replaced the code again to original

after i uninstalled the com_coppermine, delete the special theme and last i selected my theme back ...

and now look this problem

http://www.oixalia.gr/gallery/index.php

can anyone tell me why my theme (and all themes) do not show ????


 
Title: Re: theme do not show ..
Post by: Joachim Müller on March 14, 2005, 07:04:43 pm
obviously you haven't undone your modifications completely (which were bound to fail, as coppermine uses a theme engine of it's own, you can't "trick" it that easily). Get a fresh copy of the coppermine files and overwrite those on your server with the frash copy and you should be fine - it's impossible to tell where exactly you have messed up.

Joachim