2017-02-27 44 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函數,該變量的內容不正確。

相關問題