Because I was anxious to send pictures of the board members to the Internet last night, I used FTP to transmit pictures, and then used a stupid method like <img src="/Upload/" /> to get all the pictures done.
I started studying this issue at 8 am this morning and found such a post online. The original text is as follows:
Recently, a project used FCKEditor, which loaded the latest version of 2.6.4, all configuration is OK, debugging status is OK, and publishes it to the server (windows server 2003 sp2), and the problem is...
After uploading the picture, a script error message appears on the lower left foot of the page. Click to see a prompt that "no permissions" is available. The upload window has been frozen in the progress bar state (Upload in progess, please wait...). It checks information from multiple parties, including relevant information on foreign official forums, without any solution.
While confused, I suddenly found that the upload of the image was not unsuccessful. There was already an uploaded file on the server, but the window was frozen in the progress bar state, so I considered whether it was caused by a script error.
Finally, I found a line of code like this in the source code file FileBrowser/:
( @"(function(){var d=;while (true){try{var A=;break;}catch(e) {};d=(/.*?(?:.|$)/,'');if (==0) break;try{=d;}catch (e){break;}}})();" );
After deleting the try{=d;}catch (e){break;} inside, recompile, and then add the reference to the project, the problem is solved.
According to the above method, the problem has been really solved. Note that the compilation method is:
Enter the FCKeditor.Net_2.6.3 directory and use VS2008 to open FredCK.FCKeditorV2. Because the file version is VS2005, I asked if I wanted to convert (the original version has a backup), and select Yes, and the file is opened. Click the menu "Generate > Configuration Manager", change the "Active Solution Configuration" from the default "debug" to "release", and click the "Close" button.
Then click the menu "Generate > Generate FredCK.FCKeditorV2.vs2005" again, and FredCK. is automatically generated, and generate it in the original location, FCKeditor.Net_2.6.3/bin/release/2.0 directory, copy the generated file and overwrite the original file in the bin directory on the server. OK!
Let’s try the FCKeditor uploading image function on the Internet, and it’s successful!
I started studying this issue at 8 am this morning and found such a post online. The original text is as follows:
Recently, a project used FCKEditor, which loaded the latest version of 2.6.4, all configuration is OK, debugging status is OK, and publishes it to the server (windows server 2003 sp2), and the problem is...
After uploading the picture, a script error message appears on the lower left foot of the page. Click to see a prompt that "no permissions" is available. The upload window has been frozen in the progress bar state (Upload in progess, please wait...). It checks information from multiple parties, including relevant information on foreign official forums, without any solution.
While confused, I suddenly found that the upload of the image was not unsuccessful. There was already an uploaded file on the server, but the window was frozen in the progress bar state, so I considered whether it was caused by a script error.
Finally, I found a line of code like this in the source code file FileBrowser/:
( @"(function(){var d=;while (true){try{var A=;break;}catch(e) {};d=(/.*?(?:.|$)/,'');if (==0) break;try{=d;}catch (e){break;}}})();" );
After deleting the try{=d;}catch (e){break;} inside, recompile, and then add the reference to the project, the problem is solved.
According to the above method, the problem has been really solved. Note that the compilation method is:
Enter the FCKeditor.Net_2.6.3 directory and use VS2008 to open FredCK.FCKeditorV2. Because the file version is VS2005, I asked if I wanted to convert (the original version has a backup), and select Yes, and the file is opened. Click the menu "Generate > Configuration Manager", change the "Active Solution Configuration" from the default "debug" to "release", and click the "Close" button.
Then click the menu "Generate > Generate FredCK.FCKeditorV2.vs2005" again, and FredCK. is automatically generated, and generate it in the original location, FCKeditor.Net_2.6.3/bin/release/2.0 directory, copy the generated file and overwrite the original file in the bin directory on the server. OK!
Let’s try the FCKeditor uploading image function on the Internet, and it’s successful!