Dear folk ,
I'm work with PHP speedy Plugin which makes my webpage loads 500% faster
http://aciddrop.com/php-speedy/
, the configuration of the php speedy is ok , but when I add
<?php require('C:/wamp/www//php_speedy/php_speedy.php'); ?>
af the top of the page
and then
<?php
$compressor->finish();
?>
at the bottom of the page , it doesn't show the page ...
has anyone worked with php speedy before
thanks

Recommended Answers

All 2 Replies

Dear folk ,
I'm work with PHP speedy Plugin which makes my webpage loads 500% faster
http://aciddrop.com/php-speedy/
, the configuration of the php speedy is ok , but when I add
<?php require('C:/wamp/www//php_speedy/php_speedy.php'); ?>
af the top of the page
and then
<?php
$compressor->finish();
?>
at the bottom of the page , it doesn't show the page ...
has anyone worked with php speedy before
thanks

Make sure you have display of errors einabled in php.

ini_set('error_reporting', E_ALL);
ini_set('display_errors', '1');

Place that before anything else.

Also try turning off all the PHP speedy features in the configuration, then start enabling them one by one.
ie: turn off gzip, minify etc.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.