Skip to content

rajnesh0409/comrun

Repository files navigation

comrun

we will do, what you want avatar image

====== 1.......

// Force the use of the www subdomain // stopping curl url request // Install info.: // Copy and paste these lines into your default index.php or // the file that get's called if a visitor comes on your // website...

// read the host from the server environment $host = $_SERVER["HTTP_HOST"];

// fix host name - we never now... ;-) $host = strtolower($host); $host = trim($host);

// This is important: // Webbrowsers like Firefox are doing their request without // the port number like "www.jonasjohn.de" but some other // applications send host names like "www.jonasjohn.de:80" $host = str_replace(':80', '', $host); $host = trim($host);

// if the host is not starting with www. redirect the // user to the same URL but with www :-) if ($host != 'www.jonasjohn.de'){ // You an also change the "!=" to "==", if you want to force // the user to use the domain name without the www.

// send status header, so that search engines or other services
// detect that this is a permanent redirect and not a temporary
header('HTTP/1.1 301 Moved Permanently');

// read the URL the user requested:
$url = isset($_SERVER["REQUEST_URI"]) ? $_SERVER["REQUEST_URI"] : '';

// redirect the user to the new destination:
header('Location: http://www.jonasjohn.de' . $url);

// Convert "special" chars -- cause we never now... ;-)
$url = htmlspecialchars($url);

// "fallback" link, if the browser is not supporting header redirects
print '<a href="http://www.jonasjohn.de' . $url.'">Please click here</a>';

// stop the script execution here
exit;

}

// If the domain is www.jonasjohn.de then go on with your PHP code // of with your website...

// BTW: You need to replace jonasjohn.de trough your own domain :-D

2...........

// curl example

apache_request_headers() - to read http header

curl request--

$ch = curl_init(); $m = "monty"; $Url = "http://localhost/postngain/posts/abc/".$m; curl_setopt($ch, CURLOPT_URL, $Url); curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0"); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'secret key: 92111567', 'authorization key: 1434432342342312' ));

  $output = curl_exec($ch);
  curl_close($ch);
  print_r($output);

///////////

3...... promt user about data loss

window.onbeforeunload = confirmExit; function confirmExit() { return "You have attempted to leave this page. If you have made any changes to the fields without clicking the Save button, your changes will be lost. Are you sure you want to exit this page?"; }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published