GraphicWeb Members: 20   LogIn   We have %s guests online   
GraphicWeb Communications
GraphicWeb Communications
 Network & Information Processing Specialists
"We fix things and do stuff!"
Sunday, 05 September 2010  
 
Home Page Home

Newsflash
What is Joomla?
Image

Joomla! is a Content Management System (CMS) created by the same award-winning team that brought the Mambo CMS to its current state of stardom.

Read more...
 
Microsoft Data Access Components - Disable ADODB.Stream object from Internet Explorer (KB870669)

Adodb.stream provides a method for reading and writing files on a hard drive. This by-design functionality is sometimes used by web applications. However, when combined with known security vulnerabilities in Microsoft Internet Explorer, it could allow an internet web site to execute script from the Local Machine Zone (LMZ). This occurs because the ADODB.Stream object allows access to the hard drive when hosted within Internet Explorer.

Download the patch.

Read more...
 
Run administration on HTTPS Print E-mail
Sunday, 08 January 2006

 Is there an easy way to get th administration to run on secure environment (https)?

Add the following code to your administrator/index.php file ( after define( '_VALID_MOS', 1 ); )

// See if user is connecting via SSL
 if ($_SERVER["SERVER_PORT"] == "443" && $_SERVER['SERVER_NAME'] != "localhost") 
 {
   // reset site config var to SSL equiv
   $mosConfig_live_site = $mosConfig_live_site_SSL;
 }
 
 if ($_SERVER['SERVER_NAME'] != "localhost")
 {
   $host = $_SERVER["HTTP_HOST"];
   $uri = $_SERVER["REQUEST_URI"];
   $port = $_SERVER["SERVER_PORT"];
   $ssl_port = "443";
 
   if ($port != $ssl_port) 
   {
     header("Location: https://$host$uri");
   }
 }
 
Next >
 

Advertisement

Page generated in 0.291 seconds