NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
rubberscorpio
Nov 07, 2012Aspirant
Readynas Public Link down?
My ReadynasPhotoII says my HostName for web forwarding is not registered. It has been registered for over a year. It appears the site linking to our servers is down. Anyone else having the same issue? :x
71 Replies
Replies have been turned off for this discussion
- NASguruApprenticeI also confirmed all is working this morning including new invitations! This has been asked before, but why can't the RP2 just be made as a standalone add-on? In short, the server would reside on the individual's NAS rather than using Netgears servers to funnel the traffic to/from the NAS. This was one of my pet-peeves when I originally purchased the NAS as all other add-ons reside locally where this one needs to communicate with remote servers to function correclty. That aside, thanks for fixing it as the invitations now seem to be processed faster.
- ce34AspirantNobody has an idea of these message from Photos II means ????? and what to check when yu get error -2 ?.
I still can't send any invitations
OK: All connection tests from ReadyNAS Photos II to UPnP Router and photos.readynas.com site have passed.
OK: Hostname nas-x-x-x is available.
Error: Fail to access Photos II (http://xx.yyy.zzz.ww:8086) from internet. (error=-2).
OK: Successfully found your public IP (xx.yyy.zzz.ww). - ce34AspirantWhere is the ReadyNAS Photos II support ??? It's been 1 month and 3 posts i left here and since then i did not get even the beginning of an answer!!!
And i still cannot access RNP2 ...
Please let me know seriously what to do to fix this error =-2
Txs - chirpaLuminaryBest if you contact NTGR Support and have them work on reaching the Engineers. As seen here, one dev only showed up after repeated alternative contact methods.
- NASguruApprenticeIs this down again? I created an album yesterday and the invitation gets sent but clicking on any of the links in the inviation results in Web page not available. Is anyone else seeing this? I also rebooted the NAS with no success. I have not tried uninstalling and re-installing as I suspect it's not me at this point.
Sorry, I pinpointed this to Verizon FiOS router and have now fixed the inbound session. You have to love the fact they can access their device anytime and make changes without informing you. :D - pkasTutorI had no trouble with albums today.
- SelleAspirantHi all!
I got an answer for the quoted problem below from the Swedish support team and I'm gonna try and translate it so everyone understands.
"Hi!
We have been told by engineering that the problem with ReadyNas Photos 2 will be fixed with the next update for the NAS.
I'm sorry but I can't give you a date when the update is coming but we have to hope that it won't be to far away.
I will close this ticket now."
This answer could fit quite well since the problem started for me after I installed the latest firmware.
So lets keep our fingers crossed that a new firmware will be available soon and it will fix this problem.ce34 wrote: Hi , i don't know if all works fine for everybody but on my side things have changed but i'm still stuck with Phoyos II. When i use the Manage ReadyNas
Photo II function i get a status not ready and when i use the diagnose option i get the following
OK: All connection tests from ReadyNAS Photos II to UPnP Router and photos.readynas.com site have passed.
OK: Hostname nas-A0-51-80 is available.
Error: Fail to access Photos II (http://xx.yyy.zzz.ww:8086) from internet. (error=-2). If you disabled automatic configuration of UPnP router, please make sure port 8086 is forwarded to the NAS.
OK: Successfully found your public IP (xx.yyy.zzz.ww).
I have to tell you that of course i did not disable the automatic configuration of UPnP router that i rebooted both the router & the NAS more than one tilme .
Could you tell me what is the meaning of RC -2 from internet .
One more info: before to upgrade to 5.3.6 everything was fine with Photos II (about one month ago) and that i am at level 5.3.7 now
Txs for your help - juan02044AspirantHello,
Any news about this? I'm having the same problem. Any official communicate from NETGEAR about this issue?
Thanks in advance for your reply. - pkasTutorThe Photos2 service seems to be working fine for me.
If you are still having problems and want to know how to completely avoid the middle-man service that ReadyNAS provides, so that you can share your albums directly, PM me. - chirpaLuminaryLooks like the photos.readynas.com is broken again. PHP scripts are returning as plain-text, not interpreted HTML. If this was any other company, there would be 24/7 monitoring of public services, so the internal staff would know before customers...
http://photos.readynas.com/html/php/get ... ?v%3d1.0.6<?php
function print_header($title)
{
print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n";
print "<html lang=\"ja\">\n";
print "<head>\n";
print "<meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\n";
print "<title>$title</title>\n";
print "</head>\n";
}
function split_version($v) {
$ver = array();
if (preg_match("/^(\d+)\.(\d+)\.(\d+)-T(\d+)$/", $v, $m)) {
$ver['name'] = $v;
$ver['major'] = $m[1];
$ver['minor'] = $m[2];
$ver['patch'] = $m[3];
$ver['testrel'] = $m[4];
}
else if (preg_match("/^(\d+)\.(\d+)\.(\d+)$/", $v, $m)) {
$ver['name'] = $v;
$ver['major'] = $m[1];
$ver['minor'] = $m[2];
$ver['patch'] = $m[3];
$ver['testrel'] = 65535; // NOT NULL (primary key cannot be null. so use 65535 as official release)
}
else {
$ver['name'] = $v;
}
return $ver;
}
print_header("Release Note");
foreach (array_keys($_GET) as $key) {
if ($key == "v") {
$ver = split_version($_GET["$key"]);
}
else if ($key == "o") {
$oldver = split_version($_GET["$key"]);
}
else if (preg_match("/^v=(.*)$/", $key, $m)) {
$ver = split_version(preg_replace("/_/", ".", $m[1]));
}
else if (preg_match("/^o=(.*)$/", $key, $m)) {
$oldver = split_version(preg_replace("/_/", ".", $m[1]));
}
}
try {
$pdo = new PDO('mysql:host=localhost; dbname=rnp2srv', 'rnp2register', 'rnp2register');
print "<h3>ReadyNAS Photos II Add-on</h3>";
$sql =
'SELECT comment,releasedate' .
' FROM `release`' .
" WHERE major=$ver[major] AND minor=$ver[minor] AND patch=$ver[patch]";
$reldir = "/var/www/html/release/$ver[major].$ver[minor].$ver[patch]";
if ($ver['testrel'] < 65535) {
$sql .= " AND testrel=$ver[testrel]";
}
else {
$sql .= " AND testrel IS NULL";
}
print "<table border=\"0\">";
print "<tr><td align=\"right\">Version: </td><td>$ver[name]</td></tr>";
$stmt = $pdo->query($sql);
if ($stmt && $stmt->rowCount() > 0) {
$row = $stmt->fetch(PDO::FETCH_ASSOC);
print "<tr><td align=\"right\">Comment: </td><td>{$row['comment']}</td></tr>";
print "<tr><td align=\"right\">Release Date: </td><td>{$row['releasedate']}</td></tr>";
}
print "</table>";
if ($ver['major']==$oldver['major'] &&
$ver['minor']==$oldver['minor'] &&
$ver['patch']==$oldver['patch'] &&
$ver['testrel']>$oldver['testrel'] &&
$ver['testrel']<65535) {
$relnote = "$reldir/T" + $ver['testrel'] + "/release_note.html";
if (file_exists($relnote)) {
print "<h4>Release Note</h4>";
print implode('', file($relnote));
}
else {
for ($t = $oldver['testrel']+1; $t <= $ver['testrel']; $t = $t+1) {
$relnote = "$reldir/T$t/relnote.html";
if (file_exists($relnote)) {
print "<h4>Release Note (-T$t)</h4>";
print implode('', file($relnote));
}
}
}
}
else {
if ($ver['testrel'] < 65535) {
$relnote = "$reldir/T$ver[testrel]/release_note.html";
if (!file_exists($relnote)) {
$relnote = "$reldir/T$ver[testrel]/relnote.html";
}
}
else {
$relnote = "$reldir/formal/release_note.html";
if (!file_exists($relnote)) {
$relnote = "$reldir/formal/relnote.html";
}
}
if (file_exists($relnote)) {
print "<h4>Release Note</h4>";
print implode('', file($relnote));
}
}
}
catch (PDOException $el) {
print $el->getMessage() . "\n";
try {
if ($dbh != null) {
$dbh->rollBack();
}
}
catch (PDOException $e2) {
print $e2->getMessage() . "\n";
}
}
?>
http://photos.readynas.com/html//error_ ... _login.php?<?
echo "<html>\n";
if ($_GET[uri]) {
echo "<h1>Sorry, you entered url which may be temporaly offline or obsoleted</h1>";
echo "<p>http://$_SERVER[HTTP_HOST]$_GET[uri] may be off-lined or obsoleted.";
list($dummy, $rnp2host, $rnp2path) = explode('/', $_GET['uri'], 3);
if ($_GET['lastupdate']=='') {
$lastupdate = 'Never';
}
else {
$lastupdate = date(DATE_COOKIE, $_GET['lastupdate']);
}
echo "WebForwarding information for '<tt>$rnp2host</tt>' at: $lastupdate.</p>";
echo '<p>Please try later. If you continuee seeing this message, please contact with whome you got this url from.</p>';
echo '<p>Following are possible reasons:</p>';
echo '<ol>';
echo '<li>If WebForwarding have never been setup, router is not support UPnP or not functioning well. Try power cycle the router.';
echo '<li>Photographer turned off ReadyNAS.</li>';
echo '<li>Photographer uninstall ReadyNAS PhotosII.</li>';
echo '</ol>';
} else {
echo "Bug in mod_rnp2hop.c.";
phpinfo();
}
echo "</html>";
?>
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!