热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

gs_tmp_tz.***.**文件

gs_tmp_tzisthetemporarytimezonedetectionfile.Topreventthisfilefrombeingcreatedatall,j

每次用FTP登录,空间总是产生很多形如:  gs_tmp_tz.***.** 的文件,感觉太凌乱。

查询相关资料得知: 

gs_tmp_tz... is the temporary timezone detection file.


RESOLUTION/EXPLANATION

gs_tmp_tz is the temporary time zone detection file. The only reason you should ever see this file on the server is if CuteFTP was able to upload it, but unable to delete it. The most likely reason this might happen is if you have upload permissions, but not delete permissions to the default folder. (You might be able to prevent this problem by changing the default remote folder to one for which you have upload and delete permissions.) A less likely reason is that the server created the temporary file for the upload, but returned an error response for the upload.

If CuteFTP is enabled to automatically detect the time zone of a server, when you log into the server, CuteFTP will perform a series of actions to try to detect the time zone offset:

  1. Look at the local system time.
  2. Attempt to upload this temporary file (gs_tmp_tz).
  3. If the upload was successful, look at the server-modified time stamp for the uploaded temporary file.
  4. Attempt to delete the temporary file (if the upload was successful).

The difference in the local time and the remote time stamp allows CuteFTP to know what the time zone offset is so that it can tell whether files on the server are older than or newer than local files. It is important to know the correct time zone offset if you want to use the Smart Overwrite or folder synchronization features; otherwise the wrong files might be overwritten.

You can turn off the automatic detection of the server‘s time zone, which will prevent this file from being created.

To turn off automatic detection of the server‘s time zone

  1. Open the Site Manager.
    • In Cute FTP Pro: Right-click the site, then click Properties.
    • In CuteFTP Home: Click the site.

      The Site Properties appear.

  2. Click the Type tab.

    ,

  3. In the Server time zone area, clear the Automatically detect check box.
  4. If necessary, set the time zone offset for the server. Click the down arrow and then select the time zone of the server.
  5. Click ConnectOK, or Exit (depending on your need and the version of CuteFTP).


OK, 以上设置后,完美解决现有问题。

本文地址:  http://blog.csdn.net/aerchi/article/details/40976455

gs_tmp_tz.***.**文件


推荐阅读
  • 本文将从基础概念入手,详细探讨SpringMVC框架中DispatcherServlet如何通过HandlerMapping进行请求分发,以及其背后的源码实现细节。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • 本文介绍了如何通过C#语言调用动态链接库(DLL)中的函数来实现IC卡的基本操作,包括初始化设备、设置密码模式、获取设备状态等,并详细展示了将TextBox中的数据写入IC卡的具体实现方法。 ... [详细]
  • 本文详细介绍了C++中的构造函数,包括其定义、特点以及如何通过构造函数进行对象的初始化。此外,还探讨了转换构造函数的概念及其在不同情境下的应用,以及如何避免不必要的隐式类型转换。 ... [详细]
  • 数据类型--char一、char1.1char占用2个字节char取值范围:【0~65535】char采用unicode编码方式char类型的字面量用单引号括起来char可以存储一 ... [详细]
  • importjava.io.*;importjava.util.*;publicclass五子棋游戏{staticintm1;staticintn1;staticfinalintS ... [详细]
  • 解决Visual Studio Code中PHP Intelephense误报问题
    PHP作为一种高度灵活的编程语言,其代码结构可能导致Intelephense插件在某些情况下报告不必要的错误或警告。自1.3.3版本起,Intelephense引入了多个配置选项,允许用户根据具体的工作环境和编程风格调整这些诊断信息的显示。 ... [详细]
  • 在处理大数据量的SQL分页查询时,通常需要执行两次查询来分别获取数据和总记录数。本文介绍了一种优化方法,通过单次查询同时返回分页数据和总记录数,从而提高查询效率。 ... [详细]
  • 本文通过一个具体的实例,介绍如何利用TensorFlow框架来计算神经网络模型在多分类任务中的Top-K准确率。代码中包含了随机种子设置、模拟预测结果生成、真实标签生成以及准确率计算等步骤。 ... [详细]
  • 嵌套列表的扁平化处理
    本文介绍了一种方法,用于遍历嵌套列表中的每个元素。如果元素是整数,则将其添加到结果数组中;如果元素是一个列表,则递归地遍历这个列表。此方法特别适用于处理复杂数据结构中的嵌套列表。 ... [详细]
  • 本文详细探讨了BCTF竞赛中窃密木马题目的解题策略,重点分析了该题目在漏洞挖掘与利用方面的技巧。 ... [详细]
  • 1#include2#defineM1000103#defineRGregister4#defineinf0x3f3f3f3f5usingnamespacestd;6boolrev ... [详细]
  • SQL Server 存储过程实践任务(第二部分)
    本文档详细介绍了三个SQL Server存储过程的创建与使用方法,包括统计特定类型客房的入住人数、根据房间号查询客房详情以及删除特定类型的客房记录。 ... [详细]
  • 回顾两年前春节期间的一个个人项目,该项目原本计划参加竞赛,但最终作为练习项目完成。独自完成了从编码到UI设计的全部工作,尽管代码量不大,但仍有一定的参考价值。本文将详细介绍该项目的背景、功能及技术实现。 ... [详细]
author-avatar
华福-日语人才_601
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有