Facelift Image Replacment is a script that generates image representations of text on your web page in fonts that visitors would not be able to see.
wp-content/plugins/facelift-image-replacement/facelift/cache and that it is writable. (chmod a+w /cache)wp-content/plugins/facelift-image-replacement/facelift/config-flir.php and that it is writable. (chmod a+w config-flir.php)wp-content/plugins/facelift-image-replacement/facelift/ is readablefooter.php file and make sure it has the wp_footer(); function in it. It should be located just above the </body> element close tag.header.php file and make sure it has the wp_head(); function in it. It should be located just above the </head> element close tag.FLIR 2.0b3 has a minor issue where the text will overlap if line-height isn't specified in your CSS file for that particular style. Adding line-height equal to the font size should correct that. For example
a.pagetitle{
font-weight:bold;
font-size:24px;
display:block;
}
Can be updated like so to add line-height:
a.pagetitle{
font-weight:bold;
font-size:24px;
line-height:24px;
display:block;
}
FLIR is almost completely configurable from the admin panel. Eventually it is planned to be able to configure FLIR almost completely from the admin panel. At present to configure how and what fonts are used with flir and certain element to be replaced by FLIR.
At present the FancyFonts plugin is implemented. QuickEffects will be implemented next. They require ImageMagick 6.3.7 or higher to function correctly and will be configurable from the admin panel.
All the fonts that come with FLIR are either free or Open Source.
Facelift caches all images it generates to disk. It then will send appropriate headers to the browser if the image has not changed. This allows for drastic speed increases in rendering when browsing a website. After a couple of page views you sometimes won't even notice the text get replaced. By default, the cached images are saved indefinitely, but you can change facelift to run through the cache every so often and remove old images to save disk space. Just change the settings in the admin panel.
You can further improve the speed of both FLIR and WordPress in general by using a PHP accelerator which is an extension designed to boost the performance of software applications written using the PHP programming language. An example of such and accelerator is Alternative PHP Cache (APC). For information on installing see http://www.23systems.net/2009/07/24/installing-alterative-php-cache-apc-with-plesk-on-ubuntu/
Requires: 2.8 or higher
Compatible up to: 2.9.2
Last Updated: 2010-4-26
Downloads: 18,337




