1

ホスティング プランに移行しようとしている Coldfusion サイトで、この問題が発生しています。インデックス ファイルを表示すると、次のように表示されます。

Bad File Exception 
Request /index.cfm 



Type Template 
Message Expression Error 
Position Line=166; Column=25 
Detail Problem occurred while parsing: count++ 
Extended Info Encountered "<EOF>". Was expecting one of:         
<FLOATING_POINT_LITERAL> ... "-" ... "+" ... "#" ... "(" ... 
   <IDENTIFIER> ... "DOES" ... "CONTAIN" ... "GREATER" ... "THAN" ... "LESS" ... "VAR" ... <INTEGER_LITERAL> ... <STRING_LITERAL> ... <BOOLEAN_LITERAL> ... "NULL" ...  

Source 163:                       </li>
164:                     </ul><!--end social-->
165:                   </section><!--end column-->
166:                   <cfset count++> <-- that is where the error happens
167:                 </cfoutput>
^ Snippet from underlying CFML source enter code here

BlueDragon Time @ Server: 04:29:08.223 2015 年 3 月 3 日火曜日

何が悪いのかわからないので、誰かが私を助けてくれたら、それは素晴らしいことです。この時点で、どんな提案も素晴らしいでしょう。ありがとうございました!

4

1 に答える 1

0
<cfset count++> 

上記の構文は、BlueDragon では有効でない場合があります。すべての主要な CFML エンジンでサポートされている、より一般的なものに変更できます。

<cfset count = count+1>
于 2015-03-04T03:00:49.730 に答える