Jump to content

nato

Members
  • Content Count

    2
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. nato

    Mini nvr questions

    Mike Mahon, please help me with this: The script in email setting of NVR config page allow only .COM and .CN TLDs for SMTP server. How can I overcome this? My SMTP server has Slovak TLD ".SK", but it should accept any TLD for SMTP server: function CheckPop3orSMTP(str) { if (CheckStr(str)) { return false; } var errStr = arguments[1] || ''; var reg = /^(smtp|pop3).[a-zA-Z0-9]+\.(com|cn)$/; if(str.length > 0 && !reg.test(str)){ alert(errStr + ' '+g_illegal); return false; } return true; } Ok, I found the solution that worked for me. You need connect to miniNVR using telnet protocol. I used putty freeware. Username: root Password: antslq Using command "ls" and "cd" find the location of \web\www\public\js\ There are JavaScripts of web-interface. We need to edit the file check.js using command: vi check.js Be careful Do not do any step of this tutorial, if you never used VI linux text editor. You will be very confused and disappointed. It hasn't any menu, buttons, e.t.c, but it is very light and usefull after some learning and practise... To set the wanted TLDs you need to edit this part of code (com|cn) in line: var reg = /^(smtp|pop3).[a-zA-Z0-9]+\.(com|cn)$/; I changed it to (com|sk) for me. Do not forget to save the file using ESC :qw command. After this, it is nessesery to clean all you cache in web-browser, and maybe reboot the mini NWR. (sorry for my terrible english, but maybe you will understand it, if you really want to, or need to )
  2. nato

    Mini nvr questions

    Hello, I have a device labeled Cotier Super Mini NWR. I bricked it, so I ordered a new one. Then found this forum, all needed information and files for restoring it. Firmware was supplied by one member to another using teamviewer - this one works... Now, have a spare piece for testing purposes. Wish to test the original X-Vision firmware. I tried GhostRider's instructions, but flashing always end with "Upgrade Fail" in 1-2 second. Any suggestion how to put X-Vision FW to this device? Flashing via usb boot drive works well, logo changed to X-Vision but after all, device won't boot normally. Hardware seems to be the same. Maybe edit some identification information via telnet or something?
×