Author:
erics, June 12th, 2024
First, enable Developer mode via the Safari menu -> Settings… -> Advanced Tab Then, disable Cross-Origin Restrictions on the Developer Tab Finally, be sure to refresh the page you are having issues with. As always, YMMV!
Categories: How-To's, Technology Tags: apple, Browser, howto, MacOS, refresh, Safari, tips, ZenDesk
|
No comments
Author:
erics, September 6th, 2012
location.reload(); ~or~ window.location = window.location.pathname;
Categories: How-To's, Technology Tags: howto, JQuery, Location, refresh, Reload, tips
|
No comments
Author:
erics, November 9th, 2009
For PHP: [sourcecode language=”php”] <?php header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.wyzaerd.com/index.html"); exit(); ?> [/sourcecode] For PERL: The fast way: [sourcecode language=”perl”] #!/usr/bin/perl -Tw $|=1; use CGI; my $cgi_object = new CGI; my $new_page_url = qq~http://www.wyzaerd.com/index.html~; print $cgi_object->header(-expires=>"now",’Location’ => $new_page_url,); exit 0; [/sourcecode] OR The slow way: [sourcecode language=”perl”] #!/usr/bin/perl -Tw $|=1; print qq#Content-Type: text/html; charset=ISO-8859-1\n\n<html> […]
Categories: How-To's, Technology Tags: html, index.cgi, index.html, index.php, meta, perl, php, redirect, refresh
|
No comments