Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用aspshell时的小问题 #98

Closed
jjf012 opened this issue Sep 4, 2018 · 1 comment · Fixed by #99
Closed

使用aspshell时的小问题 #98

jjf012 opened this issue Sep 4, 2018 · 1 comment · Fixed by #99
Labels
🐛Bug 程序自身问题 🤝Welcome PR 欢迎对该问题提PR

Comments

@jjf012
Copy link
Contributor

jjf012 commented Sep 4, 2018

  1. 无法连接access数据库
    access.js里面原本使用的arg2实际上是空的值,这里我参照菜刀的配置文件改为SI="[ADO DATABASE]"&chr(9)后可正常。
  2. filemanager.js中的wget所使用的Microsoft.XMLHTTP并不支持https,这里我改用MSXML2.ServerXmlHttp正常。
  3. 修改指定文件(夹)时间失败,原因是因为路径参数是C:/wwwroot/www.test.com/1.asp,而filemanager.js中的retime使用的是\\来分割路径。
    我修改了filemanager\index.js,然后功能正常。
      this.files.cell.progressOn();
      let path = this.path;
      if (this.isWin) {
          path = path.replace(/\//g, '\\')
      }
      // http request
      this.core.request(
        this.core.filemanager.retime({
          // path: this.path + name,
          path: path + name,
          time: value
        })
@Medicean Medicean added 🐛Bug 程序自身问题 🤝Welcome PR 欢迎对该问题提PR labels Sep 4, 2018
@Medicean
Copy link
Collaborator

Medicean commented Sep 4, 2018

@jjf012 收到,大概在下周二之前修复完,如果你能提个 PR 就再好不过了。

@jjf012 jjf012 mentioned this issue Sep 4, 2018
Medicean added a commit that referenced this issue Sep 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛Bug 程序自身问题 🤝Welcome PR 欢迎对该问题提PR
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants