小编ddj*_*kic的帖子

Chrome中的错误与ckeditor编辑链接

所以基本上我在chrome中有这个问题(在Firefox中运行正常).当我编辑内容时,我有以下情况,一个链接和一些文本,当我点击链接的末尾将"一些链接文本"更改为"某些链接到网站"时,它执行以下操作

编辑前:

一些链接文本的一些内容

<a href="">some link text </a> some content
Run Code Online (Sandbox Code Playgroud)

一些链接到网站的一些内容

<a href="">some link</a> to website some content
Run Code Online (Sandbox Code Playgroud)

javascript jquery google-chrome ckeditor

10
推荐指数
1
解决办法
892
查看次数

codeigniter html电子邮件更改字符

我的电子邮件有问题,html 没问题,但是当我打开它们时,文本和链接中有错误,一些字符变成了 = 之类的

Thanks for joining . your log=n details are here ma=e sure you keep them safe.
To verify your email address, please follow this link:

 Finish your registration...

Link doesn't work? Copy the following link to your browser address bar:  http://www.myurl.com/dev=l/panel/auth/activate/123131/123131

Please verify your email within 123131 hours, otherwise your registration =ill become invalid and you will have to register again.
Run Code Online (Sandbox Code Playgroud)

每个图像和链接甚至文本都被破坏了,我认为它与 {unwrap} 有关,但没有帮助

这是config/email.php

$config['email_notification']['protocol'] = 'smtp';
$config['email_notification']['smtp_host'] = 'smtp.live.com';
$config['email_notification']['smtp_user'] = 'xxxxx';
$config['email_notification']['smtp_pass'] = 'xxxxxxx'; …
Run Code Online (Sandbox Code Playgroud)

php codeigniter html-email

5
推荐指数
1
解决办法
3011
查看次数

OpenOffice可以从控制台计算字数吗?

我有一个小问题,我需要在控制台中计算字数以阅读doc,docx,pptx,ppt,xls,xlsx,odt,pdf等...所以不要建议我| wc -w或grep,因为它们仅与文本或控制台输出一起使用,并且它们仅计算空格,并且在日语,中文,阿拉伯语,印度教,希伯来语中,它们使用不同的分隔符,因此单词计数错误,我尝试对此进行计数

pdftotext file.pdf -| wc -w
/usr/local/bin/docx2txt.pl < file.docx | wc -w
/usr/local/bin/pptx2txt.pl < file.pptx | wc -w
antiword file.doc -| wc -w 
antiword file.word -| wc -w
Run Code Online (Sandbox Code Playgroud)

在某些情况下,microsoft单词,openoffice悲伤的1000个单词,并且如果语言为(日语,中文,印度语...),则计数器返回10或300个单词,但是如果我使用普通字符,那么我没有问题,那么最大的错误是某些情况下,少3个字符的女巫是“ OK”

我尝试使用soffice,openoffice进行转换,然后尝试WC -w,但是我什至无法进行转换,

soffice --headless --nofirststartwizard --accept=socket,host=127.0.0.1,port=8100; --convert-to pdf some.pdf /var/www/domains/vocabridge.com/devel/temp_files/23/0/??_1000_words_Docx.docx 
Run Code Online (Sandbox Code Playgroud)

要么

 openoffice.org  --headless  --convert-to  ........
Run Code Online (Sandbox Code Playgroud)

要么

openoffice.org3 --invisible 
Run Code Online (Sandbox Code Playgroud)

因此,如果有人知道任何可以正确计数的方法或使用openoffice或其他任何内容或Linux通过控制台显示文档统计信息,请共享它

谢谢。

console openoffice.org word-count

5
推荐指数
0
解决办法
1123
查看次数