Search Results

Fix WinFX WindowsCodecs.dll problem

bugs, fix, help, image, issue, problem, solution, windows-xp, WindowsCodecs.dll, winfx, word
Some folks are hitting an issue where they cannot view images after installing WinFx on Windows XP. 
Follow these steps:

Good idea is to scan your system with good Antispyware / antivirus software and fix system errors with this tool, as it will save you from many annoying [...]

PHP opcode caches - require_once is slow

php opcode+cache apc xcache eaccelerator mmcache issues require_once
If you got a large OO PHP application, you usually come with many files included using “require_once()”. Different test from different sources shows that using require_once works up to 4 times slower than require. Basically, all known PHP opcode caches suffers from this issue (APC, XCache, ea/mmcache).

There’s patches [...]

Alternative PHP Cache (APC) and __autoload() interoperability

php cache apc autoload
The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. It was conceived of to provide a free, open, and robust framework for caching and optimizing PHP intermediate code.

Many developers writing object-oriented applications create one PHP source file per-class definition. Using __autoload() helps to overcome one of [...]

Flash Player 9 missing sound issue solved

winxp flashplayer9 flash+player sound bug fix youtube video no-sound issue adobe-flash-player nosound flash-nosound You can see alot of posts on adobe flash player forum like
Anything like YouTube, MySpace, that uses Flash to play sound is giving me nothing but sound works for everything else. Uninstalling and reinstalling doesn’t work. Installing an older version doesn’t work. [...]

Serious problems with $_POST array handling in recently released PHP 5.1.3

A critical bug with $_POST array handling as well as the FastCGI sapi have been discovered in PHP 5.1.3. The problem is actually messing data in $_POST:

<form method="post" action="" enctype="multipart/form-data">
<input type="text" name="java[server_1]" value="jboss">
<input type="text" name="java[server_2]" value="tomcat">
<input type="submit"></form>
Returning array:
(
[java] => Array
(
[...]

SQLite Database Browser - nice open source tool running on different platforms

SQLite Database Browser is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite. It is meant to be used for users and developers that want to create databases, edit and search data using a familiar spreadsheet-like interface, without the need to learn complicated SQL [...]