Minglarn
Members-
Content Count
11 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Everything posted by Minglarn
-
Hi still having issues with the GooLink app for iOS. The app works localy but not when outside my network. Havent changed anything and my UNPN is working.
-
Regarding GOOLINK. I'm having trouble getting it to work for the past two weeks. Device is offline all the time. Is it the same for you guys?
-
Must be something strange with my NVR-2 ... Tried your way but still says upgrade fail. Have one more option to go... will try to use my USB harddrive instead of my usb flash.
-
Thanks! I've the latest firmware. Did try your protocols but it still says invalid upgrade, upgrade fails...
-
Bumping the thread. I've recently bought the N6200-16channel EH version also called mini 2. I'm not able to update the nvr with new protocols. wrong update file is only error code I get from the nvr. Is there a another way to update the nvr?
-
Foscams: 9831 & 9821 v1 Hikvision: DS-2CD2032 The Foscams are useless due worthless and bad firmware.wont ever buy a Foscams again.
-
Hi. The hikvision works well with this nvr. The motion detection and all works perfect:) Have Foscams and hiks. The hikvision is a perfect match with this nvr.
-
Hi does these protocols work with mini nvr2? And where am I able to find them? Best regards.
-
Hi. Have a N6200 EH 16 channel mini nvr2. Pretty nice thing. However, trying to ad i12 protocol I used to my old mini nvr box. All I get is not an upgrade file, anyone else with same result?
-
Set OSD text with PHP (Hikvision DS-2CD2032-I )
Minglarn replied to Minglarn's topic in IP/Megapixel Cameras and Software Solutions
Thanks for the post! I solved it by using a raspberry and curl. =) -
Set OSD text with PHP (Hikvision DS-2CD2032-I )
Minglarn posted a topic in IP/Megapixel Cameras and Software Solutions
Hi!! Been following this forum for a while and have learned a lot! A couple days ago I thought I could change the settings on my DS-2CD2032-I cam using PHP and XML. Is it possible to do this cause I've tried this code: <?php $xml_data = '<?xml version="1.0" encoding="UTF-8"?> <TextOverlay version="1.0" xmlns="http://www.hikvision.com/ver10/XMLSchema"> <id>1</id> <enabled>true</enabled> <posX>16</posX> <posY>0</posY> <message>Temp: -0.5C</message> </TextOverlay>'; $URL = 'http://user:passwd@192.168.1.218/Video/inputs/channels/1/overlays/text/1'; $ch = curl_init($URL); curl_setopt($ch, CURLOPT_URL, $URL); curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); curl_close($ch); print_r($output); ?> But no matter how I do it I always get the result as: Invalid Operation What am I doing wrong? //Minglarn...