Theme question Theme question
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Theme question

Started by Maarika, June 28, 2006, 07:08:41 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Maarika

Hello! I've installed Coppermine on my site and it's located in the same folder as my site's PHP files.
So now what I want to do is, to integrate those PHP files to Coppermine's template. How is that done? I don't know how to code PHP.
Copying the code from template.html and using it in my php files doesn't work obviously. >.<
Thank you if anyone can help.

Nibbler

Put your code in a skeleton file, like this


<?php

define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');

pageheader('Your title');

/* insert php code here */

pagefooter();

?>


Maarika

Thank you very much for the quick reply.
I was trying out different includes and requires but none of them worked.

Thanks again! It's working now.