[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 {* DO NOT EDIT THIS FILE! Use an override template instead. *} 2 <h1>{'System information'|i18n('design/standard/setup')}</h1> 3 4 <div class="objectheader"> 5 <h2>eZ publish</h2> 6 </div> 7 <div class="object"> 8 <table width="500"> 9 <tr> 10 <td><p><b>{'Site'|i18n('design/standard/setup')}:</b></p></td><td><p>{ezini('SiteSettings','SiteURL')}</p></td> 11 </tr> 12 <tr> 13 <td><p><b>{'Version'|i18n('design/standard/setup','eZ publish version')}</b></p></td><td><p>{$ezpublish_version}</p></td> 14 </tr> 15 <tr> 16 <td><p><b>{'SVN revision'|i18n('design/standard/setup','eZ publish version')}</b></p></td><td><p>{$ezpublish_revision}</p></td> 17 </tr> 18 <tr> 19 <td><p><b>{'Extensions'|i18n('design/standard/setup','eZ publish extensions')}</b></p></td> 20 <td> 21 <p> 22 {section loop=$ezpublish_extensions}{$:item}{delimiter}, {/delimiter}{/section} 23 </p> 24 </td> 25 </tr> 26 </table> 27 </div> 28 29 <div class="objectheader"> 30 <h2>PHP</h2> 31 </div> 32 <div class="object"> 33 <table width="100%"> 34 <tr> 35 <td><p><b>{'Version'|i18n('design/standard/setup','PHP version')}</b></p></td><td><p>{$php_version}</p></td> 36 </tr> 37 <tr> 38 <td><p><b>{'Extensions'|i18n('design/standard/setup','PHP extensions')}</b></p></td> 39 <td> 40 <p> 41 {section loop=$php_loaded_extensions}{$:item}{delimiter}, {/delimiter}{/section} 42 </p> 43 </td> 44 </tr> 45 </table> 46 <p> 47 {section show=$php_ini.safe_mode} 48 {'Safe mode is on.'|i18n('design/standard/setup')}<br/> 49 {section-else} 50 {'Safe mode is off.'|i18n('design/standard/setup')}<br/> 51 {/section} 52 {section show=$php_ini.open_basedir} 53 {'Basedir restriction is on and set to %1.'|i18n('design/standard/setup',,array($php_ini.open_basedir))}<br/> 54 {section-else} 55 {'Basedir restriction is off.'|i18n('design/standard/setup')}<br/> 56 {/section} 57 {section show=$php_ini.register_globals} 58 {'Global variable registration is on.'|i18n('design/standard/setup')}<br/> 59 {section-else} 60 {'Global variable registration is off.'|i18n('design/standard/setup')}<br/> 61 {/section} 62 {section show=$php_ini.file_uploads} 63 {'File uploading is enabled.'|i18n('design/standard/setup')}<br/> 64 {section-else} 65 {'File uploading is disabled.'|i18n('design/standard/setup')}<br/> 66 {/section} 67 {'Maximum size of post data (text and files) is %1.'|i18n('design/standard/setup',,array($php_ini.post_max_size))}<br/> 68 {'Script memory limit is %1.'|i18n('design/standard/setup',,array($php_ini.memory_limit))}<br/> 69 {'Maximum execution time is %1 seconds.'|i18n('design/standard/setup',,array($php_ini.max_execution_time))}<br/> 70 </p> 71 </div> 72 73 <div class="objectheader"> 74 <h2>{'Webserver'|i18n( 'design/standard/setup', 'Webserver title' )}</h2> 75 </div> 76 <div class="object"> 77 {section show=$webserver_info} 78 <table width="100%"> 79 <tr> 80 <td><p><b>{'Name'|i18n('design/standard/setup','Webserver name')}</b></p></td><td><p>{$webserver_info.name}</p></td> 81 </tr> 82 <tr> 83 <td><p><b>{'Version'|i18n('design/standard/setup','Webserver version')}</b></p></td><td><p>{$webserver_info.version}</p></td> 84 </tr> 85 {section show=$webserver_info.modules} 86 <tr> 87 <td><p><b>{'Modules'|i18n('design/standard/setup','Webserver modules')}</b></p></td> 88 <td> 89 <p> 90 {section loop=$webserver_info.modules}{$:item}{delimiter}, {/delimiter}{/section} 91 </p> 92 </td> 93 </tr> 94 {section-else} 95 <tr> 96 <td colspan="2"><p>{'Webserver modules could not be detected'|i18n('design/standard/setup','Webserver modules')}</p></td> 97 </tr> 98 {/section} 99 </table> 100 {section-else} 101 <p>{'No known information on the webserver'|i18n( 'design/standard/setup' )}</p> 102 {/section} 103 </div> 104 105 <div class="objectheader"> 106 <h2>PHP Accelerator</h2> 107 </div> 108 <div class="object"> 109 {section show=$php_accelerator} 110 <table width="100%"> 111 <tr> 112 <td><p><b>{'Name'|i18n('design/standard/setup','PHP Accelerator name')}</b></p></td><td><p>{section show=$php_accelerator.url}<a href="{$php_accelerator.url|wash}">{/section}{$php_accelerator.name|wash}{section show=$php_accelerator.url}</a>{/section}</p></td> 113 </tr> 114 <tr> 115 <td><p><b>{'Version'|i18n('design/standard/setup','PHP Accelerator version')}</b></p></td><td><p>{section show=$php_accelerator.version_string}{$php_accelerator.version_string|wash}{section-else}{'Could not detect version'|i18n('design/standard/setup')}{/section}</p></td> 116 </tr> 117 </table> 118 <p> 119 {section show=$php_accelerator.enabled} 120 {'The PHP Accelerator is enabled.'|i18n('design/standard/setup')}<br/> 121 {section-else} 122 {'The PHP Accelerator is disabled.'|i18n('design/standard/setup')}<br/> 123 {/section} 124 </p> 125 {section-else} 126 <p> 127 {'There is no known PHP accelerator active.'|i18n('design/standard/setup')}<br/> 128 </p> 129 {/section} 130 </div> 131 132 <div class="objectheader"> 133 <h2>{'Database'|i18n('design/standard/setup')}</h2> 134 </div> 135 <div class="object"> 136 <table width="500"> 137 <tr> 138 <td width="1"><p><b>{'Type'|i18n('design/standard/setup','Database type')}</b></p></td> 139 <td><p>{$database_info}</p></td> 140 </tr> 141 <tr> 142 <td width="1"><p><b>{'Server'|i18n('design/standard/setup','Database server')}</b></p></td> 143 <td><p>{$database_object.database_server}</p></td> 144 </tr> 145 {section show=$database_object.database_socket_path} 146 <tr> 147 <td width="1"><p><b>{'Socket path'|i18n('design/standard/setup','Database socket path')}</b></p></td> 148 <td><p>{$database_object.database_socket_path}</p></td> 149 </tr> 150 {/section} 151 <tr> 152 <td width="1"><p><b>{'Database'|i18n('design/standard/setup','Database name')}</b></p></td> 153 <td><p>{$database_object.database_name}</p></td> 154 </tr> 155 <tr> 156 <td width="1"><p><b>{'Connection retry count'|i18n('design/standard/setup','Database retry count')}</b></p></td> 157 <td><p>{$database_object.retry_count}</p></td> 158 </tr> 159 <tr> 160 <td width="1"><p><b>{'Charset'|i18n('design/standard/setup','Database charset')}</b></p></td> 161 <td><p>{$database_charset|wash}{section show=$database_object.is_internal_charset} ({'Internal'|i18n('design/standard/setup')}){/section}</p></td> 162 </tr> 163 </table> 164 </div> 165 166 <div class="objectheader"> 167 <h2>{'Operating System'|i18n('design/standard/setup')}</h2> 168 </div> 169 <div class="object"> 170 {section show=$system_info.is_valid} 171 <table width="500"> 172 <tr> 173 <td width="1"><p><b>{'CPU'|i18n('design/standard/setup','Database type')}</b></p></td> 174 <td><p>{$system_info.cpu_type} {$system_info.cpu_speed} {$system_info.cpu_unit}</p></td> 175 </tr> 176 <tr> 177 <td width="1"><p><b>{'Memory'|i18n('design/standard/setup','Database server')}</b></p></td> 178 <td><p>{$system_info.memory_size|si( byte )}</p></td> 179 </tr> 180 </table> 181 {section-else} 182 <p>{'No information on the operating system could be determined.'|i18n( 'design/standard/setup' )}</p> 183 {/section} 184 </div> 185 186 {section show=$database_object.use_slave_server} 187 <div class="objectheader"> 188 <h2>{'Current read-only database (Slave)'|i18n('design/standard/setup')}</h2> 189 </div> 190 <div class="object"> 191 <table width="500"> 192 <tr> 193 <td width="1"><p><b>{'Server'|i18n('design/standard/setup','Database server')}</b></p></td> 194 <td><p>{$database_object.slave_database_server}</p></td> 195 </tr> 196 <tr> 197 <td width="1"><p><b>{'Database'|i18n('design/standard/setup','Database name')}</b></p></td> 198 <td><p>{$database_object.slave_database_name}</p></td> 199 </tr> 200 </table> 201 </div> 202 {/section} 203
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |