Questions tagged [iriscouch]

Iriscouch was a Apache CouchDB server, free hosting service, now defunct.

16 questions
4
votes
1 answer

Heroku and Iris couch vs Cloudant

Have you got any experience/thoughts on using Iriscouch or Cloudant with Heroku? Do you have to use Cloudant (as it is offered as an add-on)? What are the pros/cons? I'm working on an application that is heavy in geo information and needs to be…
Peter
  • 71
  • 3
2
votes
1 answer

CouchDB/PouchDB User Authentication/Authorization

I have been working on an Angular/Ionic application and am using the OAuth.io plugin to handle a facebook login to gain a user's information. From that I derive a simple database name based on the user's firstname and their Facebook ID number. …
Brian
  • 2,294
  • 6
  • 30
  • 51
1
vote
1 answer

Android CouchDB {"error":"bad_request","reason":"invalid_json"}

While trying to Create a new Document in my IrisCouch Database, i am always getting following error: {"error":"bad_request","reason":"invalid_json"} This is the relevant part of my function: try { DefaultHttpClient httpClient = new…
FFirmenich
  • 5,611
  • 1
  • 19
  • 28
1
vote
1 answer

Uploading JSONObject to Iris CouchDb in Android

I´m currently working on an app and having my problems with uploading a JSONObject to my Iris CouchDb. But I can´t get it to work. This is the code I´m using right now: private class MyHttpPost extends AsyncTask { …
1
vote
3 answers

ECONNREFUSED when using node with nano and couchdb

I was using nodejs + nano + couchdb for my application successfully up until today. For some reason all of a sudden I'm getting ECONNREFUSED when I try to run my application. If I try to query the database using the web browser or using a different…
MorningDew
  • 503
  • 3
  • 9
1
vote
1 answer

How to make your Iris couchDB account secure

I want to try out couchDB on Iris, but it seems really strange to me, as I didn't meet any security on my way to create a database and a document and delete as well, through the /_utils/ page. There is no password protected log in, no…
doni
  • 291
  • 3
  • 9
1
vote
0 answers

Iris CouchDB Post Cross Domain

I am trying out Iris Couch and I ma having problems posting cross domain. I am posting some simple JSON from within a chrome extension to Iris' couchdb and I get the dreaded 405 (Method Not Allowed) I have turned CORS on in the CouchDB config, as…
americanslon
  • 4,048
  • 4
  • 32
  • 57
0
votes
0 answers

How can I get an account on iriscouch? Signup disabled?

I tried signin button on the "My Account" page. I enter a email, and it told me to create a password to use with Persona. It supposed to send me a email with couchdb api link if I registered account successfully. But it hasn't. So, how can I get an…
marcshj
  • 41
  • 5
0
votes
1 answer

PouchDB: no conflict

I use PouchDB to save user data from a website to CouchDB (on IrisCouch). Following a mistake, I pushed documents with already taken names. I tried to recover the conflicting files admitting that there was a conflict. db.get('threshold0_1_3',…
hhh
  • 1,913
  • 3
  • 27
  • 35
0
votes
1 answer

couchdb Save with cradle api and iriscouch follow api not working in NodeJS function

I am trying to save a javascript object with cradle in NodeJS but I do not get a response or an error message after the save. Its a local couchdb with no password set. The connection is ok and the database exists. I am also using iriscouch follow…
0
votes
1 answer

save chrome extension's data (idb) to iriscouch with google oAuth

Is it possible for a chrome extension to sync local database for each chrome user (pouchDB, indexedDB) over irisCouch, withoud any custom authentication service/server in the middle, just using google's logged in user (oAuth) ? I'm trying to figure…
PathOfNeo
  • 1,089
  • 4
  • 21
  • 39
0
votes
1 answer

pouchDB to iriscouch syncing issue with remove

I have followed the tutorial http://pouchdb.com/getting-started.html to the letter and the addition of new todos works great, so does the editing of todos but the deleting (remove) doesn't work. i.e. In browser1 I add a todo and in browser2 it is…
Dominic
  • 351
  • 4
  • 18
0
votes
1 answer

couchdb 1.3.x and couch_httpd_auth.proxy_use_secret

I'm currently running couchdb 1.3 over iriscouch. I need to the proxy authentication feature but I don't manage to set: couch_httpd_auth.proxy_use_secret = true in the config... Does anyone know from which version of couchdb this feature is…
abernier
  • 27,030
  • 20
  • 83
  • 114
0
votes
1 answer

Is that possible to setup CouchDB enabled website URL mapping without Apache as reverse proxy?

Actually I'm running this with Apache as reverse proxy in front of CouchDB: ServerName abc.com ServerAlias www.abc.com ProxyPass /abc http://localhost:5984/abc ProxyPassReverse /abc…
Archer
  • 5,073
  • 8
  • 50
  • 96
0
votes
1 answer

How to replicate CouchDB local to remote with nano -- without duplication?

I'm attempting to replicate my local CouchDB database with a remote database that lives on iriscouch.com. I'm using nano. This works fine -- except that the local documents are added to the existing iriscouch database rather than the local database…
Sam Dutton
  • 14,775
  • 6
  • 54
  • 64
1
2