小编Ed *_*ias的帖子

在TinyMCE中集成Roxy Fileman

我正在尝试将Roxy Fileman(http://www.roxyfileman.com)集成到TinyMCE中.

单击TinyMCE的触发图像但无法正常工作后无法使图标显示为Roxy Fileman.

当我打开从这些错误中收到的Roxy Fileman时,来自Chrome的明显警告:

E_LoadingConf E_ActionDisabled加载语言文件时出错

我已经向Roxy Fileman的工作人员发送了一条消息但没有回答.

任何人都可以帮我整合这个吗?我需要一种在TinyMCE上传照片的方法.

如果有人有任何其他插件表明我接受.

以下是我的代码:

<script type="text/javascript" src="js/tinymce/tinymce.min.js"></script>
<script>
// This must be set to the absolute path from the site root.
var roxyFileman = 'js/tinymce/plugins/fileman/index.html?integration=tinymce4';
$(function() {
tinyMCE.init({language : 'pt_BR', selector: 'textarea#elm1', menubar : false, plugins: 'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking save table contextmenu directionality template paste textcolor', 
             toolbar: "insertfile undo redo | …
Run Code Online (Sandbox Code Playgroud)

integration tinymce

4
推荐指数
2
解决办法
7968
查看次数

如何在ASP Classic中实现Google Recaptcha 2.0?

我需要帮助来实现Google Recaptcha 2.0的答案.

我已经尝试了几种方法来恢复发送表单后的响应,但不是consigui得到答案真.

按照我正在尝试的示例:

recaptcha_secret = "example45454sasa"

sendstring = _
"https://www.google.com/recaptcha/api/siteverify?" & _ 
"secret=" & recaptcha_secret & _
"&response=" & request.form("g-recaptcha-response")

Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXML.Open "GET", sendstring , false

objXML.Send()

if instr(objXML.responseText,"true") then
    response.write "yes"
else
    response.write "no"
end if
Run Code Online (Sandbox Code Playgroud)

第二个exmeplae我使用aspJSON1.17.asp库:

recaptcha_secret = "example45454sasa"

Set oJSON = New aspJSON

jsonstring = "https://www.google.com/recaptcha/api/siteverify?secret=" & recaptcha_secret & "&response=" & request.form("g-recaptcha-response") & ""

'Load JSON string
oJSON.loadJSON("" & jsonstring & "")

'Get single value
Response.Write oJSON.data("success") & ""
Run Code Online (Sandbox Code Playgroud)

上面的两个例子返回False或No.

如何实现检查Recaptcha是否已标记的方法?

*reCaptcha …

asp-classic

3
推荐指数
1
解决办法
1万
查看次数

标签 统计

asp-classic ×1

integration ×1

tinymce ×1