Dynamic Sig for 2.0.11

Want to chit chat about anything, do it here ... posting here won't increase your post count (or shouldn't!). Please do not post any "phpBB" specific topics here unless they do not fit into the category above. Do not post bug reports, feature or support requests!
Forum rules
Please do not post any "phpBB" specific topics here unless they do not fit into the category above.

Do not post bug reports, feature or support requests! No really... Do not post bug reports, feature or support requests! Doing so will make Bertie a very sad bear indeed. :(
Post Reply
skyy04
Registered User
Posts: 18
Joined: Wed Feb 09, 2005 11:19 pm

Dynamic Sig for 2.0.11

Post by skyy04 »

Can someone post me the dynamic sig script please? Thanks!

User avatar
SolarFX
Registered User
Posts: 136
Joined: Sat Sep 25, 2004 3:21 am

Re: Dynamic Sig for 2.0.11

Post by SolarFX »

Hi,

are you looking for something like this?
Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well-preserved body, but rather to skid in sideways, margarita in one hand - chocolate in the other, body thoroughly used up, totally worn out and screaming "WOO HOO! - What a Ride!"

skyy04
Registered User
Posts: 18
Joined: Wed Feb 09, 2005 11:19 pm

Re: Dynamic Sig for 2.0.11

Post by skyy04 »

no im looking one that has more to do with stats for example, forum users last member that joined etc, I have seen it somewhere before..

Dunvallo
Registered User
Posts: 64
Joined: Fri Nov 19, 2004 5:55 pm

Re: Dynamic Sig for 2.0.11

Post by Dunvallo »

Please describe clearly what you want, or nobody will be able to help you.

1. Where is this "dynamic sig script" supposed to run? Is it to be placed within the phpBB code or is it to be run independendly and linked to from a sig?

2. What _exactly_ is it supposed to do? If you want to display forum stats, then you have to modify phpBB itself. So you need a mod.

User avatar
Lastof
Registered User
Posts: 518
Joined: Wed Mar 17, 2004 8:10 pm
Location: Two weeks last wednesday

Re: Dynamic Sig for 2.0.11

Post by Lastof »

If I understand correctly, he wants a sig that displays the stats for his forum in it live.

Someone did do this on this board before, using php image drawing functions to draw a picture with post count etc in it, and linked to said image in their sig.

It was disscussed on this forum, so, if the search feature was up, it's be easy to find, but since it isn't, well.

If the original poster knows php, I suggest he looks up how to generate images using it on php.net, it's in the manual under image functions I think.
Last edited by Lastof on 04 May 2008, 00:00, edited -1 times in total
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Look, I'm officially not a bug!!
SHS`: "Oooh Bertie, spank me with that casing stick, spank me spank me spaaaaannnnk mee!"
Image

skyy04
Registered User
Posts: 18
Joined: Wed Feb 09, 2005 11:19 pm

Re: Dynamic Sig for 2.0.11

Post by skyy04 »

ok I got my signature but since I can not do this

<img src="http://www.yourhost.com/forum/signature.php">

how would I go about it?

User avatar
SolarFX
Registered User
Posts: 136
Joined: Sat Sep 25, 2004 3:21 am

Re: Dynamic Sig for 2.0.11

Post by SolarFX »

Code: Select all

[img]http&#58//www.yourhost.com/forum/signature.php[/img]
:)
Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well-preserved body, but rather to skid in sideways, margarita in one hand - chocolate in the other, body thoroughly used up, totally worn out and screaming "WOO HOO! - What a Ride!"

DeadEye686
Registered User
Posts: 448
Joined: Mon Jul 21, 2003 7:18 pm
Contact:

Re: Dynamic Sig for 2.0.11

Post by DeadEye686 »

SolarFX wrote:

Code: Select all

[img]http&#58//www.yourhost.com/forum/signature.php[/img]
:)
phpBB doesn't like that much. What you have to do is do:

Code: Select all

[img]http&#58//www.yourhoust.com/forum/signature.php/alskdajf.png[/img]
(the random ending you provide should end in the image type that you are generating in your script)

if apache tells you that the file could not be found when you try to access this, add this to an .htaccess file in the directory:

Code: Select all

<Files "*.php">
  AcceptPathInfo On
</Files>
This does appear to be fixed in 2.1, however.

just dnL
Registered User
Posts: 17
Joined: Tue Apr 13, 2004 12:21 pm

Re: Dynamic Sig for 2.0.11

Post by just dnL »

Or, if you have cPanel, you can use it to set up a redirect. For example, I set up all requests for stats.png to be forwarded for signature.php, so i can use this:

Code: Select all

[img]http&#58//www.smartprofile.net/stats.png[/img]
to do this:
Image

skyy04
Registered User
Posts: 18
Joined: Wed Feb 09, 2005 11:19 pm

Re: Dynamic Sig for 2.0.11

Post by skyy04 »

great suggestion just dnL I think that might just work!

Post Reply