Dynamic Sig for 2.0.11
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. :(
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. :(
Dynamic Sig for 2.0.11
Can someone post me the dynamic sig script please? Thanks!
Re: Dynamic Sig for 2.0.11
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!"
Re: Dynamic Sig for 2.0.11
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..
Re: Dynamic Sig for 2.0.11
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.
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.
- 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
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.
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!"
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Look, I'm officially not a bug!!
SHS`: "Oooh Bertie, spank me with that casing stick, spank me spank me spaaaaannnnk mee!"
Re: Dynamic Sig for 2.0.11
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?
<img src="http://www.yourhost.com/forum/signature.php">
how would I go about it?
Re: Dynamic Sig for 2.0.11
Code: Select all
[img]http://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!"
-
- Registered User
- Posts: 448
- Joined: Mon Jul 21, 2003 7:18 pm
- Contact:
Re: Dynamic Sig for 2.0.11
phpBB doesn't like that much. What you have to do is do:SolarFX wrote:Code: Select all
[img]http://www.yourhost.com/forum/signature.php[/img]
Code: Select all
[img]http://www.yourhoust.com/forum/signature.php/alskdajf.png[/img]
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>
Re: Dynamic Sig for 2.0.11
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:
to do this:
Code: Select all
[img]http://www.smartprofile.net/stats.png[/img]
Re: Dynamic Sig for 2.0.11
great suggestion just dnL I think that might just work!