Skip to main content

Search

Items tagged with: friendica


[strong]Friendica: Schnelles Umschalten zwischen den Benutzerkonten?[/strong]


Hallo Zusammen. Derzeit muss man ja um zwischen mehreren Konten hin und her zu springen auf [em]Menü[/em] => [em]Nutzerkonten[/em] => Konto auswählen. Gibt es ein AddOn oder so, mit dem ich ein Ausklappmenü erhalte mit dem ich direkt zwischen den Konten umschalten kann? Das würde es wesentlich einfacher mit verschiedenen thematischen Konten zu arbeiten.

Danke für Eure Tipps und Hilfe im Voraus. :-)

#Friendica #Frage #Konten #Benutzerkonten #Umschalten #AddOn #2025-01-26 !Friendica Support


I wonder how I can create a new addon for #Friendica that does several things, one I would like to be able to create html posts, second I would like to have full media player, where I can listen to my music within my instance as well as share what I am listening to, I dont want to link services, I want to have a full inhouse media server, same with videos, I want to be able to upload to my server and watch them and share them in my feed, as well as possibly live stream both audio and video, now of course I know knowing about writing code, and I know even less about how to integrate into my Friendica instance, but just a few things I would really enjoy having maybe someone can help by either creating it, or at the least offer a good source for a coding challenged individual to do it themselves, !Friendica Developers !Friendica Support


[strong]Friendica: Fehlende Emoticons in der mobilen Version?[/strong]


Ich nutze sowohl die Desktopversion als auch die mobile Version der Friendica Weboberfläche. Nun ist mir schon mehrere Male aufgefallen das in der mobilen Version von Friendica manche Emoticons nicht angezeigt werden. In der Desktopversion sieht es so aus:



Und in der mobilen Version so:



Ich nutze sowohl auf dem Desktop als auch mobil Firefox, daran sollte es also nicht liegen. Die URL des entsprechenden Beitrags ist hier:

https://chaos.social/@rjayasinghe/113887291428373406

Woran kann das liegen?

#Friendica #Frage #Emoticons #Darstellung #Mobil #Desktop #2025-01-25 !Friendica Support

Die Erkältung hat es dann übrigens doch bei mir geschafft. Ist als Allergiker leider gar nicht so einfach, da klar den Strich zwischen Infekt und Allergie zu ziehen. 😌

Gestern, heute und morgen also eher Couch- als Sport-Posts. 🥲


Ein kleiner Tipp für alle, die neu auf #Friendica sind und ihre schönsten Bilder importieren möchten. Dazu gibt es eine Funktion, mit der ihr mehrere Bilder gleichzeitig hochladen und in einem Fotoalbum gruppieren könnt.

Ruft dazu den Massen-Upload von Bildern auf:

Klickpfad auf die Bildergalerie

Anschließend muss das Fotoalbum nur noch benannt und alle Bilder per Drag&Drop in das Upload-Feld gezogen werden.

Mehrere Bilder per Drag&Drop hochladen und in einem Fotoalbum gruppieren

Die Bilder werden nun importiert und stehen anschließend im Fotoalbum zur Verfügung. Dort können die Bilder weiter bearbeitet werden, indem man eine Bildbeschreibung hinzufügt, Tags vergibt oder Bilder löscht, die nur versehentlich in den Upload geraten sind.

Das Schöne ist. All diese Bilder stehen in den Alben zur Verfügung, um einmal oder mehrmals in Beiträgen verwendet zu werden. Deshalb bietet der Editor die Möglichkeit, Bilder aus den Alben zu übernehmen. Die Textbeschreibungen werden dabei 1:1 übernommen.


Hi @kmh and @Matthias

Took a look at your #friendica bookface theme and I am in love. It eradicates so many issues I had with the current frio default theme that I was wondering, are you planning to create a PR for this to be included in default friendica?

@Friendica Support


Let's try it again: This post from #Mastodon can reach the whole #Fediverse, #Bluesky & more. That's #Sharkey, #Pixelfed (hence the pic), #Mbin, #Lemmy, #Friendica, #Hometown, #Akkoma... How far can it go?

#SocialMedia

Edit: The results are in 👇
A graph showing the distribution of the shares by software, #Mastodon clearly in the lead, #Bluesky a distand second, then #Friendica, #Hubzilla, #Misskey and many more.. All together 13 different platforms are represented.


FYI #fediverse


I just spent 3 hours cleaning my #Friendica #databse, I got flooded by activitypub-trollcf and well lets just say that was not fun. !Friendica Admins !Friendica Developers !Friendica Support be safe #Fedi.Tips

sql
CREATE TABLE blocklist (
id INT AUTO_INCREMENT PRIMARY KEY,
domain VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

UPDATE `gserver` SET `blocked` = TRUE WHERE `url` LIKE '%activitypub-troll.cf%';

DELETE FROM `workerqueue` WHERE `parameter` LIKE '%activitypub-troll.cf%';

DELIMITER $$
CREATE TRIGGER before_insert_workerqueue
BEFORE INSERT ON `workerqueue`
FOR EACH ROW
BEGIN
IF NEW.parameter LIKE '%activitypub-troll.cf%' THEN
SIGNAL SQLSTATE '45000'
SET MESSAGE_TEXT = 'Insert of activitypub-troll.cf is not allowed';
END IF;
END$$
DELIMITER ;

DELETE FROM `workerqueue` WHERE `done` = 1;
DELETE FROM `workerqueue` WHERE `done` = 0;

htasccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_REFERER} activitypub-troll\.cf
[NC]RewriteCond %{REMOTE_HOST} activitypub-troll\.cf
[NC]RewriteCond %{HTTP_USER_AGENT} activitypub-troll\.cf
[NC]RewriteRule .* -
[F]</IfModule>


FYI #fediverse


I just spent 3 hours cleaning my #Friendica #databse, I got flooded by activitypub-trollcf and well lets just say that was not fun. !Friendica Admins !Friendica Developers !Friendica Support be safe #Fedi.Tips

sql
CREATE TABLE blocklist (
id INT AUTO_INCREMENT PRIMARY KEY,
domain VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

UPDATE `gserver` SET `blocked` = TRUE WHERE `url` LIKE '%activitypub-troll.cf%';

DELETE FROM `workerqueue` WHERE `parameter` LIKE '%activitypub-troll.cf%';

DELIMITER $$
CREATE TRIGGER before_insert_workerqueue
BEFORE INSERT ON `workerqueue`
FOR EACH ROW
BEGIN
IF NEW.parameter LIKE '%activitypub-troll.cf%' THEN
SIGNAL SQLSTATE '45000'
SET MESSAGE_TEXT = 'Insert of activitypub-troll.cf is not allowed';
END IF;
END$$
DELIMITER ;

DELETE FROM `workerqueue` WHERE `done` = 1;
DELETE FROM `workerqueue` WHERE `done` = 0;

htasccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_REFERER} activitypub-troll\.cf
[NC]RewriteCond %{REMOTE_HOST} activitypub-troll\.cf
[NC]RewriteCond %{HTTP_USER_AGENT} activitypub-troll\.cf
[NC]RewriteRule .* -
[F]</IfModule>


FYI #fediverse


I just spent 3 hours cleaning my #Friendica #databse, I got flooded by activitypub-trollcf and well lets just say that was not fun. !Friendica Admins !Friendica Developers !Friendica Support be safe #Fedi.Tips

sql
CREATE TABLE blocklist (
id INT AUTO_INCREMENT PRIMARY KEY,
domain VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

UPDATE `gserver` SET `blocked` = TRUE WHERE `url` LIKE '%activitypub-troll.cf%';

DELETE FROM `workerqueue` WHERE `parameter` LIKE '%activitypub-troll.cf%';

DELIMITER $$
CREATE TRIGGER before_insert_workerqueue
BEFORE INSERT ON `workerqueue`
FOR EACH ROW
BEGIN
IF NEW.parameter LIKE '%activitypub-troll.cf%' THEN
SIGNAL SQLSTATE '45000'
SET MESSAGE_TEXT = 'Insert of activitypub-troll.cf is not allowed';
END IF;
END$$
DELIMITER ;

DELETE FROM `workerqueue` WHERE `done` = 1;
DELETE FROM `workerqueue` WHERE `done` = 0;

htasccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_REFERER} activitypub-troll\.cf
[NC]RewriteCond %{REMOTE_HOST} activitypub-troll\.cf
[NC]RewriteCond %{HTTP_USER_AGENT} activitypub-troll\.cf
[NC]RewriteRule .* -
[F]</IfModule>


FYI #fediverse


I just spent 3 hours cleaning my #Friendica #databse, I got flooded by activitypub-trollcf and well lets just say that was not fun. !Friendica Admins !Friendica Developers !Friendica Support be safe #Fedi.Tips

sql
CREATE TABLE blocklist (
id INT AUTO_INCREMENT PRIMARY KEY,
domain VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

UPDATE `gserver` SET `blocked` = TRUE WHERE `url` LIKE '%activitypub-troll.cf%';

DELETE FROM `workerqueue` WHERE `parameter` LIKE '%activitypub-troll.cf%';

DELIMITER $$
CREATE TRIGGER before_insert_workerqueue
BEFORE INSERT ON `workerqueue`
FOR EACH ROW
BEGIN
IF NEW.parameter LIKE '%activitypub-troll.cf%' THEN
SIGNAL SQLSTATE '45000'
SET MESSAGE_TEXT = 'Insert of activitypub-troll.cf is not allowed';
END IF;
END$$
DELIMITER ;

DELETE FROM `workerqueue` WHERE `done` = 1;
DELETE FROM `workerqueue` WHERE `done` = 0;


@Friendica Support

Hi there,
testing around with the software #castopod, developed by @Castopod :podcasting2: .

In general terms federation with #friendica works, even integration into public forum pages and reshare by those when the castopod profile is followed by the forum page in the first place, as tested with the forum page @podCasts. As of now following from castopod profiles apparently isn't implemented. Also as of now we didn't manage to get the cron job to work at that new instalation on a shared hosting.

What is strange is that a podcast episode publication doesn't embeed the audio player so it can't be reproduced inside the post shown over here on friendica. On mastodon this works, the post displayes a video like screen and reproduces the audio file.

Not sure if this is a specific issue of this friendica instance as it is stil 2023.05 or if this is something the latest versions experience to.

The uploaded audio file was in the format m4a.

This is the link to the original post:
https://cast.tupambae.com/@bitPickup/posts/d88b27ab-c8c2-461d-9ec6-ac684af2908f

Link to a mastodon instance where the post can be seen:
https://troet.cafe/@bitpickup/113875013233253536

Link to this site here where the audio is not displayed but only a link:
https://tupambae.org/display/db58d9ad-f363bd74ed16681c-f66973c5

The language is set to English, apparently by default.


Profile pic looks blurry


Hi, I have noticed that my profile pic looks a bit distorted and blurry. How can I fix that? (Or do I have to get new glasses)? Kr, Wilmar

#friendica
!Friendica Support


[strong]Weis jemand was mit anonsys.net los ist[/strong]


Hallo Zusammen, weiß jemand von Euch was mit dem Friendica Server auf anonsys.net los ist? Ich kann die Seite nicht mehr aufrufen, bekomme nur noch einen 404er Fehler.

Leider weiß ich nicht wie ich @Tuxi ⁂ der den Server betreibt erreichen kann, deshalb frage ich einfach mal in die Runde.

#Frage #Fediverse #Friendica #anonsys.net #404er #2025-01-19 @Friendica Support @Friendica Admins @askFedi_de group



[strong]Friendica: Sprachen werden nicht übernommen?[/strong]


Man kann ja unter 'Einstellungen => Ansicht => Kanäle' definieren welche Sprachen die in den Kanälen angezeigten Beiträge haben sollen. Genauso wie in den selbst definierten Kanälen auch. Nun ist mir aber aufgefallen das diese Einstellung offenbar nicht übernommen wird. Den ich klicke auf den Button 'Einstellungen speichern' und wenn ich die Einstellungen dann noch mal aufrufe, ist meine Auswahl für die Sprachen weg. Ist das ein Bug oder verstehe ich da was falsch?

#Friendica #Frage #Kanäle #Sprachen #Einstellungen #Bug #Fehler #2025-01-17 !Friendica Support



[strong]Friendica: Wegen X abgerufen?[/strong]


Ich habe hier auf meiner noch recht neuen Installation recht häufig Beiträge bei welchen als Herkunft wegen X abgerufen. X ist dabei ein Kontakt mit welchen ich verbunden bin und der den betreffenden Beitrag Kommentiert, möglicherweise auch geliked oder Weitergesagt hat. Das ist aber für mich nicht Sinn der Sache, zumal das meinen Stream/TL sehr voll macht und dazu führt das ich z. T. Beiträge die ich wichtig finde übersehe. Also wie kann ich das abstellen?

#Friendica #Frage #Hilfe #Beiträge #Timeline #Stream #2025-01-16 !Friendica Support


Friendica event participants counter


!Friendica Support

Hi! I just discovered the event participant feature where people can mark their attendance which will then be shown in a counter at the original post.

Has this been introduced in 2024-12 or have I just not seen it before? Anyhow. It is a great feature and I like it a lot!

#Friendica #Events #calendar


[strong]Friendica: Interessant, seit ich das Hosting einer eigenen Friendica Instanz gebucht habe, habe ich lauter Menschen bzw. Beiträge in der TL/Stream die ich vorher nicht hatte.[/strong]


Natürlich neben denen die ich bisher hatte. Das ist zwar ein wenig viel, aber ich bekomme das schon noch in den Griff. :-)

#Friendica #Hosting #Beiträge #Überlaufen #2025-01-15 @Friendica Support


!Friendica Support

An other problem with

Friendica 'Interrupted Fern' 2025.02-dev - 1576
PHP 8.1.29

on an other installation of #Friendica

Avatars of other accounts are blurred


Are These Accounts Monitored ???


!Friendica Developers !Friendica Support As of right now I am not sure if my #Friendica instance is working across the #fediverse as I am not seeing much engagement at all, and more than half of who I am following, I am not receiving their #feeds at all, and at this point I am clueless as to what is going on or how to deal with, because I dont know what is wrong, or if anything is wrong.

VersionFriendica 'Interrupted Fern' 2025.02-dev - 1576
Server Settings
PHP
version 8.1.31
php.ini /opt/alt/php81/etc/php.ini
upload_max_filesize 256M
post_max_size 256M
memory_limit 512M
MySQL / MariaDB
max_allowed_packet 268435456

I am not seeing much engagement, more so I am not seeing posts of those I follow across the fediveres, and I know several post a few times a day, but I am not seeing much activity at all, any ideas on what may be going on would be great, and please any directions please make very simple to understand, brain issues, sometimes I struggle grasping things that should be easy. If it matters, I am in cPanel on shared hosting, so not root access to anything.

https://social.2ndshot.photos/profile/pasjrwoctx pasjrwoctx@social.2ndshot.photos


Friendica auf dem Raspberry Pi installieren


Nicht nur für mich als kleine Gedankenstütze halte ich hier auf meinem Blog fest, wie ich es endlich geschafft habe, Friendica auf dem Raspberry Pi zu installieren. Nun bin ich selbst überhaupt kein Experte in solchen Dingen, man möge es mir nachsehen, falls ich einen Fehler gemacht oder etwas doppelt geschrieben habe. Ich bin auch noch nicht so lange im Fediverse unterwegs und bei Linux […]

Weiterlesen: https://blogzwo.me/raspberry-pi/friendica-auf-dem-raspberry-pi-installieren.html

#Debian #Fediverse #Friendica #Linux #PHP #Raspberry
Die Abbildung zeigt die Friendica-Weboberfläche nach einer erfolgreichen Installation auf einem Raspberry Pi. Zu sehen sind die Version der Friendica-Instanz (2024.08), Datenbankinformationen sowie Links zu weiteren Ressourcen und ein Hinweis auf nicht installierte Addons oder Apps.


Friendica Installation

Ich versuche gerade die #Fediverse Anwendung #Friendica auf meinem #Raspberry Pi 5 in einem #Podman #Container zu installieren. Aber bei der Datenbank ist Schluss. da bleibt es hängen. Weiß jemand Rat? @Friendica Support zum Beispiel?

Hardcopy Friendica Installation

Hardcopy Friendica Installation
version: "3.7"

services:

  mariadb:
    image: docker.io/library/mariadb:latest
    restart: always
    volumes:
      - mydb:/var/lib/mysql
    ports:
      - "6033:3306"
    environment:
      MYSQL_ROOT_PASSWORD: *****
      MYSQL_DATABASE: friendica
      MYSQL_USER: friendica
      MYSQL_PASSWORD: *****

  phpmyadmin:
    container_name: phpmyadmin_9092
    image: docker.io/library/phpmyadmin:latest
    restart: always
    ports:
      - "9092:80"
    environment:
      - PMA_ARBITRARY=1
      - PMA_HOST=mariadb
    depends_on:
      - mariadb

  app:
    image: docker.io/library/friendica
    container_name: friendica_9093
    restart: always
    volumes:
      - friendica:/var/www/html    
    ports:
      - "9093:80"
    environment:
      - MYSQL_HOST=mydb
      - MYSQL_USER=friendica
      - MYSQL_PASSWORD=*****
      - MYSQL_DATABASE=friendica
      - FRIENDICA_ADMIN_MAIL=*****
    depends_on:
      - mariadb

volumes:
  mydb:
  friendica:

networks:
  proxy-tier:


Imo, #Friendica will have a better adoption if it will also have a theme that looks like the #Facebook's one.



For those who don't know, you can also change how your interface looks by going to Settings > Display and then the 1st two sections. The problem is that there are generally only two options:

  • Frio - which is the default, but some people find it rather dated, and
    [li] Vier - which, despite its description, looks kinda more dated than Frio and with less custom color options



This is clearly not ideal when people are looking for a more minimalistic interface, that looks more like the one brought up by platforms like Xitter, Reddit or even current day Facebook.

I found two repositories on GitHub with some Friendica themes (here and here), but they seem way more outdated as well (even though some of them seem cool even today). trom.tf also has some cool themes that they made, starting from the default Frio one.

Given that themes can be selected by a user from a simple drop-down in the settings, I think having a more Facebook-like theme at hand would really be a boon to Friendica's adoption given these times, what do you think?

#Meta #fediverse #fedi #ideas #fediidea @Facebook Refugees @Replace Facebook Community @Friendica Tips


@helpers@forum.friendi.ca

I cannot find any documentation for how to install friendica using sqlite driver instead of mysql. I already know how to do the standard installation with mysql but I want to use sqlite instead.

I need help with installing and running via sqlite backend and tips on how to minimize database storage size. Is there any documentation on this? Has anyone done it?

#Friendica #Sqlite #Fediverse


I cannot see my own GoToSocial posts in my profile, if I do mention a Friendica group. Example:

https://fedi.caliandroid.de/@st3fan/statuses/01JFR2VNHMM4BXATVA70QS15E3

Looks like a #friendica #gotosocial issue

Frage an die Rad Bubble mit Kids:
Hat jemand für seine Kinder (6-10 Jahre) einen "Fullface" Helm (auch) für normales Radeln, Stuntscooterfahren etc. im Einsatz?

Gibt es nennenswerte Einschränkungen im Tragekomfort oder der Seitensicht im Straßenverkehr?

Ist so ein Helm nur für hartes Gelände sinnvoll?

Danke!

#fahrrad #kinder #fahrradhelm #fullFace

@fedibikes


[strong]Friendica: Warum werden Youtube Videos nicht inline dargestellt?[/strong]


Wenn ich mich recht erinnere wurden als ich zu Friendica kam Youtube Videos inline, sprich im Beitragstext eingebettet dargestellt. Doch das scheint schon eine Weile vorbei zu sein, oder ich habe was falsch eingestellt. Bei mir sieht das z. B. so aus:



Ist das so gewollt? Ich finde es auf jeden Fall weder schön noch komfortabel zu nutzen.

#Frage #Hilfe #Friendica #Youtube #Embedded #Inline #Video #2024-12-23 !Friendica Support


[strong]Friendica: Youtube Bug im Markdown Addon?[/strong]


Hallo Zusammen,

immer wenn ich als ersten Markdown Link einen Youtube-Link habe, dann wird er nicht wie zu erwarten hinter dem Linktext verborgen, sondern erscheint folgendermaßen:



Ich vermute mal das das ein Bug ist oder?

Danke für Eure Hilfe im Voraus und eine schöne Weihnachtszeit

Grüße Sascha

#Frage #Hilfe #Friendica #Markdown #Links #Youtube #2024-12-23 !Friendica Support


[strong]Friendica: Doppelte Beiträge?[/strong]


Hallo Zusamme, ich habe häufig Beiträge doppelt im Stream, sogar direkt hintereinander. Woran kann das liegen?



#Friendica #Frage #Beiträge #Stream #DoppelteBeiträge #Hilfe #2024-12-23 !Friendica Support


All, there is an opportunity to get funding for open-source projects via the Next Generation Internet framework by the European Commission. Send in your ideas. Deadline February 1, 2025. For example, the federated social network Mobilizon is partly funded by this program.

LInks:
[1] https://nlnet.nl/core/
[2] https://nlnet.nl/project/Mobilizon-UX/
[3] https://ngi.eu/
[4] https://joinmobilizon.org/en/

#Friendica
!Friendica Support


[strong]Friendica: Nicht gelisteten Beitrag erstellen?[/strong]


Hallo Zusammen, ist es bei Friendica möglich einen nicht gelisteten Beitrag zu erstellen? Einen Beitrag der nicht öffentlich durch die Streams und so läuft. Ich meine explizit keine Beiträge die Zugangsbeschränkt sind. Ich kenne das von Mastodon und frage mich gerade ob diese Möglichkeit bei Friendica auch besteht.

#Frage #Friendica #Beiträge #Nicht-gelistet #2024-12-07 !Friendica Support
Trennlinie für die Signatur
Das ist ein Test für Signaturen. Und das ist ein Test für einen Link


@cantences I have various #Friendica accounts [different instances], but i have practically-speaking more or less abandoned them, primarily for this issue. Most of my friends use Masto not Friendica, & delays of minutes to hours in F makes ~real time interactions with them impossible.


[strong]Friendica Hashtag Ansicht[/strong]


Ich finde es wirklich sehr Schade das wenn ich nach einen Hashtag suche, das Ergebnis immer so präsentiert wird, dass man den entsprechenden Beitrag erst noch mal laden muss um ihn Gänze zu sehen:



Gibt es eine Möglichkeit das das so wie der normale Stream/Timeline dargestellt wird? Also so das man nicht jeden einzelnen Fund getrennt aufmachen muss um alles zu sehen.

#Friendica #Hashtags #Suche #Ergebnis #Darstellung #Frage #2024-12-03 !Friendica Support


[strong]Frage: Wie häufig ist das den?[/strong]


Bei Friendica kann man einen Kontakt zuweisen wie häufig bzw. wie viele von dessen Beiträgen im eigenen Stream erscheinen sollen. Das sieht dann z. B. so aus:



Jetzt habe ich aber die Frage. Während 'Alle Beiträge dieses Kontakts anzeigen' und 'Zeige keine Beiträge an' recht eindeutig sind, ist die Info zu 'Standardhäufigkeit' und 'Zeige nur einige Beiträge an' doch recht schwammig. Wie also ist das definiert wie viele Beiträge man von dem Kontakt mit diesen Einstellungen bekommt? Kann man die Einstellungen weitergehend anpassen?

#Frage #Friendica #Kontakte #Beiträge #Häufigkeit #2024-12-02 !Friendica Support


[strong]Frage: Wie kann es eigentlich sein das Beiträge von Kontakten bei denen ich eingestellt habe das ich keine Beiträge sehen will trotzdem angezeigt werden?[/strong]


In den Einstellungen zu einen Kontakt hat man ja die Möglichkeit festzulegen wie viel man von den Beiträgen des Kontakts sehen will. Allerdings ist mir aufgefallen das ich auch wenn ich die Option 'Zeige keine Beiträge an' Auswähle, Beiträge des betreffenden Accounts zu sehen bekomme.



Wo genau ist da das Problem?

#Frage #Friendica #Kontakte #Beiträge #Sichtbarkeit #2024-11-26 !Friendica Support


Update Friendica Public Server list to a searchable database (or remove)


Dear all, to attract new FRIENDICA users, the server selection is the first barrier any new user will encounter, so the [em]confusing, out-dated and user-unfriendly directory for public servers[/em], of which many are not "public" (family-servers, testing, ....) will scare away many potential users. Better to delete and point to other similar services, eg fedidb.org.

What do others think?

#friendica
!Friendica Support


I'm boosting, in hopes that you'll get some recommendations

I don't see the #Friendica hashtag in your message. You might want to edit and add it so those who follow Friendica posts read it.


Guess it does not work on #Friendica (at least on my instance) though. Incompatible protocol or channel


@noam @support @Friendica Support

Fediverse users: Follow @bsky.brid.gy to allow #Bluesky users to find and follow you.

Bluesky users: Follow @ap.brid.gy to allow #Fediverse users to find and follow you.

#BlueSky #Friendica


@Friendica Support @Libranet Support
Can I follow friends on #BlueSky from #Friendica (and specifically from Libranet)? I haven't managed so far. I tried searching for their profile URL with /rss at the end, but nothing is found. I've seen some conversations about this, but couldn't find a way to make it work.

Thanks!


Unwanted contact duplication


!Friendica Support

While browsing through my #Friendica database, I detected that I now have two identical contact records for myself. Initially, they were these records in table contact:
IdAccount
0System account
2my account

But now, something has changed to
IdAccount
0Zombie record
2my account
3my account (clone)
4System account

I have no clue, what has initiated this change, whether it is bad (I assume so) and how to cure it.

Any thoughts appreciated.


Invation Link

Hello !Friendica Support,

Does Friendica actually offer the option of sending an invitation link?

#Friendica #question