Skip to content

Instantly share code, notes, and snippets.

@muhqu
Created May 24, 2012 11:42
Show Gist options
  • Select an option

  • Save muhqu/2780967 to your computer and use it in GitHub Desktop.

Select an option

Save muhqu/2780967 to your computer and use it in GitHub Desktop.
diff --git a/php.ini b/php.ini
index 4572cf5..ed076ab 100644
--- a/php.ini
+++ b/php.ini
@@ -455,7 +455,7 @@ max_input_time = 60
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
-memory_limit = 128M
+memory_limit = 512M
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
@@ -528,7 +528,7 @@ error_reporting = E_ALL & ~E_NOTICE
; Development Value: On
; Production Value: Off
; http://php.net/display-errors
-display_errors = Off
+display_errors = On
; The display of errors which occur during PHP's startup sequence are handled
; separately from display_errors. PHP's default behavior is to suppress those
@@ -635,7 +635,7 @@ html_errors = Off
; Example:
;error_log = php_errors.log
; Log errors to syslog (Event Log on NT, not valid in Windows 95).
-;error_log = syslog
+error_log = syslog
;;;;;;;;;;;;;;;;;
; Data Handling ;
@@ -994,6 +994,15 @@ extension=memcache.so
extension=memcached.so
extension=http.so
;extension=zmq.so
+zend_extension=/Users/mleppich/code/projects/tadaa-box/local/php5/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so
+
+[xdebug]
+xdebug.remote_enable=1
+xdebug.remote_host=”localhost”
+xdebug.remote_port=9000
+xdebug.show_local_vars=On
+xdebug.var_display_max_data=10000
+xdebug.var_display_max_depth=20
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment