April 21, 2012
Good news for wordpress lovers. New version of wordpress is now available that is 3.3.2 and can be downloaded from Download WordPress.
Following files have been revised.
wp-comments-post.php
wp-includes/version.php
wp-includes/js/swfobject.js
wp-includes/js/plupload/plupload.html4.js
wp-includes/js/plupload/plupload.silverlight.xap
wp-includes/js/plupload/plupload.html5.js
wp-includes/js/plupload/changelog.txt
wp-includes/js/plupload/plupload.silverlight.js
wp-includes/js/plupload/plupload.flash.js
wp-includes/js/plupload/handlers.dev.js
wp-includes/js/plupload/plupload.flash.swf
wp-includes/js/plupload/plupload.js
wp-includes/js/swfupload/swfupload.swf
wp-includes/wp-db.php
wp-includes/formatting.php
wp-includes/capabilities.php
wp-includes/kses.php
wp-includes/script-loader.php
wp-includes/ms-functions.php
readme.html
wp-admin/about.php
wp-admin/includes/update-core.php
wp-admin/plugins.php
wp-admin/press-this.php
wp-admin/setup-config.php
For full review of this change can be found here.
Posted in CMS, General
1 Comment »
Tags: wordpress
June 21, 2011
Download Firefox 5
Finally Firefox 5 has been released. The latest version of Firefox has the following changes:
- Added support for CSS animations
- The Do-Not-Track header preference has been moved to increase discoverability
- Tuned HTTP idle connection logic for increased performance
- Improved canvas, JavaScript, memory, and networking performance
- Improved standards support for HTML5, XHR, MathML, SMIL, and canvas
- Improved spell checking for some locales
- Improved desktop environment integration for Linux users
- WebGL content can no longer load cross-domain textures
- Background tabs have setTimeout and setInterval clamped to 1000ms to improve performance
- Fixed several stability issues
- Fixed several security issues
Download Firefox 5
Posted in General
1 Comment »
Tags: Browser
March 2, 2011
Are you looking for php script that help you to monitor your server or website? I’ve written one simple script in php that can help you to monitor your website status.
<%
$servers = array("saqib-ansari.com", "google.com", "yahoo.com", "8.8.8.8");
$port = '80';
foreach ( $servers as $host )
{
$status = fsockopen( $host, $port, $errno, $errstr, 6 );
echo "Host $host is ";
if ( !$check )
echo "DOWN! \n";
else
echo "UP! \n";
}
%>
You can enhance this script as per your requirement.
Happy Server Monitor
More Free Webmaster Scripts
Posted in Programming, Tips & Tricks
No Comments »
Tags: PHP, Script, Server, tools
Recent Comments