Version: 1.00, by MPDev
Developer Last Online: Dec 2016
Version: 3.0.7
Rating:
Released: 04-25-2005
Last Update: 04-26-2005
Installs: 71
No support by the author.
The Graffiti Wall is a simple script where people can "paint" text onto a brick wall. You can see an example of the vB3 integration on ExtremeFitness.Com.
I also use an img src with half sized dimensions to preview the wall on my Summary page which can be seen on ViperAlley.Com; this could also be added to your portal pages for greater exposure.
Features
. Fully integrated with vB3 for styles/users
. Admin/Mods can "wipe board"
. Optional logging of paints to log file
This is a very simple mod to install; there is one self contained .php script, a few fonts and a bricks.jpg file to upload.
Requirements
. Your server must have GD2 support (GD1 support may work, but not tested) for PNG files including TTF support.
Be kind and click INSTALL if you use this mod.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Depending on the ftp program, that might be your problem. Some ftp programs don't autodetect properly that the fonts need to be uploaded in binary mode. Try manually forcing binary mode and reuploading. It'll take two seconds and will rule that out as a problem
Depending on the ftp program, that might be your problem. Some ftp programs don't autodetect properly that the fonts need to be uploaded in binary mode. Try manually forcing binary mode and reuploading. It'll take two seconds and will rule that out as a problem
Warning: imagepng(): Unable to open '/home/site/public_html/forums/graffiti.png' for writing in /wall.php on line 125
Warning: Cannot modify header information - headers already sent by (output started at /home/site/public_html/forums/includes/init.php:53) in /wall.php on line 128
I get this error when trying to paint or wipe.
For the record, this error was because the graffiti.png file was not chmodded correctly for writing. all fixed now, thanks!
I just installed it .. it is working fine .. but I am trying to make it accept Arabic characters but with no hope .. I uploaded arabic fonts & changed the font names in the wall.php but still it appears as squares .. Any Help ??
I have also figured out how to have more then one wall. Since I have a number of topic areas on my forums, I wanted to give each topic their own wall.
First take the graffiti.png file and name it something else... I used graffiti2.png.
In wall.php you will find 2 places where wall.php is called. Change it to wall2.php
In wall.php you will find $graffitifile = "$pathto/graffiti.png";
change that to $graffitifile = "$pathto/graffiti2.png";
In wall.php you will find <img src="graffiti.png?<? echo rand(10000,99999); ?>"> change that to <img src="graffiti2.png?<? echo rand(10000,99999); ?>">
Rename wall.php to wall2.php
Upload the files to your server and you should be all set.
Is there any way to make it automatically wipe every 15 minutes or so?
If I or my moderators arent watching it and people are using it, it will fill up quickly and make it where nothing can be read.
Not without running a cronjob - and you'd have to modify the script to not check for can_moderate() (line 81); then you'd call the script with ?adminreset=1 as part of the cron (you could use wget or some other command-line utility).