2017-02-27 46 views
0

我正在使用的文件在一个我的应用程序读取功能严重性:警告 - >的fopen(./上传/ <表CELLSPACING =

有时候,我得到异常而打开和关闭文件,因为英寸文件名我正在为HTML字符串,我需要什么做保障应用程序或以确定这是不是正确的名称

以下是完整的堆栈错误

错误 - ?2017-02- 27 06:28:21 - >严重程度:警告 - > f开(./上传/

<table cellspacing="0" cellpadding="0" width="100%"> 
    <tbody> 
    <tr> 
    <td class="titleBorderx" width="30"> 
     <table height="25" cellspacing="2" cellpadding="0" width="25" bgcolor="black"> 
     <tbody> 
     <tr> 
      <td id="L_default_x" class="x" valign="middle" align="center">X</td> 
     </tr> 
     </tbody> 
     </table> 
    </td> 
    <td class="titleBorder" id="L_default_2">Network Access Message:<span class="TitleDescription"> The page cannot be displayed</span> </td> 
    </tr> 
    </tbody> 
</table> 

<table id="spacer"> 
    <tbody> 
    <tr> 
    <td height="10"></td></tr></tbody></table> 
<table width="400"> 
    <tbody> 
    <tr> 
    <td nowrap="" width="25"></td> 
    <td width="400"><span class="explain"><id id="L_default_3"><b>Explanation:</b></id></span><id id="L_default_4"> There is a problem with the page you are trying to reach and it cannot be displayed. </id><br><br> 
    <b><span class="tryThings"><id id="L_default_5"><b>Try the following:</b></id></span></b> 
     <ul class="TryList"> 
     <li id="L_default_6"><b>Refresh page:</b> Search for the page again by clicking the Refresh button. The timeout may have occurred due to Internet congestion. 
</li><li id="L_default_7"><b>Check spelling:</b> Check that you typed the Web page address correctly. The address may have been mistyped. 
</li><li id="L_default_8"><b>Access from a link:</b> If there is a link to the page you are looking for, try accessing the page from that link. 

     </li></ul> 
<id id="L_default_9">If you are still not able to view the requested page, try contacting your administrator or Helpdesk.</id> <br><br> 
    </td> 
    </tr> 
    </tbody> 
</table> 

<table id="spacer"><tbody><tr><td height="15"></td></tr></tbody></table> 

<table width="400"> 
    <tbody> 
    <tr> 
    <td nowrap="" width="25"></td> 
    <td width="400" id="L_default_10"><b>Technical Information (for support personnel)</b> 
     <ul class="adminList"> 
     <li id="L_default_11">Error Code: 502 Proxy Error. The request was rejected by the HTTP filter. Contact your Forefront TMG administrator. (12217) 
</li><li id="L_default_12">IP Address: 10.40.0.20 
</li><li id="L_default_13">Date: 2/27/2017 6:28:21 AM [GMT] 
</li><li id="L_default_14">Server: SYS2019.netsolpk.com 
</li><li id="L_default_15">Source: web filter 

     </li></ul> 
    </td> 
    </tr> 
    </tbody> 
</table> 

):未能打开流:文件名过长/srv/users/serverpilot/apps/php/public/application/controllers/Readfile.php 159

+0

我使用PHP的CodeIgniter框架。 –

+0

我改变了所有的'<','>'和'"'从你得到的错误...为了可读性。 –

回答

0

您的fopen函数的字符串太长。而且我也认为这是无效的。您在./upload/名为寻找一个文件:

&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot ...

名称太长,无效的。我认为你将一个变量传递给fopen函数,该变量的内容不正确。

相关问题