Theme question Theme question
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

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.