Просмотр файла manual-ru/troubleshooting.html

Размер файла: 10.26Kb
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>Chapter 17. Решение проблем</title>
  5. <meta name="generator" content="DocBook XSL Stylesheets V1.75.1">
  6. <link rel="home" href="index.html" title="Руководство по Smarty">
  7. <link rel="up" href="appendixes.html" title="Part IV. Приложения">
  8. <link rel="prev" href="appendixes.html" title="Part IV. Приложения">
  9. <link rel="next" href="tips.html" title="Chapter 18. Советы">
  10. </head>
  11. <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
  12. <div class="navheader">
  13. <table width="100%" summary="Navigation header">
  14. <tr><th colspan="3" align="center">Chapter 17. Решение проблем</th></tr>
  15. <tr>
  16. <td width="20%" align="left">
  17. <a accesskey="p" href="appendixes.html">Prev</a> </td>
  18. <th width="60%" align="center">Part IV. Приложения</th>
  19. <td width="20%" align="right"> <a accesskey="n" href="tips.html">Next</a>
  20. </td>
  21. </tr>
  22. </table>
  23. <hr>
  24. </div>
  25. <div class="chapter" title="Chapter 17. Решение проблем">
  26. <div class="titlepage"><div><div><h2 class="title">
  27. <a name="troubleshooting"></a>Chapter 17. Решение проблем</h2></div></div></div>
  28. <div class="toc">
  29. <p><b>Table of Contents</b></p>
  30. <dl><dt><span class="sect1"><a href="troubleshooting.html#smarty.php.errors">Ошибки Smarty/PHP</a></span></dt></dl>
  31. </div>
  32. <p></p>
  33. <div class="sect1" title="Ошибки Smarty/PHP">
  34. <div class="titlepage"><div><div><h2 class="title" style="clear: both">
  35. <a name="smarty.php.errors"></a>Ошибки Smarty/PHP</h2></div></div></div>
  36. <p>
  37. Smarty может ловить многие ошибки, например отсутствующие атрибуты
  38. тэгов или недопустимые имена переменных. Если это произойдет, вы увидите
  39. ошибку наподобие следующей:
  40. </p>
  41. <div class="example">
  42. <a name="id2744688"></a><p class="title"><b>Example 17.1. Ошибка Smarty</b></p>
  43. <div class="example-contents"><pre class="screen">
  44.  
  45. Warning: Smarty: [in index.tpl line 4]: syntax error: unknown tag - '%blah'
  46. in /path/to/smarty/Smarty.class.php on line 1041
  47.  
  48. Fatal error: Smarty: [in index.tpl line 28]: syntax error: missing section name
  49. in /path/to/smarty/Smarty.class.php on line 1041
  50.  
  51. </pre></div>
  52. </div>
  53. <br class="example-break"><p>
  54. Smarty покажет вам имя шаблона, номер строки и ошибку.
  55. Далее сообщение об ошибке состоит из фактического номера строки в классе
  56. Smarty, где возникла ошибка.
  57. </p>
  58. <p>
  59. Есть определенные ошибки, которые не может поймать Smarty, например
  60. отсутствующие закрывающие тэги. Такие ошибки обычно приводят к ошибкам
  61. разбора PHP на этапе компиляции.
  62. </p>
  63. <div class="example">
  64. <a name="id2744775"></a><p class="title"><b>Example 17.2. Ошибки разбора PHP</b></p>
  65. <div class="example-contents"><pre class="screen">
  66.  
  67. Parse error: parse error in /path/to/smarty/templates_c/index.tpl.php on line 75
  68.  
  69. </pre></div>
  70. </div>
  71. <br class="example-break"><p>
  72. Когда вы встречаетесь с ошибкой разбора PHP, номер строки, в которой
  73. допущена ошибка, будет соответствовать скомпилированному PHP-скрипту,
  74. а НЕ самому шаблону. Обычно вы можете посмотреть на шаблон и увидить
  75. синтаксическую ошибку. Типичные ошибки: отсутствующие закрывающие тэги
  76. для
  77. <a class="link" href="language.function.if.html" title="{if},{elseif},{else}"><code class="varname">{if}{/if}</code></a> или
  78. <a class="link" href="language.function.if.html" title="{if},{elseif},{else}">
  79. <code class="varname">{section}{/section}</code></a>,
  80. или синтаксис логики внутри тэга <code class="varname">{if}</code>.
  81. Если вы не можете найти ошибку, вам может понадобиться открыть
  82. скомпилированный PHP-файл и перейти к номеру строки чтобы выяснить,
  83. в чём заключается ошибка в шаблоне.
  84. </p>
  85. <div class="example">
  86. <a name="id2744828"></a><p class="title"><b>Example 17.3. Другие частые ошибки</b></p>
  87. <div class="example-contents">
  88. <pre class="screen">
  89.  
  90. Warning: Smarty error: unable to read resource: "index.tpl" in...
  91. or
  92. Warning: Smarty error: unable to read resource: "site.conf" in...
  93.  
  94. </pre>
  95. <p>
  96. </p>
  97. <div class="itemizedlist"><ul class="itemizedlist" type="disc">
  98. <li class="listitem"><p>
  99. Значение <a class="link" href="api.variables.html#variable.template.dir" title="$template_dir">
  100. <em class="parameter"><code>$template_dir</code></em></a>
  101. неверно, эта директория не существует или файл
  102. <code class="filename">index.tpl</code> не найден в директории
  103. <code class="filename">templates/</code>.
  104. </p></li>
  105. <li class="listitem"><p>
  106. В шаблоне присутствует функция <a class="link" href="language.function.config.load.html" title="{config_load}">
  107. <code class="varname">{config_load}</code></a>
  108. (либо была вызвана функция
  109. <a class="link" href="api.config.load.html" title="config_load()">
  110. <code class="varname">config_load()</code></a>)
  111. и значение
  112. <a class="link" href="variable.config.dir.html" title="$config_dir">
  113. <em class="parameter"><code>$config_dir</code></em></a>
  114. неверно, эта директория не существует или файл
  115. <code class="filename">site.conf</code> находится за пределами этой
  116. директории.
  117. </p></li>
  118. </ul></div>
  119. <p>
  120. </p>
  121. <pre class="screen">
  122.  
  123. Fatal error: Smarty error: the $compile_dir 'templates_c' does not exist,
  124. or is not a directory...
  125.  
  126. </pre>
  127. <div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
  128. Переменная
  129. <a class="link" href="variable.compile.dir.html" title="$compile_dir">
  130. <em class="parameter"><code>$compile_dir</code></em></a>
  131. установлена неверно, эта директория не существует
  132. или <code class="filename">templates_c</code> является файлом, а не
  133. директорией.
  134. </p></li></ul></div>
  135. <pre class="screen">
  136.  
  137. Fatal error: Smarty error: unable to write to $compile_dir '....
  138.  
  139. </pre>
  140. <div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
  141. У веб сервера нет прав на запись в директорию
  142. <a class="link" href="variable.compile.dir.html" title="$compile_dir">
  143. <em class="parameter"><code>$compile_dir</code></em></a>.
  144. Смотрите конец страницы
  145. <a class="link" href="installing.smarty.basic.html" title="Базовая установка">Базовая установка</a>
  146. для получения информации о правах доступа.
  147. </p></li></ul></div>
  148. <pre class="screen">
  149.  
  150. Fatal error: Smarty error: the $cache_dir 'cache' does not exist,
  151. or is not a directory. in /..
  152.  
  153. </pre>
  154. <div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
  155. Это означает, что параметр
  156. <a class="link" href="variable.caching.html" title="$caching">
  157. <em class="parameter"><code>$caching</code></em></a> включен, но параметр
  158. <a class="link" href="variable.cache.dir.html" title="$cache_dir">
  159. <em class="parameter"><code>$cache_dir</code></em></a>
  160. установлен неправильно, эта директория не существует
  161. или <code class="filename">cache/</code> является файлом, а не
  162. директорией.
  163. </p></li></ul></div>
  164. <pre class="screen">
  165.  
  166. Fatal error: Smarty error: unable to write to $cache_dir '/...
  167.  
  168. </pre>
  169. <div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
  170. Это означает, что параметр
  171. <a class="link" href="variable.caching.html" title="$caching">
  172. <em class="parameter"><code>$caching</code></em></a> включен, но
  173. у веб сервера нет прав на запись в директорию
  174. <a class="link" href="variable.cache.dir.html" title="$cache_dir">
  175. <em class="parameter"><code>$cache_dir</code></em></a>.
  176. Смотрите конец страницы
  177. <a class="link" href="installing.smarty.basic.html" title="Базовая установка">Базовая установка</a>
  178. для получения информации о правах доступа.
  179. </p></li></ul></div>
  180. </div>
  181. </div>
  182. <br class="example-break"><p>
  183. См. также
  184. <a class="link" href="chapter.debugging.console.html" title="Chapter 10. Отладочная консоль">Отладочная консоль</a>,
  185. <a class="link" href="variable.error.reporting.html" title="$error_reporting">
  186. <em class="parameter"><code>$error_reporting</code></em></a> и
  187. <a class="link" href="api.trigger.error.html" title="trigger_error"><code class="varname">trigger_error()</code></a>.
  188. </p>
  189. </div>
  190. </div>
  191. <div class="navfooter">
  192. <hr>
  193. <table width="100%" summary="Navigation footer">
  194. <tr>
  195. <td width="40%" align="left">
  196. <a accesskey="p" href="appendixes.html">Prev</a> </td>
  197. <td width="20%" align="center"><a accesskey="u" href="appendixes.html">Up</a></td>
  198. <td width="40%" align="right"> <a accesskey="n" href="tips.html">Next</a>
  199. </td>
  200. </tr>
  201. <tr>
  202. <td width="40%" align="left" valign="top">Part IV. Приложения </td>
  203. <td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td>
  204. <td width="40%" align="right" valign="top"> Chapter 18. Советы</td>
  205. </tr>
  206. </table>
  207. </div>
  208. </body>
  209. </html>