j0k3r on master
Update build.yml to build ARM d… Merge pull request #284 from pg… (compare)
j0k3r on master
Prepare 2.5.0 release Add deprecated section in chang… Add info about translations and 1 more (compare)
j0k3r on 2.5.0
j0k3r on 2.5.0
Add info about translations (compare)
j0k3r on 2.5.0
Add deprecated section in chang… (compare)
Undefined table: 7 ERROR: relation "entry_id_seq" does not exist LINE 1: SELECT NEXTVAL('"entry_id_seq"') ^
. Am I perhaps missing some obvious database-repair command? Does anyone have any experience with mysql -> pgsql migration for Wallabag?
I'm trying to authenticate with a website that requires two additional fields. The following naïve solutions disregards the dependence of the values:
login_extra_fields: login_ticket=@=xpath('//input[@name="login_ticket"]/@value', request_html('https://id.sueddeutsche.de/login'))
login_extra_fields: _csrf=@=xpath('//form[@id="login-form"]//input[@name="_csrf"]/@value', request_html('https://id.sueddeutsche.de/login'))
I couldn't find a configuration-based approach that allows implementing either caching the downloaded page or setting both values at once. What's the best way to go about this in your opinion?
Hey guys, I'm starting to see this error in my database logs -2021-11-13 18:52:31 6 [Warning] Access denied for user 'root'@'localhost' (using password: NO)
The instance was running perfectly fine but recently I couldn't login with my login details.
I'm running wallabag using docker-compose on a Ubuntu 20.04 VM over Proxmox 7.
Here's the relevant details from my docker-compose -
version: '3'
services:
wallabag:
#build: https://github.com/wallabag/docker.git#2.4.2
image: wallabag/wallabag
#image: abhilesh7/wallabag-arm
container_name: wallabag_app
environment:
- MYSQL_ROOT_PASSWORD=secure-password
- SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql
- SYMFONY__ENV__DATABASE_HOST=db
- SYMFONY__ENV__DATABASE_PORT=3306
- SYMFONY__ENV__DATABASE_NAME=wallabag
- SYMFONY__ENV__DATABASE_USER=wallabag
- SYMFONY__ENV__DATABASE_PASSWORD=password
- SYMFONY__ENV__DATABASE_CHARSET=utf8mb4
- SYMFONY__ENV__MAILER_HOST=smtp.gmail.com
- SYMFONY__ENV__MAILER_USER=gmail-user
- SYMFONY__ENV__MAILER_PASSWORD=gmail-password
- SYMFONY__ENV__FROM_EMAIL=gmail-email-address
- SYMFONY__ENV__DOMAIN_NAME=https://wallabag.domain.net
- SYMFONY__ENV__SERVER_NAME="Your wallabag instance"
ports:
- 80:80
volumes:
- /opt/wallabag/images:/var/www/wallabag/web/assets/images
healthcheck:
test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost"]
interval: 1m
timeout: 3s
depends_on:
- db
- redis
restart: unless-stopped
db:
image: mariadb
container_name: wallabag_db
environment:
- MYSQL_ROOT_PASSWORD=secure-password
volumes:
- /opt/wallabag/data:/var/lib/mysql
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
interval: 20s
timeout: 3s
restart: always
redis:
image: redis:alpine
container_name: wallabag_redis
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 20s
timeout: 3s
restart: always
Not sure why it's overriding the database login credentials specified in the docker-compose. Any pointers how to fix this
IF EXISTS
clause? See https://github.com/wallabag/wallabag/issues/5233#issuecomment-972667069
[Warning] Aborted connection 14 to db: 'unconnected' user: 'unauthenticated' host: '172.22.0.4' (This connection closed normally without authentication)
. Then the app says Provisioner finished.
. That aborted connection is most likely from the provisioner. Anyone know what the provisioner is doing?
wait for db container
? https://github.com/wallabag/docker/blob/master/root/etc/ansible/entrypoint.yml#L75
Hey folks! Been reading and trying lots of suggestions found in the various Wallabag Github repos, tweaking nginx.conf etc, but I'm not able to get a consistent connection from the Client Android app.
Setup: Wallabag on Docker, Nginx reverse proxy, Https
When I first setup the Android app it works, then after adding 1-2 articles via Android, it crashes with:
Android error:
Unknown error
wallabag.apiwrapper.exceptions.UnsuccessfulResponseException: HTTP response: 502 Bad Gateway
Stacktrace:
wallabag.apiwrapper.exceptions.UnsuccessfulResponseException: HTTP response: 502 Bad Gateway
Wallabag logs:
wallabag | 2021/12/14 00:17:20 [error] 246#246: *67 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 172.27.0.1, server: _, request: "POST /api/entries.json HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000", host: "removed"
Anyone able to provide any assistance? Thanks in advance!
➜ ~ (x) curl -I https://host/
HTTP/1.1 302 Found
Server: nginx/1.21.4
Date: Tue, 14 Dec 2021 00:26:09 GMT
Content-Type: text/html; charset=UTF-8
Location: https://host/login
Connection: keep-alive
Set-Cookie: PHPSESSID=asdf
; path=/; HttpOnly
Cache-Control: max-age=0, must-revalidate, private
pragma: no-cache
Expires: Tue, 14 Dec 2021 00:26:09 GMT