今天在win下玩nginx的时候 提示500错误 看了下nginx的logs  提示 123: The filename, directory name, or volume label syntax is incorrect 然后 发现别的网站都没问题  今天加的网站就出问题了 原来别的网站目录没有那么深 也就是3层 今天用tp5配置的多了一层public  查了查 是反斜杠的问题 把所有win下的改成linux下的斜杠即可 root "G:/phpStudy/PHPTutorial/WWW/…
错误信息: 2019/09/09 13:54:37 [crit] 796#7096: *1 GetFileAttributesEx() "F: ginx-1.12.2\html\dist" failed (123: The filename, directory name, or volume label syntax is incorrect), client: 127.0.0.1, server: localhost, request: "GET / HTTP/1.1&q…
使用virtual PC 时出现的一些问题 1.问题点:在安装virtual PC的时候,需要先安装WindowsXPMode_en-us.exe 我下载的英文版,路径默认在C:\360安全浏览器下载,安装时出现错误:the filename directory name or volume label syntax is incorrect 解决:把文件拷贝到新的目录,路径不包括中文即可安装成功. 例如: C:\1\WindowsXPMode_en-us.exe 2.安装好虚拟机,打开一个已经…
分区的过程正常: [root@db1 /]# fdisk -l   Disk /dev/sda: 21.4 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes      Device Boot      Start         End      Blocks   Id  System /dev/sda1   *  …
adb pull /sdcard/1.txt e:/ 报错:adb: error: cannot create file/directory 'E:\': No such file or directory [处理方法:] 在e盘下新建一个文件夹123,将手机中的文件pull到123文件夹中,OK…
安卓工作室 android studio 汉化后,报错. 设置界面打不开. Android studio has been sinified and reported wrong.The setup interface cannot be opened. 安卓工作室 android studio 版本 2.3.3 Android studio version 2.3.3 汉化包版本 AndroidStudio_v2.0.0.20_resources_cn-v0.2-20170414.jar Lo…
现象: 一段代码: ClassLoader loader = XXXUtil.class.getClassLoader(); String jsFileName = loader.getResource("") + "/resources/" + fileName; logger.info("文件路径为"+jsFileName); 在本地开发测试,完全ok(windows下): 上测试环境,报错/opt/jar_code/xxx/xxxx.jar…
webpack手动配置webpack.config.js文件,打包时出现的报错,可以试试这种解决方案 报错如下: No configuration file found and no output filename configured via Cli option.A configuration file could be named 'webpack.config.js' in the current directory.Use --help to display the CLI optio…
$ brew install php70-mcrypt 报错: Error: parent directory is world writable but not sticky 搜索到github的答案 https://github.com/Homebrew/legacy-homebrew/issues/40345 原因:/tmp目录权限不对 $ ls -ld /private/tmp 打印出来 /private/tmp 被标黄了 解决办法: $ sudo chmod +t /tmp $ ls…
问题一 sed编辑命令:[sed -i 's/a/b/g' test.txt]   报错:sed: 1: "test.txt": undefined label 'est.txt'   解决方案:增加一个备份的追加名[sed -i '.bak' 's/a/b/g' test.txt]   原因:mac强制要求备份,否则报错 当然可以不使用其他备份名字,只是用’',就可以只保留一份 sed -i ‘’ ’s/a/b/g’ test.txt   问题二 sed追加命令:[sed -i ''…