Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not Solved Not sure if theres a mod
#1
Not Solved
Is there a mod to make your logo change on every refresh?

Look at my site www.totalfootballforums.co.uk/forum

I would like the player to change on every refresh. Is this possible.

It isn't the logo, its the header_bg that its under.
#2
Not Solved
You can make a PHP script that can do so. Google it Smile
-Paul H.

Cogisne lingua latina?
#3
Not Solved
http://mybbsource.com/thread-3808.html
#4
Not Solved
(2012-01-19, 04:07 AM)Yaldaram Wrote: http://mybbsource.com/thread-3808.html

There's an app –— err mod — for that!
PGP Key (Fingerprint: 23B6 F4C0 FE2D 45AA 61A0 1E86 DB87 09DC DD87 6E40)
#5
Not Solved
How do i do this then?
#6
Not Solved
Here a tut that doesn't use core file edits:

Use this and name it say, logo.php:

<?php
$img = array();
$img[] = "logo1.png";
$img[] = "logo2.png";
$img[] = "logo3.png";
$img[] = "logo4.png";
$img[] = "logo5.png";

$rand = array_rand($img, 1);
header("Location: {$img[$rand[0]]}");
?>

Then point your header image to logo.php

That should work.
-Paul H.

Cogisne lingua latina?
#7
Not Solved
The $input should be $img.
#8
Not Solved
Oops Toungue fixed
-Paul H.

Cogisne lingua latina?
#9
Not Solved
It's not the logo, it's the header that its on.

Just change them to header?
#10
Not Solved
Replace these

$img[] = "logo1.png";

with whatever the images are you want to show up, e.g.

$img[] = "inigo_montoya.png";

and then point the header image to the php file.
-Paul H.

Cogisne lingua latina?


Forum Jump:


Users browsing this thread: 1 Guest(s)