Avatar billede Slettet bruger
17. november 2014 - 19:46 Der er 5 kommentarer og
1 løsning

Editor problem?

Hej Eksperter

Jeg prøver at få Rich Text Editor til at køre på vores webside, men upload af filer og images dutter ikke.
Denne besked popper op:
Sti: upload 

Microsoft VBScript runtime
error '800a01f4'
Variable is undefined: 'strTxtFileName'
/rte/RTE_popup_adv_image.asp, line 344

Er der nogen derude, som kan/vil give et bud på hvad fejlbeskeden skyldes?

Mvh. rwj
Avatar billede Jim Rasmussen Novice
18. november 2014 - 01:26 #1
Det lyder om en fejl ved navngivning af den uploadede fil. Hvordan ser det script ud som gemmer selve filen?
Avatar billede Slettet bruger
18. november 2014 - 07:38 #2
Tak for svar.

Når jeg klikker på Images-ikonet på editoren, kommer førnævnte besked frem, altså problemer med "strTxtFileName". Jeg har efterfølgende set, at problemet også opstår når jeg klikker på Filer-ikonet.

Filen som gemmer de forskellige filer må være RTE_popup_save_file.asp og den ser sådan ud:
 
<% @ Language=VBScript %>
<% Option Explicit %>
<!--#include file="RTE_configuration/RTE_setup.asp" -->
<!--#include file="functions/RTE_functions_common.asp" -->
<!--#include file="language_files/RTE_language_file_inc.asp" -->
<%
'****************************************************************************************
'** Copyright Notice
'**
'** Web Wiz Rich Text Editor(TM)
'** http://www.richtexteditor.org
'**
'** Copyright (C)2001-2014 Web Wiz Ltd. All Rights Reserved.
'**
'** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS UNDER LICENSE FROM WEB WIZ LTD.
'**
'** IF YOU DO NOT AGREE TO THE LICENSE AGREEMENT THEN WEB WIZ LTD. IS UNWILLING TO LICENSE
'** THE SOFTWARE TO YOU, AND YOU SHOULD DESTROY ALL COPIES YOU HOLD OF 'WEB WIZ' SOFTWARE
'** AND DERIVATIVE WORKS IMMEDIATELY.
'**
'** If you have not received a copy of the license with this work then a copy of the latest
'** license contract can be found at:-
'**
'** http://www.webwiz.co.uk/license
'**
'** For more information about this software and for licensing information please contact
'** 'Web Wiz' at the address and website below:-
'**
'** Web Wiz Ltd, Unit B10, 9 Nimrod Way, East Dorset Trade Park, Wimborne, Dorset, BH21 7UH, England
'** http://www.webwiz.co.uk
'**
'** Removal or modification of this copyright notice will violate the license contract.
'**
'****************************************************************************************



'*************************** SOFTWARE AND CODE MODIFICATIONS ****************************
'**
'** MODIFICATION OF THE FREE EDITIONS OF THIS SOFTWARE IS A VIOLATION OF THE LICENSE
'** AGREEMENT AND IS STRICTLY PROHIBITED
'**
'** If you wish to modify any part of this software a license must be purchased
'**
'****************************************************************************************




'Set the response buffer to true as we maybe redirecting
Response.Buffer = True



'Dimension veriables
Dim objFSO 'Holds the file system object
Dim tsObject 'Holds the text stream object
Dim strFilePath 'Holds the file path
Dim saryAllowedFileTypes 'Holds the allowed file types
Dim intExtensionLoopCounter 'Holds the extension loop counter
Dim strFileName 'Holds the file name
Dim strFileExtension 'Holds the file extension
Dim strFileTitle 'Holds the file title
Dim blnFileExtensionOK 'Set to true if file extension is OK
Dim strEditorContents 'Holds the contents of the editor
Dim strFileContents 'Holds the file contents to save
Dim strNewFileName 'Holds the new filename as it may need to be changed
Dim blnNewFileName 'set to rtrue if the fimename is changed
Dim strSavePageEncoding 'Holds the code page


'if save is on run the file
If blnSave Then

'Get the file types allowed
saryAllowedFileTypes = Split(Trim(strSaveFileTypes), ";")

'Get the save file path
strFilePath = strSaveFileFolderPath

'Change \ for /
strFilePath = Replace(strFilePath, "\", "/'", 1, -1, 1)



'If this is a postback save the file
If Request.Form("postback") Then

blnFileExtensionOK = false
blnNewFileName = false

'Read in the form details
strFileName = Trim(Request.Form("fileName"))
strFileExtension = Trim(Request.Form("ext"))
strFileTitle = Trim(Request.Form("title"))
strEditorContents = Request.Form("WebWizRTE")
strSavePageEncoding = Trim(Request.Form("DOCTYPE"))

'Check the file extension is OK
'Loop through and display allowed extensions
For intExtensionLoopCounter = 0 To UBound(saryAllowedFileTypes)
If strFileExtension = "." & saryAllowedFileTypes(intExtensionLoopCounter) Then blnFileExtensionOK = true
Next

'If the file extension is not allowed set the file type to text
If blnFileExtensionOK = false Then strFileExtension = ".txt"

'Check there is a title
If strFileTitle = "" Then strFileTitle = "Untitled Document"

'***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******
If blnAbout Then
strFileTitle = strFileTitle & " - Saved from Web Wiz Rich Text Editor(TM) ver. " & strRTEversion
End If
'***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******

'Build file contents
strFileContents = "<!doctype html public ""-//W3C//DTD HTML 4.0 Transitional//EN"">" & _
vbCrLf & "<html>" & _
vbCrLf & "<head>" & _
vbCrLf & "<title>" & strFileTitle & "</title>" & _
vbCrLf & strSavePageEncoding & _
vbCrLf & "<meta http-equiv=""GENERATOR"" content=""Web Wiz Rich Text Editor " & strRTEversion & """>" & _
vbCrLf & "</head>" & _
vbCrLf & "<body>" & _
vbCrLf & strEditorContents & _
vbCrLf & "</body>" & _
vbCrLf & "</html>"


'Save the file

'Initilse the files name
strNewFileName = strFileName

'Check the file name is OK

'Remove dodgy characters that may course problems
strNewFileName = characterStrip(strNewFileName)

'Remove any paths
strNewFileName = Replace(strNewFileName, "/", "", 1, -1, 1)
strNewFileName = Replace(strNewFileName, "\", "", 1, -1, 1)
strNewFileName = Replace(strNewFileName, ".", "", 1, -1, 1)


'If there is no file name left make one
If strNewFileName = "" Then strNewFileName = "New Document"

'Loop through and remove any extra extensions in the file name
For intExtensionLoopCounter = 0 To UBound(saryAllowedFileTypes)
strNewFileName = Replace(strNewFileName, "." & saryAllowedFileTypes(intExtensionLoopCounter), "", 1, -1, 0)
Next

'Add the extension onto the file name
strNewFileName = strNewFileName & strFileExtension





'Create the file system object
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")

'If you can not overwrite files check to make sure the file does not exsist, if it does rename the file
If blnOverWriteFiles = false Then
'Check to make sure the file does not already exist
Do While objFSO.FileExists(Server.MapPath(strSaveFileFolderPath) & "\" & strNewFileName)

'Create a new file name for file if it already exsist
strNewFileName = hexValue(3) & "_" & strNewFileName
Loop
End If


'Create a new file
Set tsObject = objFSO.CreateTextFile(Server.MapPath(strSaveFileFolderPath) & "\" & strNewFileName)

'Write to the new file
tsObject.Write strFileContents


'Clean up
Set objFSO = Nothing
Set tsObject = Nothing


'See if the file name is changed
If strFileName & strFileExtension <> strNewFileName Then blnNewFileName = true
End If


%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Save File</title>
<!--#include file="RTE_configuration/browser_page_encoding_inc.asp" -->

<%
'***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******
Response.Write(vbCrLf & "<!--//" & _
vbCrLf & "/* *******************************************************" & _
vbCrLf & "Software: Web Wiz Rich Text Editor(TM) ver. " & strRTEversion & "" & _
vbCrLf & "Info: http://www.richtexteditor.org" & _
vbCrLf & "Copyright: (C)2001-2014 Web Wiz Ltd. All rights reserved" & _
vbCrLf & "******************************************************* */" & _
vbCrLf & "//-->")
'***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******
%>

<link href="<% = strRTECSSfile %>default_style.css" rel="stylesheet" type="text/css" />
<script language="javascript">
function initialise(){
document.getElementById('WebWizRTE').value=window.opener.document.getElementById('WebWizRTE').contentWindow.document.body.innerHTML;
document.getElementById('Submit').disabled = true;
self.focus();
}
</script>
</head>
<body style="margin:0px;" OnLoad="initialise();">
<table width="100%" border="0" cellpadding="3" cellspacing="0" class="RTEtableTopRow">
<form method="post" action="RTE_popup_save_file.asp" name="frmSave">
<tr class="RTEtableTopRow">
<td colspan="2" width="57%"><h1><% = strTxtSave %></h1></td>
</tr>
<tr>
<td colspan="2" class="RTEtableRow"><table width="100%" border="0" align="center" cellpadding="1" cellspacing="0">
<tr>
<td width="47%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td width="48%" class="text"><% = strTxtPath %>: <span id="path"><% = "/" & strFilePath %></span></td>
</tr>
<tr>
<td class="text"><% = strTxtFileName %>:<iframe src="RTE_file_browser.asp?look=save" id="fileWindow" width="98%" height="180px" style="border: #A5ACB2 1px solid;backgroundColor: #FFFFFF;"></iframe></td>
</tr>
</table></td>
<td width="53%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td align="right" class="text">&nbsp;</td>
<td class="text">&nbsp;</td>
</tr>
<tr>
<td align="right" class="text">&nbsp;</td>
<td class="text">&nbsp;</td>
</tr>
<tr>
<td width="27%" align="right" class="text"><% = strTxtFileName %>:</td>
<td width="73%" class="text"><input name="fileName" type="text" id="fileName" size="20" onChange="document.getElementById('Submit').disabled=false;" onkeypress="document.getElementById('Submit').disabled=false;">
<select name="ext" id="ext"><%

'Loop through and display allowed extensions
For intExtensionLoopCounter = 0 To UBound(saryAllowedFileTypes)

Response.Write("<option value=""." & saryAllowedFileTypes(intExtensionLoopCounter) & """>." & saryAllowedFileTypes(intExtensionLoopCounter) & "</option>")
Next

%>
</select>
</td>
</tr>
<tr>
<td align="right" class="text"><% = strTxtTitle %>:</td>
<td valign="top" class="text"><input name="title" type="text" id="title" size="30"></td>
</tr>
<tr>
<td align="right" class="text"> DOCTYPE: </td>
<td valign="top" class="text"><input name="DOCTYPE" type="text" id="DOCTYPE" value="&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;" size="30"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td class="RTEtableBottomRow" valign="top">&nbsp;<%

'***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******
If blnAbout Then
Response.Write("<span class=""text"" style=""font-size:10px""><a href=""http://www.richtexteditor.org"" target=""_blank"" style=""font-size:10px"">Web Wiz Rich Text Editor</a> version " & strRTEversion & "</span>")
End If
'***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******

%></td>
<td align="right" class="RTEtableBottomRow">
<input name="WebWizRTE" type="hidden" id="WebWizRTE">
<input name="postback" type="hidden" id="postback" value="true">
<input type="submit" name="Submit" id="Submit" value=" <% = strTxtSave %> ">&nbsp;<input type="button" name="cancel" value=" <% = strTxtCancel %> " onClick="window.close()">
<br /><br /></td>
</tr>
</form>
</table>
</body>
</html><%

'If the file has been saved display a message
If Request.Form("postback") Then
Response.Write("<script language=""JavaScript"">")
If blnNewFileName Then
Response.Write(" alert('" & strTxtFileAlreadyExistsRenamedAs & " \'" & strNewFileName & "\'.');")
Else
Response.Write(" alert('" & strTxtTheFile & " \'" & strNewFileName & "\' " & strTxtHasBeenSaved & ".');")
End If

Response.Write(vbCrLf & " window.close();" & vbCrLf & "</script>")

End If

End If

%>
Avatar billede Jim Rasmussen Novice
18. november 2014 - 09:34 #3
Jeg kan ikke se noget galt med den kode du sender? :-/ Er den ikke implementeret som beskrevet af udgiver?

For så må problemet jo ligge i implementeringen
Avatar billede Jim Rasmussen Novice
18. november 2014 - 09:39 #4
<td class="text"><% = strTxtFileName %>:<iframe src="RTE_file_browser.asp?look=save" id="fileWindow" width="98%" height="180px" style="border: #A5ACB2 1px solid;backgroundColor: #FFFFFF;"></iframe></td>
</tr>
</table></td>
<td width="53%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td align="right" class="text">&nbsp;</td>
<td class="text">&nbsp;</td>
</tr>
<tr>
<td align="right" class="text">&nbsp;</td>
<td class="text">&nbsp;</td>
</tr>
<tr>
<td width="27%" align="right" class="text"><% = strTxtFileName %>:</td>
<td width="73%" class="text"><input name="fileName" type="text" id="fileName" size="20" onChange="document.getElementById('Submit').disabled=false;" onkeypress="document.getElementById('Submit').disabled=false;">


Måske hvis du ændre strTxtFileName til strFileName.


Det ser ud til at det er navnet på variablen og ikke strTxtFileName

'Dimension veriables
Dim objFSO 'Holds the file system object
Dim tsObject 'Holds the text stream object
Dim strFilePath 'Holds the file path
Dim saryAllowedFileTypes 'Holds the allowed file types
Dim intExtensionLoopCounter 'Holds the extension loop counter
Dim ---> strFileName 'Holds the file name <---
Dim strFileExtension 'Holds the file extension
Dim strFileTitle 'Holds the file title
Dim blnFileExtensionOK 'Set to true if file extension is OK
Dim strEditorContents 'Holds the contents of the editor
Dim strFileContents 'Holds the file contents to save
Dim strNewFileName 'Holds the new filename as it may need to be changed
Dim blnNewFileName 'set to rtrue if the fimename is changed
Dim strSavePageEncoding 'Holds the code page
Avatar billede Slettet bruger
18. november 2014 - 14:58 #5
Hej

Jeg installerede blot programmet og foretog mig intet ud over at ændre mappen til upload, så det burde være i orden.

Jeg skiftede fra strTxtFileName til strFileName i filen RTS_popup_adv_images.asp linie 344 som du foreslog, og fik denne fejlbesked:


Microsoft VBScript runtime
error '800a01f4'
Variable is undefined: 'strFileName'
/rte/RTE_popup_adv_image.asp, line 344

nvh. rwj
Avatar billede Slettet bruger
25. november 2014 - 07:24 #6
Der sker vist ikke mere her, tak for hjælpen, jeg lukker spørgsmålet.

mvh. rwj
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester