index.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
  2. <html>
  3. <head>
  4. <title>方维互动直播 -- 安装向导</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <load href ="__TMPL__Public/css/style.css" />
  7. </head>
  8. <body>
  9. <div class="install block">
  10. <form name="install" action="{:u('Index/index')}" method="POST" >
  11. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  12. <tr>
  13. <td colspan="2" style="height:10px;">
  14. </td>
  15. </tr>
  16. <foreach name="result" item="rs" key="key">
  17. <if condition="$key neq 'status'">
  18. <tr>
  19. <if condition="$key eq 'msg' or $key eq 'php_env' or $key eq 'gd_info' or $key eq 'mb_info' or $key eq 'exif_info'">
  20. <td>
  21. <if condition="$key eq 'msg'">检测结果:</if>
  22. <if condition="$key eq 'php_env'">PHP 环境:</if>
  23. <if condition="$key eq 'gd_info'">GD函数库:</if>
  24. <if condition="$key eq 'exif_info'">EXIF函数库:</if>
  25. <if condition="$key eq 'mb_info'">MBSTRING函数库:</if>
  26. </td>
  27. <td>
  28. {$rs}
  29. </td>
  30. <else/>
  31. <td>
  32. <if condition="$rs.file_type eq 'dir' ">
  33. 目录
  34. <else/>
  35. 文件
  36. </if>{$key}:
  37. </td>
  38. <td>
  39. {$rs.msg}
  40. </td>
  41. </if>
  42. </tr>
  43. </if>
  44. </foreach>
  45. <tr>
  46. <td style="height:50px;"></td>
  47. <td>
  48. <if condition="$result['status'] eq 1">
  49. <input type="button" value="继续安装" onclick="location.href='{:u('Index/database')}'" />
  50. </if>
  51. </td>
  52. </tr>
  53. <tr>
  54. <td colspan="2" style="text-align: center;">
  55. 方维互动直播安装程序
  56. </td>
  57. </tr>
  58. </table>
  59. </form>
  60. </div>
  61. </body>
  62. </html>