Wishlist 0 ¥0.00

civiCRM有时候会报出下面错误,为什么吗?

 

civiCRM有时候会报出下面错误,为什么吗?

nitialization Error

 

Array
(
    [callback] => Array
        (
            [0] => CRM_Core_Error
            [1] => simpleHandler
        )

    [code] => -14
    [message] => DB Error: no database selected
    [mode] => 16
    [debug_info] => SELECT locale_custom_strings FROM civicrm_domain WHERE id = 1 [nativecode=2027 ** Malformed packet]
    [type] => DB_Error
    [user_info] => SELECT locale_custom_strings FROM civicrm_domain WHERE id = 1 [nativecode=2027 ** Malformed packet]
    [to_string] => [db_error: message="DB Error: no database selected" code=-14 mode=callback callback=CRM_Core_Error::simpleHandler prefix="" info="SELECT locale_custom_strings FROM civicrm_domain WHERE id = 1 [nativecode=2027 ** Malformed packet]"]
)
 
 

 

 

Google地图API被墙问题总结

google地图分三个
1. google.cn的 http

http://ditu.google.cn/maps/api/js
这个不会被墙,且加载的资源都是.cn 的,最好用,但是要求你的域名也是http的
如携程http
http://hotels.ctrip.com/international/bangkok359 能够正常展示
但是无法使用google.maps.places.Autocomplete 地址搜索接口(此接口依然走的google.cn)
2.google.cn 的https

https://ditu.google.cn/maps/api/js
这个js正常但是,资源用的是.com

例如携程的地图如果用https访问的话效果如下
https://hotels.ctrip.com/international/bangkok359 无法正常展示

这里写图片描述
3. google.cn

https://ditu.google.cn/maps/api/js 除非翻墙,否则彻底没戏
总结

彻底放弃google

Joomla 3.x. How to remove Google map

Let’s remove Google map from this page:

Joomla_How_to_remove_google_map-1

  1. Connect to your FTP or File Manager and follow this path “templates\themeХХХХ\html\com_contact\contact\default.php” to open “default.php” file:

    Joomla_How_to_remove_google_map-7

  2. In default.php file search for this code:

    1
    2
    3
    4
    <!-- Map --> 
     <div class="contact_map" id="contact_map"
     {mosmap} 
     </div>

    Joomla_How_to_remove_google_map-8

  3. Remove those codes and hit Save changes.

  4. Refresh the page to see that the google map has been removed:

mysql 参数调优(7) binlog的写入优化 sync_binlog

sync_binlog 决定什么时候写入binlog,影响到了mysql吞吐量和主从同步延迟

 

 

 

 

 

sync_binlog :这个参数是对于MySQL系统来说是至关重要的,他不仅影响到Binlog对MySQL所带来的性能损耗,而且还影响到MySQL中数据的完整性。对于“sync_binlog”参数的各种设置的说明如下:

1、sync_binlog=0,当事务提交之后,MySQL不做fsync之类的磁盘同步指令刷新binlog_cache中的信息到磁盘,而让Filesystem自行决定什么时候来做同步,或者cache满了之后才同步到磁盘。

2、sync_binlog=n,当每进行n次事务提交之后,MySQL将进行一次fsync之类的磁盘同步指令来将binlog_cache中的数据强制写入磁盘。

在MySQL中系统默认的设置是sync_binlog=0,也就是不做任何强制性的磁盘刷新指令,这时候的性能是最好的,但是风险也是最大的。因为一旦系统Crash,在binlog_cache中的所有binlog信息都会被丢失。而当设置为“1”的时候,是最安全但是性能损耗最大的设置。因为当设置为1的时候,即使系统Crash,也最多丢失binlog_cache中未完成的一个事务,对实际数据没有任何实质性影响,就是对写入性能影响太大,binlog虽然是顺序IO,多个事务同时提交,同样很大的影响MySQL和IO性能。虽然可以通过group commit的补丁缓解,但是刷新的频率过高对IO的影响也非常大。对于高并发事务的系统说,“sync_binlog”设置为0和设置为1的系统写入性能差距可能高达5倍甚至更多。

所以很多MySQL DBA设置的sync_binlog并不是最安全的1,而是100、1000 或者是0。这样牺牲一定的一致性,可以获得更高的并发和吞吐量!

通过我的实验,将sync_binlog设置为0。发现根本就不写入binlog!也许是我没有等到filesystem自行同步。。。

高负载下, 主库sync_binlog=1 可能造成主库的binlog 不能及时推送到从库(反应在从库的show slave status\G上就是 second_behind_master一会儿为0 一会儿又变的很大)

在线修改

SET GLOBAL sync_binlog=0

实验

插入50万条数据

未开启binlog 耗时 25秒
sync_binlog=0 耗时 43秒
sync_binlog=1 耗时太长了,没有记录到
sync_binlog=100 耗时 228秒
sync_binlog=1000 耗时 47.847s 秒

从sync_binlog=0 消耗时间比未开启binlog时多来看,sync_binlog=0可能存在缓存操作。等到时间成熟就会把缓存同步到binlog的。但是具体什么时候会去同步呢?我还不知道

资料 https://dev.mysql.com/doc/refman/5.7/en/binary-log.html

sql_log_bin

对于数据库的操作,经常需要暂时停止对bin-log日志的写入,那就需要这个命令:set sql_log_bin=on/off

About Us

Since 1996, our company has been focusing on domain name registration, web hosting, server hosting, website construction, e-commerce and other Internet services, and constantly practicing the concept of "providing enterprise-level solutions and providing personalized service support". As a Dell Authorized Solution Provider, we also provide hardware product solutions associated with the company's services.
 

Contact Us

Address: No. 2, Jingwu Road, Zhengzhou City, Henan Province

Phone: 0086-371-63520088 

QQ:76257322

Website: 800188.com

E-mail: This email address is being protected from spambots. You need JavaScript enabled to view it.