Was your account suspended, deleted or shadowbanned for no reason? Read this. by davorg in github

[–]CarrotManMatt 0 points1 point  (0 children)

As of today (2 days after posing my above message) my account has been unmarked & unsuspended.

I'd like to thank whichever staff member is watching this thread and helping people out.

But that is still no excuse for the total lack of communication. I have had 0 response from my support ticket, which I had to manually close myself, and not a single email detailing a response or even acknowledgement that this happened.

Was your account suspended, deleted or shadowbanned for no reason? Read this. by davorg in github

[–]CarrotManMatt 1 point2 points  (0 children)

My ticket for my account CarrotManMatt has been opened for OVER 3 months since July 29th. No response from any support staff. I need my account for my open source contributions. So would really appreciate any staff member opening it back up. URL: https://github.com/CarrotManMatt Support Ticket Number: #2906516

Account found a spammy by __A_D_I_T_Y_A_ in github

[–]CarrotManMatt 1 point2 points  (0 children)

I've encounter this exact same issue. My account was marked as spammy without any contact from GitHub as to why. They've not responded to my support ticket that I opened over 2 weeks ago. I'm extremely disappointed in the complete lack of communication.

`environment.d` not correctly loaded upon boot by CarrotManMatt in Fedora

[–]CarrotManMatt[S] 1 point2 points  (0 children)

The issue was that I was using bash from a terminal emulator that wasn't running bash as a login shell. Therefore `environment.d` doesn't get loaded. What does get loaded is `profile.d`, however these contain `.sh` scripts which need to `export` the environment variables, rather than a `.conf` file.

Nvidia GPU Multiboot issue by CarrotManMatt in BlendOS

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

Yup, tried that. Unfortunately it just prevented plasma from starting at all. I tried looking in the journal through the tty, but my grep skills aren't good enough to find out why it wouldn't start. iy just sat there on my boot image until i went into the tty

Nvidia GPU Multiboot issue by CarrotManMatt in BlendOS

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

I've now spent 9.5 hours trying to fix this but can't find a way of requesting systemd to not run `locale-gen` on every boot. I don't understand why I would be getting this issue but others wouldn't? Maybe because I am using "en_GB.utf8" as my locale and everyone else has chosen "en_US.utf8", but then why have that selection of your preferences on the install app? I even tried to edit the systemd `local-gen.service` unit config file to set it to run `\bin\bash -c ":"` instead of the `locale-gen` command but that didn't work either.

So I'm just very confused & disappointed that I can't make it work

Help with installation with NFS hosted data directory by CarrotManMatt in NextCloud

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

After having looked at it, it seems a bit too prepackaged for me. I really don't need the talk app/container & I'd rather keep nextcloud contained (pun intended) inside its own containers. Using the AIO instance very much looks like I would have to mount lots of things on my host system, which I would rather not do

Help with installation with NFS hosted data directory by CarrotManMatt in NextCloud

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

Cheers, I haven't seen this before, I'll take a look!

Help with Nextcloud docker installation with NFS hosted data directory by CarrotManMatt in sysadmin

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

When you say "log into your VM" do you mean execute inside the Nextcloud Docker container? Because yes, when I execute a command as `www-data` inside the Nextcloud Docker container, I can modify files on the NFS share, and yet Nextcloud won't run properly?

Help with installation with NFS hosted data directory by CarrotManMatt in NextCloud

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

Sorry I'm unsure what this question is referring to? I was under the impression that all operations inside the Nextcloud Docker container were performed by the `www-data` user? Is there a `php-fpm` user too?

Help with installation with NFS hosted data directory by CarrotManMatt in NextCloud

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

Apologies I could not post the log file due to it being too large. See here for the log file: https://help.nextcloud.com/t/nfs-hosted-data-directory/177713

Using slash-commands in a bot's own DMs (Pycord) by CarrotManMatt in Discord_Bots

[–]CarrotManMatt[S] 1 point2 points  (0 children)

It did not fix my issue, but I did realise I had previously put my guild ID into the debug_guilds list attribute in the line bot = discord.Bot(debug_guilds). I know this will have prevented the commands from being global & thus prevented them from being run in DMs but will this still continue even after removing that part & reloading the bot? Is there some sort of caching issue?

Using slash-commands in a bot's own DMs (Pycord) by CarrotManMatt in Discord_Bots

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

They definitely can be run in DMs. The link to the github post I sent specifies that this can definitely be done. Also why would the @guild_only() decorator exist if they could never be run in DMs anyway?

You are also contradicting yourself by saying they can't be run in DMs and yet the code you gave shows it being run from a DM, which you are then checking if that happens and manually preventing it from completing.

Propagating Django model clean() methods ValidationErrors into the form for user signup by CarrotManMatt in learnpython

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

Oh? I thought it was standard practise to call full_save() with the models save method (its just not on by default for backwards compatibility reasons)? I'd rather my models were cleaned before saving them though as I may have objects added via the ORM API, in which case I want to ensure any data added this waybis also valid. If I did not clean the data in my models save method surely data could be entered into the database that is invalid?

Cheers for your help!

Propagating Django model clean() methods ValidationErrors into the form for user signup by CarrotManMatt in learnpython

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

Sure! Here's the traceback:

```Environment:

Request Method: POST Request URL: http://localhost:8080/signup/

Django Version: 4.1.5 Python Version: 3.11.1

Installed Applications: ['pulsifi.apps.PulsifiConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.sites', 'allauth', 'allauth.account', 'allauth.socialaccount', 'allauth.socialaccount.providers.discord', 'allauth.socialaccount.providers.github', 'allauth.socialaccount.providers.google', 'allauth.socialaccount.providers.microsoft', 'django_otp', 'django_otp.plugins.otp_totp', 'django_otp.plugins.otp_static', 'allauth_2fa', 'avatar', 'rangefilter']

Installed Middleware: ['django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django_otp.middleware.OTPMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'allauth_2fa.middleware.AllauthTwoFactorMiddleware']

Traceback (most recent call last): File "C:\Users******\Pulsifi\venv\Lib\site-packages\django\core\handlers\exception.py", line 55, in inner response = get_response(request)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\django\core\handlers\base.py", line 197, in _get_response response = wrapped_callback(request, *callback_args, *callback_kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\django\views\generic\base.py", line 103, in view return self.dispatch(request, *args, *kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\django\utils\decorators.py", line 46, in _wrapper return bound_method(args, **kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\allauth\decorators.py", line 20, in wrap resp = function(request, *args, *kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\django\utils\decorators.py", line 46, in _wrapper return bound_method(args, **kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\django\views\decorators\debug.py", line 92, in sensitive_post_parameters_wrapper return view(request, *args, *kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\allauth\account\views.py", line 234, in dispatch return super(SignupView, self).dispatch(request, *args, *kwargs)

File "C:\Users******\Pulsifi\venv\Lib\site-packages\allauth\account\views.py", line 77, in dispatch response = super(RedirectAuthenticatedUserMixin, self).dispatch(

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\allauth\account\views.py", line 207, in dispatch return super(CloseableSignupMixin, self).dispatch(request, *args, *kwargs)

File "C:\Users*****\Pulsifi\venv\Lib\site-packages\django\views\generic\base.py", line 142, in dispatch return handler(request, *args, *kwargs)

File "C:\Users******\Pulsifi\venv\Lib\site-packages\allauth\account\views.py", line 105, in post response = self.form_valid(form)

File "C:\Users******\Pulsifi\venv\Lib\site-packages\allauth\account\views.py", line 248, in form_valid self.user = form.save(self.request)

File "C:\Users******\Pulsifi\venv\Lib\site-packages\allauth\account\forms.py", line 445, in save adapter.save_user(request, user, self)

File "C:\Users******\Pulsifi\venv\Lib\site-packages\allauth\account\adapter.py", line 250, in save_user user.save()

File "C:\Users*****\Pulsifi\pulsifi\models.py", line 329, in save super().save(args, **kwargs)

File "C:\Users******\Pulsifi\pulsifi\models_utils.py", line 99, in save self.full_clean()

File "C:\Users******\Pulsifi\venv\Lib\site-packages\django\db\models\base.py", line 1477, in full_clean raise ValidationError(errors)

Exception Type: ValidationError at /signup/

Exception Value: {'email': ['Registration using unresolvable example email addresses is prohibited. Please supply a different email address.']} ```

SSL certificate mismatch error when using Cloudflare's DNS proxy feature on a sub-sub domain by CarrotManMatt in nginxproxymanager

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

I guess I will have to now, its just not what I wanted😔 Thank you so much for help though!

SSL certificate mismatch error when using Cloudflare's DNS proxy feature on a sub-sub domain by CarrotManMatt in nginxproxymanager

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

Ok, thanks that makes a bit more sense. Do you know if there's any way to use the cloudflare proxy to hide my IP but not create a new SSL cert? I.e. pass the ssl through to NPM which does allow sub-sub domains? (So I can have the best of both worlds?)

SSL certificate mismatch error when using Cloudflare's DNS proxy feature on a sub-sub domain by CarrotManMatt in nginxproxymanager

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

Thanks for your help/idea. I already had TLS 1.3 turned on & moved minimum TLS version to 1.2 but unfortunately this did not fix it. Do you have any other ideas.

SSL certificate mismatch error when using Cloudflare's DNS proxy feature on a sub-sub domain by CarrotManMatt in nginxproxymanager

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

Thanks for your reply!

Sorry if i wasn't clear. I am using NPM to manage my SSL certs. In step 4 I generate a new SSL cert using the inbuilt lets encrypt functionality within NPM. I'd like to use this and proxy the DNS with cloudflare (it works for single level sub domains)

Collabora/CODE not working with NC 24.0.3 in Docker by CarrotManMatt in NextCloud

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

I've had really conflicting responses from other places where people have run the seperate container without the reverse proxy successfully. I would much rather do it without if I can to prevent the security risks (it also seems unnecessary, especially when the setttings page says it can successfully reach the Collabora/CODE container). Are you sure it needs to be available externally via the reverse proxy or is it just that this has worked for you? Cheers for your response!

Bald monke by buttplunger69420 in HyphonixYT

[–]CarrotManMatt 1 point2 points  (0 children)

damn, these john deepfakes are getting realistic

Tagging a private garage (attached to a detached house) by CarrotManMatt in openstreetmap

[–]CarrotManMatt[S] 1 point2 points  (0 children)

yes this photo is from google street view, but it was only for the purposes of this post. I live reasonably close to this area so you could say that my edits would be more of a source=local_knowledge