quick heal anti virus and internet security
Download
http://depositfiles.com/files/c58pdc87f
Consistently at or near the top of independent efficacy testers, Avira's AntiVir remains one of the best freeware security solutions around. Its scans are flexible, allowing the user to fully scan both internal and external hard drives, run a preloaded scan--for rootkits, for example--or customize a scan. The latest version introduces antispyware protections, scanning tech that can crack open "locked" files, improved internal security to prevent AntiVir's files from being maliciously altered, and one-click threat removal--no more baby-sitting.
There are few interface changes in version 9, and older users are not likely notice anything different in the interface besides a refreshed banner logo. The main window offers a left side navigation with drop-down menus and a central pane for more detailed information. AntiVir opens to the Status menu, informing you of your last scan, your last definition file update, whether the real-time guard is active, and premium upgrade link. Events logs changes to the program and the Reports tab keeps a history of threats. Both are exportable.
The Local Protection and Administration navigation options reveal the Scanner, Guard, Quarantine, and Scheduler features. Combined with the Configuration button located at the top of the central pane, users can customize their scans as necessary. Quarantined file information is on display, with options to scan it again, restore, delete, and e-mail the file to Avira. The rebuilt heuristic engine retains the same choices from the previous version's, and can be turned on or off in part or in full and offers three intensity levels. The scheduler offers much that other free antivirus programs don't, and the help features are excellent, with mouse-over information on each feature.
Savvy users will notice the removal of the on-demand e-mail scan, and AntiVir is still challenging to fully uninstall. Despite these hang-ups and the nag screen that follows definition file updates, AntiVir offers such effective protection and a well-rounded set of features that as long as the updates keep coming, it'll be our first line of defense.
Avira AntiVir Personal Free Antivirus is a comprehensive, easy to use antivirus program, designed to offer reliable free of charge virus protection to home-users only. Avira offers: Extensive Malware Recognition of viruses, Trojans, backdoor programs, worms; Automatic incremental updates of antivirus signatures, engine and entire software; Permanent virus protection, with Virus Guard real time monitoring; Install and configuration in just a couple of steps, setup to protect your PC in minutes; Virus protection against known and unknown threats, using an advanced heuristic system; Scheduler where you can set the scanner to make automatic virus scans or updates on your system; Forum and phone support; Knowledge Base with virus descriptions available on web site; Rootkit Detection and Removal; A modularized AV-search engine for improved scan performance.
What's new in this version:
Version 9 introduces a quick-removal button for eliminating viruses with a single click, enhanced anti-spyware and anti-adware engines, and support for low resolution netbook screens.
Download here
QuickTime Player from Apple allows the playback of quicktime movies (.mov) and many other formats:
The new QuickTime Player not only delivers startling quality, but it's easier to use than ever. It requires no set up for content that streams over the network. Instead, QuickTime Player automatically determines your system's connection speed and chooses the highest quality stream for the amount of bandwidth you have available. And if you ever lose a connection while watching streaming video, QuickTime Player automatically reconnects. Now, thats convenience.
- Playback of 3GPP and 3GPP2 files
- Playback of MPEG-4 video, H.274, AAC audio & Instant-On media
- Easy-to-use controls
- Enhanced interface
- Bass and treble controls
- Balance control
- Streaming media support
- Ability to save movie favorites
- Ability to view VR & interactive content
- File Size:30.94M
- License:Freeware
- Released:Sep 12, 2009
- OS Support:Windows XP/2003/Vista/XP64/Vista64
- Plugins:None
- Publisher:Apple Inc
- QuickTime 7.6.4 includes changes that increase reliability, improve compatibility, and enhance security. This release is recommended for all QuickTime 7 users.
What’s in this update?
* Support for iTunes 9
* Improved audio device support on Windows Vista -
- Download here
-
-
Download QuickTime Player from another mirror
MySQL is a multithreaded, multi-user, SQL Database Management System (DBMS).
Features:
* A broad subset of ANSI SQL 99, as well as extensions
* Cross-platform support
* Stored procedures
* Triggers
* Cursors
* updatable Views
* True VARCHAR support
* INFORMATION_SCHEMA
* Strict mode
* X/Open XA distributed transaction processing (DTP) support; two phase commit as part of this, using Oracle's InnoDB engine
* Independent storage engines (MyISAM for read speed, InnoDB for transactions and referential integrity, Archive for storing historical data in little space)
* Transactions with the InnoDB, BDB and Cluster storage engines; savepoints with InnoDB
* SSL support
* Query caching
* Sub-SELECTs (i.e. nested SELECTs)
* Replication with one master per slave, many slaves per master, no automatic support for multiple masters per slave.
* Full-text indexing and searching using MyISAM engine
* Embedded database library
* Full Unicode support
* ACID compliance using the InnoDB, BDB and Cluster engines
* Shared-nothing clustering through MySQL Cluster
- File Size:38.33M
- License:Open Source
- Released:Sep 04, 2009
- OS Support:Windows 9x/2000/XP/2003/Vista
- Plugins:None
- Publisher:MySQL AB
* The InnoDB Plugin is included in MySQL releases, in addition to the built-in version of InnoDB that has been included in previous releases. This version of the InnoDB Plugin is 1.0.4 and is considered of Beta quality.
* Replication: With statement-based logging (SBL), repeatedly calling statements that are unsafe for SBL caused a warning message to be written to the error log for each statement, and there was no way to disable this behavior. Now the server logs messages about statements that are unsafe for statement-based logging only if the log_warnings variable is greater than 0. (Bug#46265)
* The undocumented TRANSACTIONAL and PAGE_CHECKSUM keywords were removed from the grammar. (Bug#45829)
* Previously, SELECT ... INTO OUTFILE dumped column values without character set conversion, which could produce data files that cannot be imported without error if different columns used different character sets. A consequence of this is that mysqldump ignored the --default-character-set option if the --tab option was given (which causes SELECT ... INTO OUTFILE to be used to dump data.)
INTO OUTFILE now can be followed by a CHARACTER SET clause indicating the character set to which dumped values should be converted. Also, mysqldump adds a CHARACTER SET clause to the SELECT ... INTO OUTFILE statement used to dump data, so that --default-character-set is no longer ignored if --tab is given.
Other changes are that SELECT ... INTO OUTFILE enforces that ENCLOSED BY and ESCAPED BY arguments must be a single character, and SELECT ... INTO OUTFILE and LOAD DATA INFILE produce warnings if non-ASCII field or line separators are specified. (Bug#30946)
* The MySQL euckr character set now can store extended codes [81...FE][41..5A,61..7A,81..FE], which makes euckr compatible with the Microsoft cp949 character set.
#Bugs fixed:
* Partitioning: Attempting to create a table using an invalid or inconsistent subpartition definition caused the server to crash. An example of such a statement is shown here:
CREATE TABLE t2 (s1 INT, s2 INT)
PARTITION BY LIST (s1) SUBPARTITION BY HASH (s2) SUBPARTITIONS 1
(
PARTITION p1 VALUES IN (1),
PARTITION p2 VALUES IN (2) (SUBPARTITION p3)
);
(Bug#46354)
* Partitioning: When using a debug build of MySQL, if a query against a partitioned table having an index on one or more DOUBLE columns used that index, the server failed with an assertion. (Bug#45816)
* Partitioning: A failed RENAME TABLE operation on a table with user-defined partitioning left the table in an unusable state, due to only some of the table files having been renamed. (Bug#30102)
* Replication: When a statement that changes a non-transactional table failed, the transactional cache was flushed, causing a mismatch between the execution and logging histories. Now we avoid flushing the transactional cache unless a COMMIT or ROLLBACK is issued. (Bug#46129)
* Replication: The internal function get_master_version_and_clock() (defined in sql/slave.cc) ignored errors and passed directly when queries failed, or when queries succeeded but the result retrieved was empty. Now this function tries to reconnect the master if a query fails due to transient network problems, and to fail otherwise. The I/O thread now prints a warning if the some system variables do not exist on master (in the event the master is a very old version of MySQQL, compared to the slave.) (Bug#45214)
* Replication: When using the MIXED logging format, after creating a temporary table and performing an update that switched the logging format to ROW, the format switch persisted following the update. This prevented any subsequent DDL statements on temporary tables from being written to the binary log until the temporary table was dropped. (Bug#43046) See also Bug#40013.
This regression was introduced by Bug#20499.
* Replication: If the --log-bin-trust-function-creators option is not enabled, CREATE FUNCTION requires one of the modifiers DETERMINISTIC, NO SQL, or READS SQL DATA. When using statement-based mode, the execution of a stored function should follow the same rules; however, only functions defined with DETERMINSTIC could actually be executed. In addition, the wrong error was generated (ER_BINLOG_ROW_RBR_TO_SBR instead of ER_BINLOG_UNSAFE_ROUTINE).
Now execution of stored functions is compatible with creation in this regard; when a stored function without one of the modifiers above is executed in STATEMENT mode, the correct error is raised, and functions defined using NO SQL, READS SQL DATA, or both (that is, without using DETERMINSTIC) can be excuted. (Bug#41166)
* The test suite was missing from RPM packages. (Bug#46834)
* Incorrect index optimization could lead to incorrect results or server crashes. (Bug#46454)
* The server printed warnings at startup about adjusting the value of the max_join_size system variable. (These were harmless, but might be seen by users as significant.) (Bug#46385)
* After an error such as a table-full condition, INSERT IGNORE could cause an assertion failure for debug builds. (Bug#46075)
* An optimization that moved an item from a subquery to an outer query could cause a server crash. (Bug#46051)
* Several Valgrind warnings were corrected. (Bug#46003, Bug#46034, Bug#46042)
* CREATE TABLE ... SELECT could cause a server crash if no default database was selected. (Bug#45998)
* For problems reading SSL files during SSL initialization, the server wrote error messages to stderr rather than to the error log. (Bug#45770)
* The vendor name change from MySQL AB to Sun Microsystems, Inc. in RPM packages was not handled gracefully when upgrading MySQL using an RPM package. (Bug#45534)
* A Windows Installation using the GUI installer would fail with:
MySQL Server 5.1 Setup Wizard ended prematurely
The wizard was interrupted before MySQL Server 5.1. could be completely installed. Your system has not been modified. To complete installation at another time, please run setup again. Click Finish to exit the wizard. This was due to an step in the MSI installer that could fail to execute correctly on some environments. (Bug#45418)
* Invalid memory reads could occur using the compressed client/server protocol. (Bug#45031)
* The mysql_real_connect() C API function only attempted to connect to the first IP address returned for a hostname. This could be a problem if a hostname mapped to multiple IP address and the server was not bound to the first one returned. Now mysql_real_connect() attempts to connect to all IPv4/6 addresses that a domain name maps to. (Bug#45017)
* Invalid input could cause invalid memory reads by the parser. (Bug#45010)
* Some files in an AIX tar file distribution unpacked with incorrect permissions. (Bug#44647)
* For debug builds, executing a stored procedure as a prepared statement could sometimes cause an assertion failure. (Bug#44521)
* Using mysql_stmt_execute() to call a stored procedure could cause a server crash. (Bug#44495)
* Creating a new instance after previously removing an instance would fail to complete the installation properly because the security settings could not be applied correctly. (Bug#44428)
* mysqlslap ignored the --csv option if it was given without an argument. (Bug#44412)
* Enabling the event scheduler from within the file specified by --init-file caused a server crash. (Bug#43587)
* The server did not always check the return value of calls to the hash_init() function. (Bug#43572)
* The table cache lock (LOCK_open) is now an adaptive mutex, which should improve performance in workloads where this lock is heavily contended. (Bug#43435)
* mysqladmin --count=X --sleep=Y incorrectly delayed Y seconds after the last iteration before exiting. (Bug#42639)
* A test for stack growth failed on some platforms, leading to server crashes. (Bug#42213)
* mysqladmin did not have enough space allocated for tracking all variables when using --vertical or --relative with extended-status. (Bug#40395)
* Partitioning a log table caused a server crash. (Bug#40281)
* When using quick access methods to search for rows in UPDATE and DELETE statements, there was no check whether a fatal error had already been sent to the client while evaluating the quick condition. Consequently, a false OK (following the error) was sent to the client, causing the error to be incorrectly transformed into a warning. (Bug#40113)
* SHOW PROCESSLIST could access freed memory of a stored procedure run in a concurrent session. (Bug#38816)
* During installation on Windows, the MySQL Instance Configuration Wizard window could be opened at a size too small to be usable. (Bug#38723)
* make_binary_distribution did not always generate correct distribution names. (Bug#37808)
* The server crashed when executing a prepared statement containing a duplicated MATCH() function call in the select list and ORDER BY clause; for example, SELECT MATCH(a) AGAINST('test') FROM t1 ORDER BY MATCH(a) AGAINST('test'). (Bug#37740)
* The output of mysqldump --tab for views included a DROP TABLE statement without the IF EXISTS qualifier. (Bug#37377)
* mysql_upgrade silently ignored the --basedir and --datadir options, which it accepts for backward compatibility. Now it prints a warning. (Bug#36558)
* mysqlimport was not always compiled correctly to enable thread support, which is required for the --use-threads option. (Bug#32991)
* mysqlcheck failed to fix table names when the --fix-table-names and --all-in-1 options were both specified. (Bug#31821)
* If the MySQL server was killed without the PID file being removed, attempts to stop the server with mysql.server stop waited 900 seconds before giving up. (Bug#31785)
* When performing an installation on Windows using the GUI installer, the installer would fail to wait long enough during installation for the MySQL service to be installed, which would cause the installation to fail and may cause security settings, such as the root password to not be applied correctly. (Bug#30525)
* mysql included extra spaces at the end of some result set lines. (Bug#29622)
* The mysql client inconsistently handled NUL bytes in column data in various output formats. (Bug#28203)
* mysqlimport did not correctly quote and escape table identifiers and file names. (Bug#28071)
* When installing the Windows service, using quotes around command-line configuration parameters could cause the quotes to incorrectly placed around the entire command-line option, and not just the value. (Bug#27535)
* If the mysql client was built with the readline library and the .inputrc file mapped Space to the magic-space function, it became impossible to enter spaces. (Bug#27439)
* If InnoDB reached its limit on the number of concurrent transactions (1023), it wrote a descriptive message to the error log but returned a misleading error message to the client, or an assertion failure occurred. (Bug#18828)
Download here
Download MySQL from another mirror
Digsby, IM, email and Social networks in one easy to use application.
Instant Messaging - digsby is a multiprotocol IM client that lets you chat with all your friends on AIM, MSN, Yahoo, ICQ, Google Talk, and Jabber with one simple to manage buddy list.
Email Notifications - digsby is an email notification tool that alerts you of new email and lets you perform actions such as 'Delete' or 'Report Spam' with just one click.
Social Networking - digsby is a social networking tool that alerts you of events like new messages and gives you a live Newsfeed of what your friends are up to.
Version 38 onwards is a stub installer that includes numerous toolbars etc., we recommend you do not install these.
- File Size:3.94M
- License:Freeware
- Released:Aug 27, 2009
- OS Support:Windows XP/2003/Vista
- Plugins:Unknown
- Publisher:dotSyntax
* Fixed a bug that caused Digsby to not show the Facebook Chat buddy list due to a protocol change
* Fixed a bug that caused Digsby to not log in to LinkedIn due to a protocol change
Download here
Download Digsby from Another mirror
Introducing MailWasher, a leader in anti spam software, the easiest way to check and manage your e-mails before you download them.
MailWasher is free to use and won't ever expire.
Use this powerful anti spam software, a reliable spam blocker, that will effectively stop email spam. Discover the safe way to stop unwanted e-mails before they get to your computer.
No gimmicks here, it is so easy to set up and use that you'll be managing your email like a pro in seconds. It can even be used as an effective privacy tool.
- Delete unwanted e-mails before you download the whole message.
- Blacklist any e-mails you bounce back get their senders details put on the blacklist for easy removal if they come back.
- Add your friends email addresses to MailWasher and they will always be recognised. You can even hide your friends from the screen so the spam is easy to recognise.
- Easily preview the message in your email to see what the sender has to say before downloading it. Just double click on the message.
- Bounce back unwanted e-mails so it looks as if your email address is not valid.
- File Size:8.66M
- License:Freeware
- Released:Jun 20, 2009
- OS Support:Windows 9x/2000/XP/2003/XP64
- Plugins:None
- Publisher:MailWasher
Download MailWasher from another mirror
CometBird is a lightweight, powerful, fast web browser.
It uses less resources of your pc to display web pages faster and has lots of features, including anti-virus software integration, pop-up blocker, private data clearing function, Integrated web search, Smart Location Bar… etc. Also, you can customize the look&feel of the browser and integrate different add-ons into your browser to make it your style.
Stop talking about it, just try it yourself!
- File Size :7.83M
- License:Open Source
- Released:Aug 07, 2009
- Downloads:19401 (All versions: 115849)
- OS Support:Windows 2000/XP/NT/Vista
- Plugins:None
Download CometBird from AppHit.com
A full-featured Internet browser, Opera includes pop-up blocking, tabbed browsing, integrated searches, and advanced functions like Opera's groundbreaking E-mail program, RSS Newsfeeds and IRC chat. And because we know that our users have different needs, you can customize the look and content of your Opera browser with a few clicks of the mouse.
- Speed Dial: Your favorite sites are just one click away at all times.
- Search Shortcuts: Faster search – type your queries directly into the address bar.
- Trash Can: Instantly reopen recently closed tabs.
- Speed Dial: Get your favorite Web page with just one click.
- Mouse Gestures: With Opera you can navigate the Web with your mouse.
- Opera Link: Synchronize data of your choice online, or among different computers and devices.
- Quick Find: Opera remembers not only the titles and addresses, but also the actual content of the Web pages you visit.
- Feed Preview: Preview a Feed by clicking on the feed icon, and you will see it in clean and efficient multiple-column layout.
- Quick and customizable Web search: Get quick access to Google, eBay, Amazon and more with the search field in the upper right corner.
Internet Explorer is the world's most popular Web browser. Security, ease of use, and improvements in RSS, CSS, and Ajax support are Microsoft's priorities for Internet Explorer. This version of IE runs on Windows XP.
The latest version of the browser includes support for:
- Accelerators - which allow supported web applications to be invoked without explicitly navigating to them.
- WebSlices - which allows portions of page to be subscribed to and monitored from a redesigned Favorites Bar.
- InPrivate privacy features.
- SmartScreen phishing filter.
Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. Google Chrome combines a minimal design with sophisticated technology to make the web faster, safer, and easier.
One box for everything
Type in the address bar and get suggestions for both search and web pages.
Thumbnails of your top sites
Access your favorite pages instantly with lightning speed from any new tab.
Incognito mode
Don't want pages you visit to show up in your web history? Choose incognito mode for private browsing.
Safe browsing
Google Chrome warns you if you're about to visit a suspected phishing, malware or otherwise unsafe website.
The Web is all about innovation, and Firefox sets the pace with dozens of new features to deliver a faster, more secure and customizable Web browsing experience for all.
User Experience. The enhancements to Firefox provide the best possible browsing experience on the Web. The new Firefox smart location bar, affectionately known as the "Awesome Bar," learns as people use it, adapting to user preferences and offering better fitting matches over time.
Performance. Firefox is built on top of the powerful new Gecko platform, resulting in a safer, easier to use and more personal product.
Security. Firefox raises the bar for security. The new malware and phishing protection helps protect from viruses, worms, trojans and spyware to keep people safe on the Web.
Customization. Everyone uses the Web differently, and Firefox lets users customize their browser with more than 5,000 add-ons.