How to install stellard on a server with integrate design? - stellar.js

I want to install stellard on my server. I download the stellard from github directory, here is link. Now I want to install and implement the design. I want step by step procedure to install like all configuration and database setup, etc. So how can I do this?
What I already done..
I am new in this open source and need deep demonstration of its installation and implementation. I also search out google, But can't get any useful tutorial how to work on this. I see there are some commands for installation but I can't way to work. Someone who really experience in stellard can give view to work on stellard. First I want to install stellard on my local host and after that on my live server.
My review about stellard..
This is very rare use open source.I search out is solution in some programing sites but can't get any help. Even I search stellard/ripple in youtube but no tutorial available there?

Related

I have created a package of an App using nw.js. How can i create a dmg file to distribute it?

Actually there i have a html, CSS and java script based app and i created build of it using nw.js technology using build command. The problem is i want the application in dmg format. please help me finding way.
thank you.
There are many different ways to package your app. You should read the documentation:
https://nwjs.readthedocs.io/en/latest/For%20Users/Package%20and%20Distribute/
I do not know of any tutorials for creating an NW.js package as a DMG. Because the final dist is a single .app file, you could distribute that directly, or compressed in a Zip file or something similar. You may be able to look up instructions around DMG packaging that is not specific to NW.js and apply the concepts. If so, and you get it to work, you should write a blog post or tutorial about it.
You can use https://www.npmjs.com/package/appdmg to create an installer for your NW App on macOS platforms.
In my ongoing development for the same i found the making a .pkg installer is better than making .dmg with reasons you can search for.
so i found two solutions for the same.
packages(an application you can package anything with signed developer id)
buildPkg(a command line process to make package)
in both you just need to add your application.app as mentioned in documentation and follow the steps.

Installing Access database engine using WIX

My requirement is I want to install Access database engine as part of my bootstrap. But for installing AccessDatabaseEngine I can't rely on util:RegistrySearch because that is not consisent.
So how I want is I will try to open one .mdb file in my custom action when that fails I want to run the AccessDatabaseEngine setup. Can someone help me in how should I do this.
If there is any URL which is explaining the same requirement it would be a great help for me.
Thanks & Regards,
N.Murali Krishna.

Distributing TideSDK application

I recently finished an application based on Titanium, Javascript, HTML, CSS. I have only been a web designer to date so I have little experience in distributing applications. I was accustomed to the TiDev Community deploying app, which prepared the app for download and made it available for download at a given link.
But tidev community is no longer supported, so I use TideSDK Developer to package the app, which doesnt do all the hard work the other one did so nicely.
I am obviously a complete rookie to this.
Could anyone outline the steps I would need to take to go from the bundled application folder I have now (put together by TideSDK Developer), to a link that will allow customers to download and install the app or online? I know there is an issue with packaoging the app for platforms other than your own, and that appcelerator is working on a solution to this I think. I also realise I would probably have to pay to host the download online. Any guidance would be greatly appreciated.
You must use the tidebuilder.py script. to compile a installation package. To compile a binary for a Mac, you must run the script on a Mac, to compile a binary for windows, you must be on a windows box etc.
There is some documentation on how to use it here per platform. The command is very simple and works.
Once you have your application file (DMG for OSX or a MSI for Windows) then just distribute it however you see fit, email, putting it on your web server, whatever works for you.

how to install and getting start with webrtc on windows server

Hi could anyone to tell me how to install depot tools.I went through documentation and trying to install the webrtc in windows,I installed visual studio 2010 and some related stuff given in documentation still i am in confusion and many questions like why visual studio is required? are we have write code in visual studio?It acts like IDE for webrtc?
If not please tell me where we have to place our project in local file system and how to implement my first demo application..I found a video published by google demonstrating about webrtc in that they wrote code in a html file so is html file itself enough to develop.?
Though i have done a sample application in a html file still i am getting blank page and in console i am getting as UNCAUGHT EXCEPTION near navigator.webkitGetUserMedia() please help me out to know more about webrtc.
I suggest you start by watching the excellent videos about WebRTC from Justin Uberti and Cullen Jennings, and then (shameless self promotion) get to grips with the code and examples in Getting Started With WebRTC on HTML5 Rocks.
webrtc.org is the home of the WebRTC project -- lots of resources and demos there.
Just last month we released an open source project aimed to get developers into WebRTC fast and easy.
http://www.easyrtc.com/
It includes a cross-platform server kit which will run in Windows. Working demos are included.
I just built the webrtc solution using VS2010 by following this web pages instructions and NOT using cygwin. I had but one issue which to resolve required the manual copying of two files into the correct folder, you will know which two files should you see the names of these files and read the error, you will then know the expected location when the build fails.
Ultimately you will get a peerconnection_server.exe and a peerconnection_client.exe by way of sample. I was able to modify them easily.
Hope this helps. Be sure to install the prerequisites and follow the instructions to the letter.
As a clarification, the webrtc C++ library is one implementation you can use for the protocol. Another is using the webrtc implementation in a (very) modern web browser, such as Firefox or Chrome. Then, you'll just need HTML + JS, as per the articles in HTML5 Rocks.

Trying to transfer older version of mediawiki to new server

So, in college I had a Debian server which used to host a wiki, with mediawiki version 1.9. This server stopped working, and all I have now is its HD. I want to transfer this wiki to a new server, which also runs Debian, but I can't do that with Debian's current stable version of mediawiki, 1.15, because it is not possible to transfer a wiki to another version of mediawii.
So, my idea is to install mediawiki 1.9 on the new server, and then move the wiki. But I am having problems with installing it.
When I go to http://my_hostname/config/index.php, to configure the new wiki, so that I can transfer the other one, I get the following message, and nothing happens:
Checking environment...
Please include all of the lines below when reporting installation problems.
PHP 5.3.3-7+squeeze8 installed"
I really don't have a clue on what is wrong. ANY help would be greatly appreciated!
Like you commented yourself, it would certainly be worth a try to using your existing configuration. The configuration is typically some site preferences and database configuration, so make sure dat your database is setup in the same way as before.
Regarding your configuration problems, maybe php filters away the errors. You can check this by searching for error_reporting in your php.ini.
Just follow the instructions at http://www.mediawiki.org/wiki/Manual:Upgrading. Probably no point in trying to install at MediaWiki 1.9.
You may want to do a clean install of MediaWiki 1.18.1 first just to make sure your system is ready, all dependencies met, etc.