错误提示如下: New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". 以上错误是因为httpd-xampp.conf做了限制造成的,仅限于本地访问按以下方法修改后即可远程访问 打开httpd-xampp.conf文件…
Idea2018的Springboot项目,如果里面有.sql文件,打开后,会提示"No data sources are configured to run this SQL and provide advanced" 其实这个提示,并不影响你敲代码,你可以手动通过其它数据库客户端工具来执行这些sql命令创建数据表结构.但是对于强迫症如我的这样子,并不能容忍~于是: 1.打开EDEA右侧的Database选项卡 如果你的IDEA没有出现右侧这个菜单,可以通过:File–>set…
linux输入yum后提示: -bash: /usr/bin/yum: No such file or directory的解决方案 今天在安装程序时,发现有一个插件未安装,我就随手敲了一个命令,看都没看 yum remove yum 然后就杯具了... 1 [root@localhost ~]# yum 2 -bash: /usr/bin/yum: No such file or directory   这个粗心的手误倒不至于让整个系统瘫痪,yum 却无法使用了.于是,我试着折腾了一番 1 r…
mac 连接mysql的时候提示 Warning: mysqli::real_connect(): (HY000/2002): No such file or directory [说明1]MAC下MYSQL的安装路径:/usr/local/mysql-5.5.28-osx10.6-x86 数据库的数据文件在该目录的data文件夹中: 命令文件在bin文件夹中. [说明2]通过终端打开MYSQL命令行的方法:/usr/local/mysql-5.5.28-osx10.6-x86/bin/mysq…
Centos7解压.tar.bz2提示tar (child): bzip2: Cannot exec: No such file or directory解决方法 原因是因为该centos没有bzip2解压工具解决方法如下:yum -y install bzip2 即可解决. 原文来源:http://www.xuecan.net/wenku/17355.html…
使用帝国备份王软件提示 Parse error: syntax error, unexpected end of file时, 可以尝试一下方法: 1.php.ini要把short_open_tag 设置为 On  然后重启apache服务器…
问题:使用git extension 拉取或者push代码,提示 "C:\Program Files\Git\bin\git.exe" pull --progress "origin" +refs/heads/zjwfatal: unable to access 'https://github.com/**/': error setting certificate verify locations: CAfile: C:/Program Files/Git/ming…
z当使用git ------上传文件到GitHub上时!~~~出现了以下错误  :fatal: unable to access ' 可以采用以下解决方式: 修改GitHub上的地址格式=====https: //username:passwords@github.com/…… 当还是存在这个问题时:error setting certificate verify locations 可以采用以下方式解决:使用git 命令输入这个代码:git config --system http.sslve…
先打开git bash窗口 执行命令: git config --system http.sslcainfo "C:\Program Files (x86)\git\bin\curl-ca-bundle.crt" (注意修改为正确的文件路径)或 git config --system http.sslverify false…
解决办法: 在File---->Setting--->Languages & Frameworks--->SQL Dialects中,选择对应的数据库,如MySQL,之后点击保存即可.…