Fauxton is the new user interface for CouchDB 2.X.X. It's a React dashboard that let you perform most of the CouchDB operations easily and rapidly.
Questions tagged [fauxton]
41 questions
0
votes
1 answer
CouchDB Fauxton Web Interface: how to not require login to create/edit documents
I am trying to set up a CouchDB instance to:
Not require login at web user interface when to create/edit/delete documents for random people who go to http://my_couchdb:5984
Prevent random people from making admin level changes
Ex: modify design…

Intrastellar Explorer
- 3,005
- 9
- 52
- 119
0
votes
1 answer
Recover recently deleted couchdb documents
I logged in to my couchDb fauxton UI, selected a database, and clicked select all and deleted the documents. Is there a way to recover them from the UI or is there any command I can run that will restore all of them?

mcfred
- 1,183
- 2
- 29
- 68
0
votes
0 answers
How to to create search index submenu w/ v2.3.1 & up
I've been watching Fauxton tutorials that were created less than a year ago and noticed they have an option to view indexes under Design Documents. How does one configure Fauxton to show these so I too can create create/add search indexes or has…

Mix Master Mike
- 1,079
- 17
- 26
0
votes
1 answer
CouchDB Fauxton "Save failed: undefined"
What could be causing this banner error 'Save failed: undefined' for v2.1.1 in Chrome 68 and Firefox 62 on Ubuntu?
With a fresh/recent login with admin permissions, suddenly (versus a few days ago with same system) I cannot create a new document in…

Michelle Norris
- 568
- 7
- 14
0
votes
0 answers
Can't view the attachments
I have installed CouchDB 2.1.1 downloaded from http://couchdb.apache.org/ in Red Hat enterprise Linux 7.4. As usual I am using the "Fauxton" UI for creating/accessing the databases.
CouchDB is accessible from the url …

yash.kumar
- 16
- 1
0
votes
1 answer
CouchDB vhosts and URL rewrites for multiple arguments
I've tried reading the CouchDB documentation, but I find it a bit vague in this area (FAUXTON, vhost specification). I've searched and read the responses on stackoverflow for "couchdb vhosts" and "couchdb rewrite url" and tried to apply the advice…

Richard Wood
- 5
- 2
0
votes
1 answer
CouchDB 2.1.1: Internal Server Error
Before installing the CouchApp utility, the Sofa blog app and the sample DB myblogdb together with CouchDB 2.1.1 my CouchDB was working find and I never seeing any Internal Server Error.
In the last 2 hours a trojan attached itself as a process to…

Peter G.
- 7,816
- 20
- 80
- 154
0
votes
2 answers
Get value from database into different database
I'm working on a CouchDB use case where I have 3 databases, where I have customers, invoices (which includes an array of invoiceLines) and items. In the invoiceLines array, I currently have this
"_id": "someId",
"_rev": "someId",
…

jsvi
- 3
- 4
0
votes
1 answer
Get total invoices per customer
I have a database where I have docs like customers (customerId, firstName, lastName, phoneNo, eMail) and invoice (invoiceId, invoiceDate, customerId).
I want to get the sum of invoices per customer in a view.
I'm currently using Fauxton 2.0.
My…

jsvi
- 3
- 4
-1
votes
1 answer
Hyperledger Fabric CouchDB updates through Fauxton treated as valid updates, but no record in blockchain
I have a Hyperledger Fabric network setup with 3 peers, each with a CouchDB persistence container.
If I go through the Fauxton interface and alter a JSON record, this state change is propagated to all three peers, which are in the same org.
However,…

Alex Totheroh
- 157
- 2
- 11
-2
votes
1 answer
How to get more than 25 records returned from my couch db using Fauxton/Selector query only (not CURL)
When ever i try to fetch records from my couch db GetAsync method (not Find Async) i usually get only 25 records.
I am working with Angular 12, API.NET web api core and couch db. So i am writing my code is C# and looking for a specific selector in…
user7198676