Jump to content

herege

Members
  • Posts

    4
  • Joined

  • Last visited

Reputation

0 Neutral

About herege

  1. I'm just begining with FOG (just found it) and installed version 0,28. I could not get 0.29 to work as it gave me an gettext and clamav-update error. But, as i end up reading an old tutorial, i created the fog user in linux prior to installing fog software . After installing it i noticed that it creates this user if it doesn't exist. So, i think that when migrating servers this problem also arises as the password in the database will not match. So, this FTP password is not in "other information menu". Here resides the TFTP password that also needs to be changed in order to set tasks as upload or download images. FTP password, on the other hand, is on "storage management" menu. In my case i only have the default storage set so just edit it and change the FTP password. Hope it can help. Thanks for all those who created and maintain this excellent software. Best Regards
  2. In the previous message ( ; ) became ( What i meant was that i replaced ( , ) with ( ; ) Best regards
  3. Found the problem. The csv file (dest.csv) was being generated with (,) spearating the values and not with (. This prevented the ADODB object from reading the field names from dest.csv. I added a function to convert (,) to ( in the dest.csv file after it being generated. I leave it here, just in case someone else needs it: Sub CommaReplace Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile("C:\Inetpub\Admin\dest.csv", ForReading) strText = objFile.ReadAll objFile.Close strNewText = Replace(strText, ",", ";") Set objFile = objFSO.OpenTextFile("C:\Inetpub\Admin\dest.csv", ForWriting) objFile.WriteLine strNewText objFile.Close End Sub Thanks everybody.
  4. I'm having the following error: Microsoft OLE DB Provider for ODBC Drivers error '80040e10' I've been googling and it seems that when doing : dateSQL = "SELECT Min(Time) AS MinOfTime, Max(Time) AS MaxOfTime FROM " & SummaryCSVName & ";" The script can't read the column names.... Did any of you had this issue? Best Regadrs
×
×
  • Create New...