The common symptom of the problem is that Apache web server suddenly fails to load as a service (on windows) or even from command line.共通の症状の問題は、 Apache Webサーバをサービスとして突然の読み込みに失敗する( Windows上で)またはコマンドラインからもします。 The error message from log is as follows:ログのエラーメッセージが表示さからは以下のとおりです:
FATAL: emalloc(): Unable to allocate -2103443420 bytes 致命的な:のemalloc) : -2103443420バイトを割り当てることができません
[Thu Jun 01 23:57:21 2006] [crit] master_main: create child process failed. [木6月1日23時57分21秒2006年] [批評] master_main :子プロセスの作成に失敗しました。 Exiting. 終了します。

In my case the solution was simple.私の場合は、解決策は単純です。 All I had to do was comment out php_exif extension!すべての私はこれを行うには、拡張子をコメントアウトしphp_exif !
; extension=php_exif.dll ;拡張子= php_exif.dll

The single semi-colon made all the difference!セミコロンの1つのすべての違いは!

Explanation: 説明:
php_exif.dll requires php_mbstring.dll extension to be enabled. php_exif.dll必要php_mbstring.dllの拡張子が有効になっています。 Also php_mbstring.dll must be enabled before php_exif.dll. php_exif.dll する前に有効になってもphp_mbstring.dll しなければならない Failure to do so prevents Apache web server from loading on windows.失敗を防ぐこれを行うにはApache WebサーバをWindowsから読み込んでいます。 Unfortunately that is not the default order.残念ながら、デフォルトのオーダーされていない。 In recommended php.ini sample php_exif is loaded earlier resulting in mayhem if you ever decide to enable php_exif. php_exifで推奨されるphp.iniのサンプルが読み込まれるまで以前の結果を決めるメイヘムを有効にする場合にphp_exifです。

Hope that helps.期待して支援します。