added new cachemanager perm options, deprecated umask options, added … · feibeck/application.ini@7d4bb58 · GitHub | Latest TMZ Celebrity News & Gossip | Watch TMZ Live
Skip to content

Commit 7d4bb58

Browse files
committed
added new cachemanager perm options, deprecated umask options, added equal signs where missing
1 parent a3cf29e commit 7d4bb58

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

application.ini

100644100755
Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
;
143143
; resources.cachemanager.<NAME>.frontend.name = File
144144
; resources.cachemanager.<NAME>.frontend.options.master_files[] = "path/to/file"
145-
; resources.cachemanager.<NAME>.frontend.options.master_files_mode
145+
; resources.cachemanager.<NAME>.frontend.options.master_files_mode = "OR" ; Zend_Cache_Frontend_File::MODE_OR"
146146
; resources.cachemanager.<NAME>.frontend.options.ignore_missing_master_files = false
147147
;
148148
; Zend_Cache_Frontend_Page
@@ -151,7 +151,7 @@
151151
;
152152
; resources.cachemanager.<NAME>.frontend.name = Page
153153
; resources.cachemanager.<NAME>.frontend.options.http_conditional = false
154-
; resources.cachemanager.<NAME>.frontend.options.debug_header false
154+
; resources.cachemanager.<NAME>.frontend.options.debug_header = false
155155
; resources.cachemanager.<NAME>.frontend.options.default_options.cache = true
156156
; resources.cachemanager.<NAME>.frontend.options.default_options.cache_with_get_variables = false
157157
; resources.cachemanager.<NAME>.frontend.options.default_options.cache_with_post_variables = false
@@ -178,22 +178,24 @@
178178
; http://framework.zend.com/manual/en/zend.cache.backends.html#zend.cache.backends.file
179179
;
180180
; resources.cachemanager.<NAME>.backend.name = File
181-
; resources.cachemanager.<NAME>.backend.options.cache_dir "/tmp/"
181+
; resources.cachemanager.<NAME>.backend.options.cache_dir = "/tmp/"
182182
; resources.cachemanager.<NAME>.backend.options.file_locking = true
183183
; resources.cachemanager.<NAME>.backend.options.read_control = true
184184
; resources.cachemanager.<NAME>.backend.options.read_control_type = 'crc32'
185185
; resources.cachemanager.<NAME>.backend.options.hashed_directory_level = 0
186-
; resources.cachemanager.<NAME>.backend.options.hashed_directory_umask = 0700
186+
; resources.cachemanager.<NAME>.backend.options.hashed_directory_perm = 0700
187+
; ;resources.cachemanager.<NAME>.backend.options.hashed_directory_umask = 0700 ; deprecated
187188
; resources.cachemanager.<NAME>.backend.options.file_name_prefix = 'zend_cache'
188-
; resources.cachemanager.<NAME>.backend.options.cache_file_umask = 0700
189+
; resources.cachemanager.<NAME>.backend.options.cache_file_perm = 0600
190+
; ;resources.cachemanager.<NAME>.backend.options.cache_file_umask = 0700 ; deprecated
189191
; resources.cachemanager.<NAME>.backend.options.metatadatas_array_max_size = 100
190192
;
191193
; Zend_Cache_Backend_Sqlite
192194
;
193195
; http://framework.zend.com/manual/en/zend.cache.backends.html#zend.cache.backends.sqlite
194196
;
195197
; resources.cachemanager.<NAME>.backend.name = Sqlite
196-
; resources.cachemanager.<NAME>.backend.options.cache_db_complete_path "/path/to/database.sqlite" REQUIRED!
198+
; resources.cachemanager.<NAME>.backend.options.cache_db_complete_path = "/path/to/database.sqlite" ;REQUIRED!
197199
; resources.cachemanager.<NAME>.backend.options.automatic_vacuum_factor = 10
198200
;
199201
; Zend_Cache_Backend_Memcached
@@ -485,10 +487,10 @@
485487
; resources.mail.transport.type = "smtp"
486488
; resources.mail.transport.host = <HOST> ; REQUIRED!
487489
; resources.mail.transport.name = <NAME>
488-
; resources.mail.transport.auth = 'crammd5', 'login' or 'plain'
490+
; resources.mail.transport.auth = 'crammd5' ; 'crammd5', 'login' or 'plain'
489491
; resources.mail.transport.username = <USERNAME>
490492
; resources.mail.transport.password = <PASSWORD>
491-
; resources.mail.transport.ssl = 'ssl' or 'tls'
493+
; resources.mail.transport.ssl = 'ssl' ; 'ssl' or 'tls'
492494
;
493495
; Zend_Mail_Transport_Sendmail
494496
;
@@ -573,9 +575,9 @@
573575
; resources.router.routes.login.defaults.action = "login"
574576
;
575577
; resources.router.routes.profile.route = "profile/:id"
576-
; resources.router.routes.profile.defaults.module = user
577-
; resources.router.routes.profile.defaults.controller = profile
578-
; resources.router.routes.profile.defaults.action = show
578+
; resources.router.routes.profile.defaults.module = 'user'
579+
; resources.router.routes.profile.defaults.controller = 'profile'
580+
; resources.router.routes.profile.defaults.action = 'show'
579581
; resources.router.routes.profile.reqs.id = "\d+"
580582
;
581583
; Set the separator for chained route names
@@ -652,16 +654,16 @@
652654
; resources.translate.adapter = "Array"
653655
;
654656
; Set the content for the translation adapter (required!)
655-
; resources.translate.content =
657+
; resources.translate.content = '' ;e.g.: APPLICATION_PATH "/../data/locales"
656658
;
657659
; Options for Zend_Translate and it's adapters
658660
; resources.translate.options.clear = false
659661
; resources.translate.options.disableNotices = false
660662
; resources.translate.options.ignore = "."
661663
; resources.translate.options.logUntranslated = false
662664
; resources.translate.options.reload = false
663-
; resources.translate.options.route =
664-
; resources.translate.options.scan =
665+
; resources.translate.options.route = ;null
666+
; resources.translate.options.scan = ;null
665667
; resources.translate.options.tag = "Zend_Translate"
666668
;
667669
; Options for Zend_Translate_Adapter_Csv
@@ -695,8 +697,8 @@
695697
; http://framework.zend.com/manual/en/zend.http.user-agent.html#zend.http.user-agent.options
696698
;
697699
; Configuration options
698-
; resources.useragent.browser_type
699-
; resources.useragent.http_accept
700+
; resources.useragent.browser_type =
701+
; resources.useragent.http_accept =
700702
; resources.useragent.identification_sequence = "mobile,desktop"
701703
; resources.useragent.storage.adapter = "Session"
702704
; resources.useragent.storage.options.browser_type
@@ -714,14 +716,14 @@
714716
; resources.useragent.<browser_type>.features.path =
715717
; resources.useragent.<browser_type>.features.classname =
716718
;
717-
; WURFL configuration
719+
; WURFL configuration (in 1.11.14, removed from 1.12.0 due to licensing issues)
718720
; resources.useragent.wurflapi.wurfl_api_version =
719721
; resources.useragent.wurflapi.wurfl_lib_dir =
720722
; resources.useragent.wurflapi.wurfl_config_file =
721723
; resources.useragent.wurflapi.wurfl_config_array.wurfl.main-file =
722-
; resources.useragent.wurflapi.wurfl_config_array.wurfl.patches[]
723-
; resources.useragent.wurflapi.wurfl_config_array.persistence.provider
724-
; resources.useragent.wurflapi.wurfl_config_array.persistence.dir
724+
; resources.useragent.wurflapi.wurfl_config_array.wurfl.patches[] =
725+
; resources.useragent.wurflapi.wurfl_config_array.persistence.provider =
726+
; resources.useragent.wurflapi.wurfl_config_array.persistence.dir =
725727

726728
; +------+
727729
; | View |

0 commit comments

Comments
 (0)

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.