How insert code PHP in foot - please help! How insert code PHP in foot - please help!
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

How insert code PHP in foot - please help!

Started by Mike_PL, July 26, 2006, 10:13:39 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Mike_PL

How insert code php:

<?php

ini_set
("include_path",ini_get("include_path").":../:../../:../../../:../../../../"); 
include_once 
"linkuj_inc.php";
$separator=" | ";
echo 
implode($separator,$linki); 

?>


in footer?


Sami

put it under footer.php and copy footer.php to root of your gallery and enable footer on
config=>Themes settings=>Path to custom footer include
‍I don't answer to PM with support question
Please post your issue to related board

Mike_PL

Path to custom footer include


I write: footer.php, but i don't see new footer?

Abbas Ali

Write a plain echo statement in footer.php to test whether it comes or not...


<?php
  
echo "This is custom footer";
?>



If this comes fine then something wrong in your above code. I see that you are including some file in footer.php The path should be relative to the coppermine root folder. Else the include won't work.
Chief Geek at Ranium Systems

Mike_PL

Not work. I don't see text "This is custom footer" in footer...

my gallery: http://www.galeria-gryzonie.info/

Sami

- you already have some link on footer !
- if your issue didn't solved PM me your admin user I'll check it for you
‍I don't answer to PM with support question
Please post your issue to related board

Mike_PL

Ok. A code:

<?php
  
echo "This is custom footer";
?>


its fine. I see it in footer.

but when i'm paste in footer.php code:

<?php

ini_set
("include_path",ini_get("include_path").":../:../../:../../../:../../../../"); 
include_once 
"linkuj_inc.php";
echo 
implode(" ",$linki); 

?>


it's not fine. I don't see not in footer. This code is correct.

Sami

if the code that abbas give you works fine then you have error on your own code!
‍I don't answer to PM with support question
Please post your issue to related board

Mike_PL

But this code its correct ;(

<?php

ini_set
("include_path",ini_get("include_path").":../:../../:../../../:../../../../"); 
include_once 
"linkuj_inc.php";
echo 
implode(" ",$linki); 

?>


When i'm paste then in theme.php it's works fine....

;(

Joachim Müller

What's the first actual code line suppossed to do? It looks silly imo. What does linkuj_inc.php do? Why don't you include it directly?

After all,
Quote from: bmossavari on July 26, 2006, 08:05:15 PM
if the code that abbas give you works fine then you have error on your own code!
is correct, there's nothing more to add.

Abbas Ali

Quote from: Abbas Ali on July 26, 2006, 06:45:06 PM
I see that you are including some file in footer.php The path should be relative to the coppermine root folder. Else the include won't work.
Chief Geek at Ranium Systems

Mike_PL

QuoteWhat's the first actual code line suppossed to do?
I don't now...

QuoteWhat does linkuj_inc.php do?
It's Link Exchange. This code in theme.php like this:

(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fimages1.fotosik.pl%2F118%2Ffc21dc9d4378d59e.gif&hash=574c2f8a429fbf0a8b22920e6f59b3bb697ea312)

but in header It does not look beautiful....

Sami

as abbas suggested:
do you have "linkuj_inc.php" under root of gallery?
‍I don't answer to PM with support question
Please post your issue to related board

Joachim Müller

The strange chars come from differences in encoding. Coppermine uses utf-8 (unicode) out of the box. The script you're trying to include probably is encoded in iso8859-something.
Quite frankly: you're lacking the needed skills to accomplish this - the answer
Quote from: Mike_PL on July 27, 2006, 08:46:11 AMI don't now...
clearly shows this.

Mike_PL

Quotedo you have "linkuj_inc.php" under root of gallery?
Yes....

Case is simple. Code works in theme.php - ( http://www.galeria-gryzonie.info in header) but this code inserted in footer.php doesn't works. Encoding is unimportant.

Sami

if that code works with theme.php then your issue is wrong path on your code
‍I don't answer to PM with support question
Please post your issue to related board

Mike_PL

Where in path on code is wrong? As correct path should look?

Sami

- sorry it's not the path because theme.php will execute under root path
- anyway your header links are comes before head and body tags you should add them after them
‍I don't answer to PM with support question
Please post your issue to related board

Mike_PL

My footer.php like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

<html>

<?php

ini_set
("include_path",ini_get("include_path").":../:../../:../../../:../../../../"); 
include_once 
"linkuj_inc.php";
echo 
implode(" ",$linki); 

?>


<head>


</head>
<body>


but further dont works..

:'( :'( :'(