Lemmy Support

4622 readers
22 users here now

Support / questions about Lemmy.

Matrix Space: #lemmy-space

founded 5 years ago
MODERATORS
26
 
 

Let’s say I hit submit on a post or reply, and then immediately notice a typo and edit it. Or I accidentally mis-swipe and downvote and then change it to an upvote.

In both cases, do both actions immediately get posted to the feed, or does the Lemmy instance wait a minute and combine (or overwrite) the actions so that only a single action gets published?

27
 
 

As title says. I had an account at lemmy.ml while back and got it deleted. Now I am trying to switch back to Lemmy.ml but during registeration. I get that error, that the user name is taken by user. But it's taken by my deleted account.

My handler is mahmoudk1000, cloud you please free it ? So I can reuse it.

Thanks in advance!

28
 
 

I want to hide the box thingy inside the red circle. How do I do it? I'm using Lemmy on Firefox.

29
 
 

Anyone care to share their docker compose file for the upgrade? Or at least the pictrs portion? I've upgraded and migrated postgres to 16, but am having issues with the pictrs part.

30
 
 

I've created the community [email protected] from an account on lemmy.zip, but want to use my tchncs.de account to moderate and run it, so I transferred the community to my tchncs.de account.

I've changed content in the sidebar and pinned a post to the top, but both of those changes don't federate from tchncs.de to lemmy.zip

You can see the changes when viewing the community from tchncs.de but you don't see the changes when viewing the community directly on lemmy.zip

Both instances run Lemmy 0.19.4

How can this be resolved?

31
 
 

please help

32
 
 

My 2FA app lost my keys because of a bad update. The only one I seem to be missing is the one for this Lemmy instance. Is there an admin that can help reset? Using an api key to post.

33
 
 

I have been investigating if there is a community dedicated to Photon (a great Lemmy front-end) that doesn't seem to have an exclusive option to search for communities, does anyone know if there is an exclusive community for Photon (or Lemmy front-ends in general)?

34
 
 

…or is the new web interface huge? I'm using Firefox 126 and I've reduced the page size to a bearable 90%.

More importantly though, please try this test in your browser of choice (I haven't tested from a dedicated app):

  1. create a post (for the sake of this test all you have to do is press the "Create a post" button in the sidebar) in any community
  2. Fill the body text field so you have enough text to for at least one press of 'PgDn'. I've supplied three paragraphs of dummy text you can copy for your convenience at the end of this post. Make sure the focus is still in the body text area (you should see the area highlighted with an outline.)
  3. switch to any other tab you have open.
  4. switch back to your post tab

You should see that the page has jumped back to the top. This also happens when you press 'Preview' with focus in the text area: the page jumps to the top and doesn't preview the post! In fact, any time the text box loses focus, the page jumps to the top. Merely clicking outside the text area will make the page jump to the top.

I hope I've clearly explained the situation.

Is this displayed in any browser or just Firefox? Any OS or just Linux. Is this a bug or am I the only one experiencing these glitches? Any help/corroboration would be appreciated. Lemmy: the Tupolev Tu-144 of social media!® Thanks.

A big hunk of Lorem ipsumLorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse semper lectus tortor, sit amet pulvinar ligula bibendum ac. Ut commodo elit nec nisi vulputate lacinia. Sed diam ex, tincidunt et tempor quis, imperdiet non dui. Nullam eu turpis in massa dignissim aliquet id maximus orci. Nullam eu imperdiet felis. Phasellus ut pretium leo, nec scelerisque felis. Curabitur porttitor enim id efficitur vestibulum. Pellentesque orci enim, dictum at eros at, dictum consequat lorem. Morbi at metus in erat pharetra fermentum id a ligula. Duis finibus feugiat tincidunt.

In varius risus quis massa rutrum, eu luctus est iaculis. Maecenas scelerisque sem sed nisl hendrerit, non rutrum magna scelerisque. Vivamus consectetur lectus leo, at commodo ante consequat vel. Aenean porttitor ultricies augue id congue. Sed pharetra urna quis nulla tristique pretium. Fusce eu neque finibus, interdum quam nec, lacinia lorem. Nunc dui quam, iaculis eget sapien ac, tempus pretium arcu. Integer a ornare sem. Aenean massa odio, tincidunt ultrices purus ac, ullamcorper dignissim nulla.

Nulla et quam accumsan, fermentum metus sed, sollicitudin nibh. Maecenas convallis metus elementum ipsum tempus cursus ac pharetra orci. Vivamus consequat massa sit amet quam tempor, in venenatis mauris aliquam. Sed eleifend elementum sapien. Vestibulum quis semper dui. Aliquam ligula dui, imperdiet in faucibus et, efficitur ac elit. Maecenas tempus, tortor ut lacinia mollis, magna ex dignissim arcu, non ullamcorper ipsum sem vel eros. Nunc id faucibus odio. Nullam rhoncus mi vel euismod sagittis. Ut vitae euismod leo. Curabitur vel est at tortor sollicitudin mattis nec vestibulum leo. Mauris ut massa ligula.

35
 
 

For example, say an instance C is not defederated with B nor A. Can a user on A see users from B if they visit a community on C? If so, to what extent can the users from A and B interact with each other on C?

36
12
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]
 
 

My website How do I get the thumbnails to show up when the article links are shared on Lemmy? I tried metatags, changing the aspect ratio and the image format. Nothing seems to work. Here are some of the failed results.: [email protected] Any help would be appreciated.

Article.tsx:

import React, {useEffect, useState, useContext } from "react"
import { useParams, Link, useNavigate } from "react-router-dom"
import { articlesData } from "../data/articles"
import { styled } from "styled-components"
import MetaTags from "../utils/MetaTags"
import CopyLinkIconDark from "/src/assets/copyLinkDark.svg"
import CopyLinkIconLight from "/src/assets/copyLinkLight.svg"
import FacebookShareIconDark from "/src/assets/facebookShareDark.svg"
import FacebookShareIconLight from "/src/assets/facebookShareLight.svg"
import TwitterShareIconDark from "/src/assets/twitterShareDark.svg"
import TwitterShareIconLight from "/src/assets/twitterShareLight.svg"
import ThemeContext from "../utils/ThemeContext"
import formatDate from "../utils/formatDate"


type articlesData = {
    id: number;
    articleUrl: string;
    category: string;
    img: string;
    alt: string;
    header: string;
    subhead: string;
    author: string;
    datePublished: Date;
    articleBody: string[];
}

const StyledHeroWrapper = styled.div`
    position: relative;
`

const StyledLogo = styled.h2`
    position: absolute; 
    font-size: 4rem;
    text-shadow: ${({ theme }) => theme.isDarkMode ? "1px 1px 5px rgba(0, 0, 0,  0.5)" : "1px 1px 5px rgba(255, 255, 255,  0.5)"};
    top: -6.3rem;
    left: -1rem;
`

const StyledImg = styled.img`
    max-width: 100%;
    margin: 0;
    border-radius: 5px;
    object-fit: cover;
`

const StyledHeadline = styled.h1`
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    letter-spacing: -0.05em;
    transform: tranlateY(-20%);
    max-width: 90%;
    word-spacing: -0.05em;
    line-height: 3.4rem;
    margin: 0;
`

const StyledSubhead = styled.h3`
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    word-spacing: -0.05em;
    margin: 0;
    line-height: 1.5rem;
`

const StyledArticleInfo = styled.p`
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    text-transform: uppercase;
`

const StyledAuthor = styled(Link)`
    color: ${({ theme }) => theme.isDarkMode ? "#9CE00C" : "#5200FF"};
    margin-right: 1rem;
    text-decoration: none;
    &:hover {
        background-color: ${({ theme }) => theme.isDarkMode ? "#5200FF" : "#9CE00C"};
    }
`

const StyledButtonWrapper = styled.div`
    display: flex;
`

const StyledShareButton = styled.button`
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: ${({ theme }) => theme.isDarkMode ? "#353535" : "#cacaca"};
    margin-right: 1rem;
    border: none;
    &:hover {
        background-color: ${({ theme }) => theme.isDarkMode ? "#5200FF" : "#9CE00C"};
      }
    a {
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
`

const StyledShareImgIcon = styled.img`
      width: 2rem;
      height: 2rem;
`

const StyledArticleBody = styled.p`
    font-family: "Quattrocento", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem
`

const copyLink = async () => {
    try {
        await navigator.clipboard.writeText(window.location.href);
        alert('Link copied to clipboard!');
    } catch (err) {
        console.error(err);
        alert('Failed to copy link to clipboard!');
    }
}

const Article: React.FC = () => {
    const { isDarkMode } = useContext(ThemeContext);
    const {articleUrl} = useParams() 
    const [article, setArticle] = useState<articlesData | null>(null)
    const [isLoading, setIsLoading] = useState(true)
    useEffect(()=>{
        const foundArticle = articlesData.find(articleObj => articleObj.articleUrl === articleUrl);
        setArticle(foundArticle ? foundArticle : null);
        setIsLoading(false)
    },[])
    const navigate = useNavigate()
    let formattedDate = ""
    if(article){
        formattedDate = formatDate(article.datePublished)
    }
    useEffect(()=>{
        if(!article && !isLoading) {
            navigate('not-found')
        }
    }, [isLoading])

    return (
        <>
            <MetaTags 
                title={article?.header || ""}
                description={article?.subhead || ""}
                imageUrl={article?.img || ""}
                url={window.location.href}
            />
            <main>
                <StyledHeroWrapper>
                    <StyledLogo theme={{ isDarkMode }}>theGlitch</StyledLogo>
                    <StyledImg src={article?.img} alt={article?.alt}/>
                </StyledHeroWrapper>
                <StyledHeadline>{article?.header}<br/></StyledHeadline>
                <StyledSubhead>{article?.subhead}</StyledSubhead>
                <StyledArticleInfo>
                    <StyledAuthor 
                        theme={{ isDarkMode }}
                        to={`/profiles`}
                        aria-label={`to profiles`}
                    >{article?.author}</StyledAuthor>
                    {formattedDate}
                </StyledArticleInfo>
                <StyledButtonWrapper>
                    <StyledShareButton onClick={copyLink} theme={{ isDarkMode }}>
                        <StyledShareImgIcon src={isDarkMode ? CopyLinkIconDark : CopyLinkIconLight} alt="copy link icon" />
                    </StyledShareButton>
                    <StyledShareButton theme={{ isDarkMode }}>
                        <a href={`https://www.facebook.com/sharer/sharer.php?u=https://theglitchnews.netlify.app/article/${article?.articleUrl}&quote=${article?.header} | #theGlitch`} target="_blank" rel="noopener noreferrer">
                            <StyledShareImgIcon src={isDarkMode ? FacebookShareIconDark : FacebookShareIconLight} alt="facebook share icon"/>
                        </a>
                    </StyledShareButton>
                    <StyledShareButton theme={{ isDarkMode }}>
                        <a href={`https://twitter.com/share?text=${encodeURIComponent(article?.header + " | #theGlitch #tech")}&url=${encodeURIComponent("https://theglitchnews.netlify.app/article/" + article?.articleUrl)}`} target="_blank" rel="noopener noreferrer">
                            <StyledShareImgIcon src={isDarkMode ? TwitterShareIconDark : TwitterShareIconLight} />
                        </a>
                    </StyledShareButton>
                </StyledButtonWrapper>
                <article>
                    {article?.articleBody.map((paragraph, index)=><StyledArticleBody key={index}>{paragraph}</StyledArticleBody>)}
                </article>
            </main>
        </>
    )
}

export default Article

MetaTags.tsx:

import { Helmet } from 'react-helmet';

type MetaTagsProps = {
    title: string;
    description: string;
    imageUrl: string;
    url: string;
}

const MetaTags = ({title, description, imageUrl, url}: MetaTagsProps) => {
  return (
    <Helmet>
      <title>theGlitch</title>
      <meta name="description" content={description} />
      
      {/* OpenGraph tags */}
      <meta property="og:title" content={title} />
      <meta property="og:description" content={description} />
      <meta property="og:image" content={`https://theglitchnews.netlify.app${imageUrl}`} />
      <meta property="og:url" content={url} />
      
      {/* Twitter Card tags */}
      <meta name="twitter:card" content="summary_large_image" />
      <meta name="twitter:creator" content="@EtAl19820625" />
      <meta name="twitter:title" content={title} />
      <meta name="twitter:description" content={description} />
      <meta name="twitter:image" content={`https://theglitchnews.netlify.app/${imageUrl}`} />
      <meta name="twitter:url" content={url} />
    </Helmet>
  );
};

export default MetaTags;
37
 
 

On my hosted instance a problem is occurring where youtube urls will display properly with the thumbnail but when you go to play it it recieves an error. I think it was working a few days ago, what could be causing this and how can I fix it? Appreciate any help I receive thanks

38
 
 

cross-posted from: https://lemm.ee/post/32751730

So I had made a post regarding sorting posts not working, but I have noticed another issue where some communities just don't have some older posts. I have tried both on web and on android app, and it's the same, tweaked some settings too. A demo video (GIF) showcasing the problem and my account settings are attached in below Imgur link: https://imgur.com/a/8X8AQpI

39
 
 

So I have tried to search this community, Lemmy in general, and the GitHub issues on LemmyNet/lemmy repo, but didn't immediately see anything discussing this.

It would be really cool if Lemmy would trigger Firefox's new translation icon in the address bar based on the browser/OS/Lemmy language as compared to the post/comment language.

So i.e. if my browser/OS language is English and the post is flagged German or contains comments that are flagged as German, the Firefox address bar should show the little translation beta icon in the address bar, because Firefox can translate between these two languages.

Bonus points if it doesn't offer German translations if I'm logged in and have set German as one of my languages in the Lemmy settings.

(by the way the dialogue always adds "Undetermined" regardless of if it being selected in the settings or not, not sure if that's intended)

Hope you guys can figure it out. Right now the Firefox button doesn't seem to pop up regardless of which Lemmy instance I visit and which language is set where, but it does appear for a lot of other websites.

And while I'm here, thank you for all you do for us users and the Fediverse/ActivityPub in general. It's much appreciated! :)

40
 
 

Hi I've just arrived on Lemmy but I'm already talking shit and people hate me like when I say Twitter is better than Mastodon (sorry I'm an idiot). But now I want to delete my post because I don't assume but it won't go away!!!! Can someone explain to me how the delete system works? Thanks a lot.

41
14
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 
 

Hello, [email protected] was locked by my mods, and continued on [email protected] which is entirely fine given federation, so I guessed I could follow it on the lemmy sort of synced space/community, [email protected], where I can post to the slrpnk community without having an account there. But for some reason recent posts on slrpnk real xmpp community are not showing on [email protected], like if they're not syncing anymore.

Any way to remediate it?

42
13
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 
 

Hi all,

Hoping someone can help me out here. I just did the upgrade, I've updated my ENV variables, and started, and I get:

2024-05-18T19:13:07.047224829Z 2024-05-18T19:13:07.046998Z  INFO migrate_04: pict_rs::repo::migrate: Running checks
2024-05-18T19:13:08.177484313Z 2024-05-18T19:13:08.177294Z  INFO migrate_04: pict_rs::repo::migrate: Checks complete, migrating repo
2024-05-18T19:13:08.177524752Z 2024-05-18T19:13:08.177323Z  INFO migrate_04: pict_rs::repo::migrate: 362224 hashes will be migrated

I then proceed to get the following item for 110,670 files:

2024-05-18T19:13:08.196186995Z 2024-05-18T19:13:08.196036Z ERROR pict_rs::repo::migrate: Failed to migrate hash 0000181884f6a92c7f6ee411dc8049474b2872204fafebbc6b0170e7499d902b, skipping
2024-05-18T19:13:08.207066220Z 
2024-05-18T19:13:08.207078792Z    0: Error in store
2024-05-18T19:13:08.207089618Z    1: Requested file is not found
2024-05-18T19:13:08.207099605Z    2: No such file or directory (os error 2)
2024-05-18T19:13:08.207109313Z 
2024-05-18T19:13:08.207119231Z Location:
2024-05-18T19:13:08.207129638Z    /drone/src/src/repo/migrate.rs:32

And then pict-rs just exits.

Turning on debug gives me more info, but nothing helpful after each of the above errors:

|lemmy-pictrs  | 2024-05-18T19:21:15.631508936Z 2024-05-18T19:21:15.631417Z DEBUG sled::pagecache::iobuf: advancing offset within the current segment from 102576771 to 102576797    
|lemmy-pictrs  | 2024-05-18T19:21:15.631606646Z 2024-05-18T19:21:15.631504Z DEBUG sled::pagecache::iobuf: advancing offset within the current segment from 102576797 to 102576823    
|lemmy-pictrs  | 2024-05-18T19:21:15.631643803Z 2024-05-18T19:21:15.631531Z DEBUG sled::pagecache::iobuf: wrote lsns 3029152387-3029152412 to disk at offsets 102576771-102576796, maxed false complete_len 26    
|lemmy-pictrs  | 2024-05-18T19:21:15.631661473Z 2024-05-18T19:21:15.631541Z DEBUG sled::pagecache::iobuf: advancing offset within the current segment from 102576823 to 102576849    
|lemmy-pictrs  | 2024-05-18T19:21:15.631676419Z 2024-05-18T19:21:15.631549Z DEBUG sled::pagecache::iobuf: mark_interval(3029152387, 26)    
|lemmy-pictrs  | 2024-05-18T19:21:15.631689340Z 2024-05-18T19:21:15.631561Z DEBUG sled::pagecache::iobuf: new highest interval: 3029152387 - 3029152412

My env (left old values in, too):

      - PICTRS_OPENTELEMETRY_URL=http://otel:4137
      - PICTRS__API_KEY=...
      - PICTRS__SERVER__API_KEY=...
      - RUST_LOG=debug
      #- RUST_BACKTRACE=full
      - PICTRS__MEDIA__VIDEO_CODEC=vp9
      - PICTRS__MEDIA__GIF__MAX_WIDTH=256
      - PICTRS__MEDIA__GIF__MAX_HEIGHT=256
      - PICTRS__MEDIA__GIF__MAX_AREA=65536
      - PICTRS__MEDIA__GIF__MAX_FRAME_COUNT=400
      - PICTRS__MEDIA__ANIMATION__MAX_WIDTH=256
      - PICTRS__MEDIA__ANIMATION__MAX_HEIGHT=256
      - PICTRS__MEDIA__ANIMATION__MAX_AREA=65536
      - PICTRS__MEDIA__ANIMATION__MAX_FRAME_COUNT=400
      - PICTRS__MEDIA__VIDEO__ENABLE=True
      - PICTRS__MEDIA__VIDEO__MAX_FILE_SIZE=20

Any idea how to get pict-rs started? Or what I should look to for figuring this out.

Edit: Scanning the logs more closely I see that I never get the Migration complete message from here https://git.asonix.dog/asonix/pict-rs/src/commit/d45e3fa386e62e0538b3d7ba399ceaec80fdd7ca/src/repo/migrate.rs#L175, but I do get percentage completes up to Migration 59% complete - 213698/362224. Nothing else indicates, though.

43
9
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 
 

I currently have my instance running on my local network. I now have to expose it to the internet and want to use cloudflared for this. Unfortunately it doesn't seem to work.

I am using the default nginx config. Here is my docker-compose.yml https://pastebin.com/6awxsZn8

EDIT: adding network_mode: 'host' to cloudflared fixed it.

44
 
 

I setup a new instance a week or two ago, and have some subscriptions to communities on lemmy.world. The logs for the Lemmy process are currently showing a constant flood of warnings for what look like ordinary activity (likes, creates, undos, etc). Here are two recent entries:

lemmy-1  | 2024-05-13T21:41:48.243217Z  WARN lemmy_server::root_span_builder: Unknown: 
lemmy-1  |    0: lemmy_apub::insert_received_activity
lemmy-1  |            with ap_id=Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("lemmy.world")), port: None, path: "/activities/announce/like/3a96d6df-3229-4e5a-a6d1-ce2f6f3ca3d5", query: None, fragment: None }
lemmy-1  |              at crates/apub/src/lib.rs:198
lemmy-1  |    1: lemmy_apub::activities::community::announce::receive
lemmy-1  |              at crates/apub/src/activities/community/announce.rs:153
lemmy-1  |    2: lemmy_server::root_span_builder::HTTP request
lemmy-1  |            with http.method=POST http.scheme="http" http.host=leftopia.org http.target=/inbox otel.kind="server" request_id=43212a7e-1c3c-4b6a-84d6-4cd6082af392
lemmy-1  |              at src/root_span_builder.rs:16
lemmy-1  | 2024-05-13T21:41:48.356594Z  WARN lemmy_server::root_span_builder: Unknown: 
lemmy-1  |    0: lemmy_apub::insert_received_activity
lemmy-1  |            with ap_id=Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("lemmy.world")), port: None, path: "/activities/announce/like/9f70cd5b-175a-4ac3-a852-322494f01981", query: None, fragment: None }
lemmy-1  |              at crates/apub/src/lib.rs:198
lemmy-1  |    1: lemmy_apub::activities::community::announce::receive
lemmy-1  |              at crates/apub/src/activities/community/announce.rs:153
lemmy-1  |    2: lemmy_server::root_span_builder::HTTP request
lemmy-1  |            with http.method=POST http.scheme="http" http.host=leftopia.org http.target=/inbox otel.kind="server" request_id=050271b4-2081-4264-936a-329d70374239
lemmy-1  |              at src/root_span_builder.rs:16

Tailing the Docker logs is like watching a torrent of these warnings, and I'm worried about the stress its adding to my fairly meager VM. Any tips on how to debug this? I'm proficient with Rust, so I'm willing and able to jump into the code if it'll help.

45
 
 

Edit: updated title to add a question

I am looking at communities I am trying to follow on lemmy.world.

On lemmy.world account it shows a post was added 2hrs ago.

On lemmy.ml it shows that a post was added 2 months ago...

46
 
 

I am trying to follow [email protected] from my self hosted instance. When I search for it on my instance (with the "All" tab selected) I get no results found. When I go to the community https://lemmy.world/c/tenforward, click subscribe, enter my instance name, I'm redirected back to my instance, but there's a "Cannot fetch [email protected]" error in the UI, and in my server logs I see this:

     The webfinger object did not contain any link to an activitypub item
    0: lemmy_apub::fetcher::search::search_query_to_object_id
              at crates/apub/src/fetcher/search.rs:19
    1: lemmy_apub::api::resolve_object::resolve_object
            with data=Query(ResolveObject { q: "[[email protected]](/c/[email protected])" }) local_user_view=Some(REDACTED)
              at crates/apub/src/api/resolve_object.rs:19
    2: lemmy_server::root_span_builder::HTTP request
            with http.method=GET http.scheme="https" http.host=REDACTED http.target=/api/v3/resolve_object otel.kind="server" request_id=04b362f0-91fc-401c-bcbe-6a8317e0a768 http.status_code=400 otel.status_code="OK"
              at src/root_span_builder.rs:16```

Server OS:

Ubuntu Jammy

uname:

5.15.0-105-generic #115-Ubuntu SMP Mon Apr 15 09:52:04 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

Browser console errors:

None - Firefox 125.0.2 (64-bit) / Windows

Lemmy Server Version

BE: 0.19.3

Lemmy Instance URL

lemmy.cringecollective.io

This is only happening for some communities, for example, subscribing to this community worked fine, and I was able to subscribe to other communities on lemmy.world. ([email protected] worked fine)

Any ideas why this is happening? Is this on my end?

47
 
 

I've been trying to log in to my account but my password – which I have written down – is apparently not even long enough to be valid. I don't know when this started happening but the point is that I can't log back in.

I tried resetting my password but the email never came to me. I've tried multiple different emails, and have confirmed that the email is not only already in use (meaning that there is an account tied to it), but I've got a lemmy notification in my email inbox to show for it as well.

If anyone could help out and/or point me in the right direction, that would be greatly appreciated.

48
 
 

Who deleted c/antipsychiatry and why? Or is it not deleted? The community has about 46k subscribers on Reddit

49
 
 

I setup a new server a couple of days ago using the Ansible playbook, and some communities are federating successfully even though they're labeled as "subscribe pending", and others that are not populating even though they're labeled as "joined". See attached image.

Q1: What does "subscribe pending" mean? The Memes and Politics communities shown in the image were setup a couple of days ago, but the content is flowing despite them still saying "subscribe pending".

Q2: Why would a community be marked "joined" without the content flowing? I just subscribed to Lemmy Support about 15 minutes ago, and content doesn't seem to be flowing yet despite the status having quickly moved to "joined".

Q3: How can I check the status of things like this either in the database or in the logs? Looking for some general troubleshooting tips, since the logs for the lemmy Docker container are a bit spammy.

Here's something I noticed in the logs right after I initiated the subscription to lemmy_support:

lemmy-1  | 2024-05-06T22:28:43.257408Z  WARN lemmy_utils: error in spawn: Unknown: Failed to parse object https://lemmy.ml/c/lemmy_support/outbox with content {"error":"unknown","message":"Record not found"}: missing field `type` at line 1 column 48

I believe I saw this same issue when I first subscribed to Memes and Politics the other day. What's the best way to debug this?

Thanks in advance everyone, and thanks for all the amazing work.

50
 
 

I use the darkly-compoact theme in the web interface for lemmy, here on lemmy.world. How can I get the blue and red colors for up and down vote to be higher contrast? As-is, the pastel blue is so close to the default grey that I end up thinking an upvote didn't register. I'd prefer not to have to install some browser script just for this, and that the theme just be more inclusive of people with vision issues such as color blindness or looking for higher contrast colors.

view more: ‹ prev next ›