How To Get SMF 2.0.6 to Open in a New Frame

Author: , October 23rd, 2013

The latest patch version of the SMF forum, 2.0.6, now prevents the site from opening up in an HTML frame. Simply comment out line 104 inside index.php: The Problem: $ grep -Rni X-Frame-Options * index.php:104: header(‘X-Frame-Options: SAMEORIGIN’); The Solution: //header(‘X-Frame-Options: SAMEORIGIN’);

How to do Web Redirects in HTML, PHP and PERL CGI

Author: , 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> […]

Groovy

Author: , November 9th, 2009

So I have caught up on social matters via text and Facebook this morning. Have gotten the CHS/Rapida project underway – a promising beginning. Must do plans and emails… Did the shutdown page for a client today – made sure to do index.html, index.php and cgi-bin/index.cgi. Still looks good, just no guts anymore. Spoke to […]