rejetto forum

Software => HFS ~ HTTP File Server => FHFS => Topic started by: exis on July 14, 2014, 06:18:24 AM

Title: [SOLVED] Error starting FHFS 2.0
Post by: exis on July 14, 2014, 06:18:24 AM
After running FHFS_Launcher and press in "Start FHFS Server" appears an error popup showing the message: "Startup_Error_0X1004"

I was unable to find what this error means.

I tried to stop and restart the server multiple times with no success.

Does anybody know what this errorcode means?

Regards
Title: Re: Error starting FHFS 2.0
Post by: bmartino1 on July 14, 2014, 12:30:44 PM
IP conflict:

http://blog.iobit.com/error_dhcp_address_conflict-4100-0x1004_2303.html
Title: Re: Error starting FHFS 2.0
Post by: bmartino1 on July 14, 2014, 12:34:21 PM
possible resloution:

Windows key + R

run "cmd"

---batch---

ipconfig /release && ipconfig /renew

--------

This will only work if you are trying to receive an ip via dhcp....
error due to a check in ftp service!
Title: Re: Error starting FHFS 2.0
Post by: raybob on July 14, 2014, 10:16:34 PM
Nope, 0x1004 means it couldn't find hfs.vfs.  FHFS errors are not the same as Windows errors :)

Code: [Select]

            check_file("server.dll", "Startup_Error_0x0001");

            check_file("hfs.events", "Startup_Error_0x1001");
            check_file("version.dat", "Startup_Error_0x1002");
            check_file("hfs.ini", "Startup_Error_0x1003");
            check_file("hfs.vfs", "Startup_Error_0x1004");

            check_file("openssl-bin\\openssl.exe", "Startup_Error_0x2001");
            check_file("openssl-bin\\ssleay32.dll", "Startup_Error_0x2002");
            check_file("openssl-bin\\libeay32.dll", "Startup_Error_0x2003");
            check_file("openssl-bin\\libssl32.dll", "Startup_Error_0x2004");

            check_file("stunnel-bin\\stunnel.exe", "Startup_Error_0x3001");
            check_file("stunnel-bin\\libeay32.dll", "Startup_Error_0x3002");
            check_file("stunnel-bin\\msvcr90.dll", "Startup_Error_0x3003");
            check_file("stunnel-bin\\ssleay32.dll", "Startup_Error_0x3004");

            check_file("php-bin\\php5ts.dll", "Startup_Error_0x4001");
            check_file("php-bin\\php.exe", "Startup_Error_0x4002");

            check_file("filezilla-bin\\FileZilla.exe", "Startup_Error_0x5001");
            check_file("filezilla-bin\\FzGSS.dll", "Startup_Error_0x5002");
            check_file("filezilla-bin\\libeay32.dll", "Startup_Error_0x5003");
            check_file("filezilla-bin\\ssleay32.dll", "Startup_Error_0x5004");

            check_file("sendemail-bin\\email.exe", "Startup_Error_0x6001");
Title: Re: Error starting FHFS 2.0
Post by: exis on July 15, 2014, 08:08:50 AM
That was it!!

After copying hfs.vfs.bak as hfs.vfs I was able to start FHFS again.

Thanks a lot.  ;D