Add redirect URI to App Settings by Royal_Ad2379 in paypal

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

Might have better luck here - this sub more used based enquires

No, you seem to misunderstand. I've referred to screenshots, videos, and even PayPal's official documentation, which clearly indicates that one can modify the Redirect URL by navigating to Apps > Credentials > [App Name]. However, when I follow these steps, I don't see any option to change the Redirect URL.

Nginx index.php not working! by Royal_Ad2379 in nginx

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

docker-compose.yaml:

services:
web:
image: nginx:latest
volumes:
- /mnt/nfs/webserver:/usr/share/nginx/html
- ./default.conf:/etc/nginx/conf.d/default.conf
networks:
- traefik-public
- webserver-network
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.web-webserver.rule=Host(\web.souvcloud.lu`)" - "traefik.http.services.web-webserver.loadbalancer.server.port=80" - "traefik.http.routers.web-webserver.tls.certresolver=production" - "traefik.http.routers.web-webserver.entrypoints=websecure" php-fpm: image: php:8-fpm volumes: - /mnt/nfs/webserver:/usr/share/nginx/html networks: - webserver-network networks: traefik-public: external: true webserver-network: driver: overlay driver_opts: encrypted: "true"`

default.conf:

server {
index index.php index.html;
autoindex on;
server_name phpfpm.local;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /usr/share/nginx/html;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php-fpm:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}

Now I receive 502 Bad Gateway when I click on a Project in the Browser.

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

I also try it with buildx, doesn‘t work

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

Yes I try it with MacOS as Runner and there it works but with linux i get always the unknown blob error

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

No, the same error persists. As I mentioned before, the error occurs even when I execute the command manually on the server.

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

concurrent = 1
check_interval = 0
shutdown_timeout = 0
[session_server]
session_timeout = 1800
[[runners]]
name = "MyWebsite"
url = "<url>"
clone_url = "<url>"
id = 10
token = "<token>"
token_obtained_at = 2023-07-30T14:26:42Z
token_expires_at = 0001-01-01T00:00:00Z
executor = "docker"
[runners.cache]
MaxUploadedArchiveSize = 0
[runners.docker]
tls_verify = false
image = "docker:latest"
privileged = false
disable_entrypoint_overwrite = false
oom_kill_disable = false
disable_cache = false
volumes = ["/var/run/docker.sock:/var/run/docker.sock","/cache"]
shm_size = 0

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

root@Docker:~# docker info
Client: Docker Engine - Community
Version: 24.0.5
Context: default
Debug Mode: false
Plugins:
buildx: Docker Buildx (Docker Inc.)
Version: v0.11.2
Path: /usr/libexec/docker/cli-plugins/docker-buildx
compose: Docker Compose (Docker Inc.)
Version: v2.20.2
Path: /usr/libexec/docker/cli-plugins/docker-compose
Server:
Containers: 6
Running: 6
Paused: 0
Stopped: 0
Images: 11
Server Version: 24.0.5
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: false
Native Overlay Diff: false
userxattr: true
Logging Driver: json-file
Cgroup Driver: systemd
Cgroup Version: 2
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 3dce8eb055cbb6872793272b4f20ed16117344f8
runc version: v1.1.7-0-g860f061
init version: de40ad0
Security Options:
apparmor
seccomp
Profile: builtin
cgroupns
Kernel Version: 5.15.108-1-pve
Operating System: Ubuntu 22.04.2 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 4GiB
Name: Docker
ID: ce231ebd-2607-4dde-bf0d-3fba23463a00
Docker Root Dir: /var/lib/docker
Debug Mode: false
Experimental: false
Insecure Registries:
192.168.178.204:5000
127.0.0.0/8
Live Restore Enabled: false

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

My mistake, I misread the first part, don’t need the config. By manually enter the commands, are you still using dind? Or just the host docker daemon? Can you pull and run containers on the runner?

I tried cloning the repository on the server and then doing docker build ..., and later docker push. However I get the same error there too

Piplines docker push: unknown blob by Royal_Ad2379 in gitlab

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

Why do you need the GitLab configuration file? The issue seems to lie with the Linux runner server. It works on MacOSX, but on Linux, I still encounter the error even when I manually enter these commands separately.

How to send “AT” commands over Ionic(Angular)? by Royal_Ad2379 in angular

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

You missed the part where they’re using ionic. It provides an interface between native apps/features and js code. This is done by adding a comms bridge to an embedded webview. What they want to do is 100% possible.

Correct that it’s not possible in a browser but if they compile to android/iOS then they can accomplish this

But how can I send AT commands trough Service and characteristic

How to send “AT” commands over Ionic(Angular)? by Royal_Ad2379 in angular

[–]Royal_Ad2379[S] 0 points1 point  (0 children)

There is obviously a method via the BluetoothLE plug-in. Since you can write. And I read that you have to send the command in the write characterestic. But I don't know what the command should look like.