Issues After Voting. It'll Take Ages For My Page To Load After

Ecko1223

Member
Feb 28, 2013
344
43
I use this php, and set my retrolist account to novote etc. But when they go to the me page and vote, it'll take ages for the page to load after they voted.

<?php
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP']; }

if (!isset($_GET['novote']) && $_GET['url'] != 'register') {
$context = stream_context_create(array('https' => array('timeout' => 0.5)));
$data = file_get_contents(' ' . $_SERVER['REMOTE_ADDR'], 0, $context);
if($data == 3) {
header("Location: ");
exit;
}
}
?>
 

Users who are viewing this thread

Top