NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
cobels
Mar 20, 2012Aspirant
Spotweb and Readynas
Does somebody know how to install spotweb on a readynas ?"
If yes perhaps they could leave a small how to here, so that others can benefit from there experience.
Thx in advance, regards.
If yes perhaps they could leave a small how to here, so that others can benefit from there experience.
Thx in advance, regards.
26 Replies
Replies have been turned off for this discussion
- cobelsAspiranthttp://synology.brickman.nl/syn_howto/H ... potweb.txt
This is how it works on synology nas. So why should it not work on a readynas ?
Nobody here with experience on spotweb ?! - The test file looks ok. (See screenshot) I've not progressed it any further than that, as I'm not sure it's of any use to me, and I'm short of time to dig deeper at the moment. Will try again at the weekend if time permits.
It was pretty straightforward to get that far though. You'll need to create your own "spotweb" (no quotes) database for it, (I use PHPMyAdmin) and you will have to grant permissions on the Spotweb directory (I temporarily put the dir' in Webroot to test) and restart Apache. I think that was about all I did.
Installation is covered here mostly. https://github.com/spotweb/spotweb - cobelsAspirantThx very much for your reply. To make this work i need a step by step instructions on how to do this.
I have not found this on the internet net yet for the readynas. People with limited skills like me could then have there own spotweb on a readynas.
Thx for the link you provided but ik would not know where to start. cobels wrote: Thx very much for your reply. To make this work i need a step by step instructions on how to do this.
I have not found this on the internet net yet for the readynas. People with limited skills like me could then have there own spotweb on a readynas.
Thx for the link you provided but ik would not know where to start.
I'll have to have a further look at it, as all I did was run No 7 on the installation instructions. I went no further than that.
I've never made an addon, although it does interest me, but I doubt I'd find the time to sit down and try that. A simple step by step guide might be possible, but I'm not promising anything.
You have SSH access? Any addons installed?
PHPMyAdmin I used to create the required database.- cobelsAspirantI have SSH access but my knowledge of that is just copying what is see on the internet i do not understand the syntax. I have addons sab couch sickb etc. Thx you for takeing a look at it.
- TMilandAspirantAnyone have any idea how to install spotweb on readynas ultra? https://github.com/spotweb/spotweb#readme
*Edit
Where is the web root folder on the readynas? TMiland wrote: Anyone have any idea how to install spotweb on readynas ultra? https://github.com/spotweb/spotweb#readme
*Edit
Where is the web root folder on the readynas?
It usually gets installed when you've added some Addons, particularly those from Super_Poussin.
Whatever, Webroot was just an example location, you could put it (Spotweb Dir) where you like, within reason.- AmienAspirantCan anyone write a tutorial for this one? its most essential in this dark period
- sign2appleAspirantNow spotplanet is going down it was time for me to install Spotweb on the ReadNas(x86).
I have created a step-by-step tutorial.
Hopefully it will help you. Success!
// Create a website share
========================================================================
http://www.readynas.com/?p=135
I made a share called 'www' and skipped step 4
//Enable Root SSH Access
========================================================================
http://www.readynas.com/?p=4203
//Install MysqlOn add-on
========================================================================
http://www.readynas.com/forum/viewtopic.php?f=48&t=22853
//Install PHP 5.3 add-on
========================================================================
http://readynasxtras.com/readynas-x86-add-ons/php-53-x86
//Set timezone (Using frontview: Add-ons->Installed->PHP5)
========================================================================
//Edit both php.ini files. Search for date.timezone.
//Edit the line so it matches your timezone (example: date.timezone = Europe/Amsterdam)
//Create spotweb database and user (change user and password)
========================================================================mysql
CREATE DATABASE spotweb;
GRANT ALL PRIVILEGES ON spotweb.* TO "user" IDENTIFIED BY "password";
quit
//Install spotweb
========================================================================cd /c
wget --no-check-certificate https://github.com/spotweb/spotweb/tarball/master
tar -xvzf master
mv spotweb-spotweb-* /c/www/spotweb
rm master
// Configure apache
===============================================================================
//Install nano:apt-get update
apt-get install nanonano /etc/frontview/apache/httpd.conf
// Put these lines under the line 'Include /etc/frontview/apache/Shares.conf' and save.Alias /www /c/www
<Location /www>
Options Indexes FollowSymLinks SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Location>
// Restart apachekillall apache-ssl
/usr/sbin/apache-ssl -f /etc/frontview/apache/httpd.conf
//Configure spotweb
=========================================================================
//Run the installation wiazrd:
http://nas-ip/www/spotweb/install.php
//Save your db settings:cd /c/www/spotweb
nano dbsettings.inc.php
//copy and paste these lines, change user and password to yours and save:<?php
$dbsettings['engine'] = 'mysql';
$dbsettings['host'] = 'localhost';
$dbsettings['dbname'] = 'spotweb';
$dbsettings['user'] = 'user';
$dbsettings['pass'] = 'password';
//Update database schema
============================================================================php upgrade-db.php
//Retrieve spots for the first time
============================================================================php retrieve.php
//Run spotweb
============================================================================
http://nas-ip/www/spotweb/
//Retrieve new spots every 30 minutes (create cronjob)
============================================================================crontab -e
// Copy this line and save*/30 * * * * /usr/bin/php /c/www/spotweb/retrieve.php >> /var/log/spotweb.log
That's all - jvdmeerAspirantHi sign2apple, did follow all the lines but at moment i want to install this
http(s)://ip-address/spotweb/install.php
nothing there to install, at least install.php is not there.
checked the install folder and saw that file is there on my server.
But could it be that port must be added in line?
//Configure spotweb
=========================================================================
//Run the installation wiazrd:
http://nas-ip/spotweb/install.php
Related Content
NETGEAR Academy

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