Search
Items tagged with: friendica
For the other external references, I have no idea, just block 3rd-party cookies, I guess.
[strong]Frage: Gibt es die Möglichkeit Beiträge von Accounts denen ich folge automatisch weiterzusagen?[/strong]
Ich hatte in Erinnerung das es so was gibt oder gab, bin mir aber alles andere als sicher. Das wäre sehr gut um die Beiträge von Menschen, Gruppen und Institutionen z. B. aus einer Stadt zu bündeln.
#Frage #Friendica #Accounts #Weitersagen #AutomatischesWeitersagen #2025-04-10 !Friendica Support
[strong]Friendica: Welchen Sinn macht die Option Öffentlichen Beiträge für anonymen Besucher zu sperren?[/strong]
Es gibt bei den Einstellungen folgende Option die es ermöglicht anonymen Besuchern der Webseite den Zugriff auf die öffentlich eingestellten Beiträge zu verweigern.
Für mich persönlich ist das durchaus sinnvoll, da ich meine Beiträge ja fürs Fediverse und nicht für Google und Co. schreibe. Nun stellt sich aber dennoch die Sinnfrage, wenn ca. 80 Prozent der eigenen Kontakte eine Plattform (Mastodon) nutzen die die Beiträge nicht korrekt darstellen und den ursprünglichen Beitrag auch nicht inline laden kann. Deren Nutzer also darauf angewiesen sind anonym über den Server auf der der Beitrag erstellt wurde darauf zuzugreifen.
[strong]Wie geht Ihr damit um? Welche Lösungen habt Ihr dafür gefunden?[/strong]
#Friendica #Beiträge #ÖffentlicheBeiträge #AnonymeZugriffe #Mastodon #Frage #2024-03-24 !Friendica Support
[strong]Friendica: Warum sind in den Kommentaren keine Profilbilder von Lemmy Accounts zu sehen?[/strong]
Ja ich weiß das auf Lemmy die Sache mit den Benutzeraccounts etwas anders gehandhabt wird. Aber das Profilbild des Accounts der den Beitrag eingestellt hat sieht man ja auch. Hier ein Beispiel:
https://feddit.org/post/9571538
#Frage #Friendica #Lemmy #Feddit #Profilbilder #Benutzeraccounts #2025-03-22 !Friendica Support
@Friendica Support @Friendica Admins
freifunkh@friendica.me has a homepage in its profile and the homepage has a link to the profile with rel="me" set. These are the results:
- Opening the profile in a browser without login => homepage URL visible and marked as verified (✔️).
- Opening the profile while being logged into Friendica (different server) => no URL visible.
- Opening the profile while being logged into Mastodon (different server) => no URL visible.
Mastodon App even shows a warning, saying there is no verified link.
#Friendica @Friendica Support
Dieser gibt neben grundsätzlichen Informationen auf was Instanzbetreiber achten müssen, vor allem auch eine sehr praktische Sammlung an Musterdokumenten unter CC BY-ND 4.0-Lizenz. Ihr könnt es also für euere Instanzen anpassen und nutzen.
Auch relevant für @Friendica Admins / @Friendica Support
Auf einem abstrakten Niveau sind die Anforderungen, die wir beschreiben, auch auf andere Plattformen des Fediverse übertragbar. Dennoch gibt es einige Aspekte, die von der konkreten Plattform und Software-Implementierung abhängen. So sind zum Beispiel die Möglichkeiten, rechtliche Texte einzubinden und anzuzeigen, unterschiedlich.
Danke@DS_Stiftung@social.bund.de
https://stiftungdatenschutz.org/praxisthemen/datenschutz-bei-mastodon
#impressum #dsgvo #fediverse #friendica #mastodon #tos #deutschland #datenschutz
Praktische Umsetzung und Musterdokumente
Die Stiftung Datenschutz wurde im Januar 2013 von der Bundesrepublik Deutschland als Stiftung privaten Rechts gegründet. Sie ist gemeinnützig und verfolgt keine gewerblichen Interessen.stiftungdatenschutz.org
The initial setup was not done by me. It was still on a server with php 7.4 because it did not work with 8.x due to some plugins. I removed those plugins, apparently not maintained since 2014.
I also saw that it loads some js from some CDN, I don't like that either, so tips welcome on that. Maybe there is a plugin that stores such stuff locally?
Also can you suggest a free service to analyze your webpage, show problem, broken links and such?
I saw that the Avatar (only a systemwide standard avatar for all users) is not displayed in my Firefox, but looks fine on Chromium. May be a DNS issue, so local issue only, seems tailscale some how messes up my DNS resolution. But please have a look for any embedded stuff that does not load!
Send me screenshots if you like and/or links to the problem page.
Here is the wiki.friendi.ca
@helpers
tweaking apache configuration for friendica
allow overrides so dynamic pages can built correctly
rootname@VPShosting:/var/www/html#
sudo nano /etc/apache2/sites-available/000-default-le-ssl.conf
search for the line:
ctrl+W ->
DocumentRoot /var/www/html
add the code snippet:
<Directory /var/www/html>
AllowOverride All
</Directory>
save the file "000-default-le-ssl.conf":
ctrl+X -> Y -> hit ENTER
edited 000-default-le-ssl.conf
<IfModule mod_ssl.c><VirtualHost *:443>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www/html>
AllowOverride All
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
ServerName mydoman.com
SSLCertificateFile /etc/letsencrypt/live/mydoman.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/mydoman.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Edited 000-default-le-ssl.conf CODE
<IfModule mod_ssl.c>
<VirtualHost *:443>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www/html>
AllowOverride All
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
ServerName mydoman.com
SSLCertificateFile /etc/letsencrypt/live/mydoman.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/mydoman.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
create php.error.log
rootname@ubuntu:~#
touch php.error.log
tweaking basic settings:
editing php.ini
rootname@VPShosting:/var/www/html#
sudo nano /etc/php/8.1/apache2/php.ini
search for the following lines [ctrl+w] and modify the values:
search and modify the line :
ctrl+W ->
memory_limit =
modify to:
memory_limit = 256M
search and modify the line :
ctrl+W ->
upload_max_filesize =
modify to:
upload_max_filesize = 100M
search and modify the line :
ctrl+W ->
max_execution_time =
modify to:
max_execution_time = 300
search and modify the line :
ctrl+W ->
max_input_vars =
modify to:
max_input_vars = 1500
activate php.error.log
search:
ctrl+W ->
log_errors
unquote and and modify so it reads:
log_errors = On
; Default Value: Off
; Development Value: On
; Production Value: On
search:
ctrl+W ->
error_log
unquote and and modify so it reads:
; Log errors to specified file. PHP's default behavior is to leave this value
; empty.
; https://php.net/error-log
; Example:
error_log = /var/www/html/php.error.log
; Log errors to syslog (Event Log on Windows).
; error_log = syslog
save the file "php.ini":
ctrl+X -> Y -> hit ENTER
restart apache and check the status
rootname@VPShosting:/var/www/html#
systemctl restart apache2
rootname@VPShosting:/var/www/html#
systemctl status apache2
check php.error.log
rootname@ubuntu:~#
reboot
user@localPC:~$
log into your VPShosting again
rootname@ubuntu:~#
nano /var/www/html/php.error.log
Congrats!
With this you have completed via SSH on the console all the installation steps necessary, now it's time to browse to your friendica web page and actually install and activate your node:
Go to your website and have a look at the short installation routine of friendica itself.
#debian #linux #friendica #fediVerse #fediTutorial
friendica installation
friendica installation on the VPS hosting
--
Up to this point we basically performed a standard LAMP installation on a ubuntu 22.04 LTS VPS hosting.
The following steps concern the actual friendica server installation.
creating the directory for friendica and the user www-data
creat directories and permission for user www-data
back ground information what-is-var-www-html?https://stackoverflow.com/questions/16197663/what-is-var-www-htm
some general setup indications for the settings for several websites on the same server:
https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-20-04
¡IMPORTANT!
The following command and setting should only be used if you are on a clean brand new ubuntu VPS setup as it will or at least might meddle with your already existing web page setups as @tom s politely pointed out:
"This would damage a lot of (server) installations out there. Do not do this in /var/www, if you are not really sure, what you're doing."
rootname@VPShosting:~#
sudo chown -R www-data:www-data /var/www
rootname@VPShosting:~#
cd /var/www
creating user www-data and changing from user rootname to www-data
rootname@VPShosting:~/var/www#
sudo -u www-data bash
www-data@VPShosting:~$
(confirmation check if this is where console changes to www-data@VPShosting:~#)
moving (deactivating) the old /html folder
www-data@VPShosting:~$
mv html html.bak
The new /html folder will be created when we clone the gitHub stable branch of friendica in the next step.
cloning friendica from the gitHub repository
www-data@VPShosting:~$
git clone https://github.com/friendica/friendica.git -b stable html
configure PHP dependencies
www-data@VPShosting:~$
cd html
www-data@VPShosting:~/html$
bin/composer.phar install --no-dev
(is this the point the SSL install went wrong?)
https://squeet.me/display/962c3e10-1265-2ea9-912d-3cc762780991
creating folder for page view renderings
www-data@VPShosting:~/html$
mkdir -p view/smarty3
www-data@VPShosting:~/html$
chmod 775 view/smarty3
cloning the addons github repository
www-data@VPShosting:~/html$
git clone https://github.com/friendica/friendica-addons.git -b stable addon
activating .htaccess
www-data@VPShosting:~/html$
cp .htaccess-dist .htaccess
exiting user www-data
www-data@VPShosting:~/html$
exit
rootname@VPShosting:~/var/www/html#
#debian #linux #friendica #fediVerse #fediTutorial
Friendica has a LOT of feeds. Too many really. It's confusing. Overwhelming. Oh, and they're apparently called TIMELINES here. I've been trying to figure out which ones I should be using that are similar to the ones I used on Facebook.
Over on Facebook most people probably never go beyond the very awful "News Feed" which is full of algorithm-driven, AI-generated, and advertising garbage. And the only people, groups, or pages you see there are the ones you regularly interact with. Which is why for years I've been using the other feeds on Facebook, and they're the only thing that actually makes that platform usable IMO. But it's hard to try and figure out what Friendica "Timelines" are the closest corollary to the Facebook ones?
My best guesses are:
What's Hot = News Feed: It's a fire hose of posts from accounts you don't follow that are getting a lot of engagement. However, I have no clue what kinds of interactions or how many get something into this feed. There is also a "Discover" feed that says it's supposed to show "Posts from accounts that you don't follow but might like" and I have no clue how, without an algorithm, it would determine what I might like. Apparently it doesn't or can't because that feed is empty for me.
Latest Activity = All Feed: because it's based on people you're connected to and shows all their latest interactions (Posts, Likes, Shares, and Comments) including on posts by accounts you don't follow.
For You = Friends Feed: which I think is just posts from people listed as "Mutual Friendship" in your Contacts, meaning you are following them, they are following you.
Latest Activity + Circles/Account Types > Groups = Groups Feed: there doesn't appear to a separate Groups feed in Friendica.
Latest Activity + Circles > Interests = Pages Feed: at least I think "Interests" is referring to "Pages" but I'm not sure, and there doesn't appear to be a separate "Interests" feed.
It would be nice if you could filter the "Network" feeds by more than one thing at a time. There is no way to "stack" filters or save that view. Which is too bad because that would be a killer feature akin to Bluesky's custom algorithms!
As for the other "Timelines" in Friendica:
"Latest posts" and "Latest Creation" are obviously because stuff doesn't necessarily arrive on your server at the same time it was sent from another one. Though I'm not sure anything posted to social media is so time-sensitive you'd need these feeds since I assume the same stuff will show up under "Latest Activity."
"Personal" only shows posts that @ mention you. "Sharers of Sharers" sounds like a feed of what you would call "Friends of Friends" on Facebook. It's unclear what puts someone in "Quiet Sharers" though. It sounds like "Mutual Friendships" that just don't post much, but how often is often?
I'm guessing "Starred" means posts I've LIKED? Or does it only mean posts I've actually gone to the "More..." drop-down and selected "Add Star"? Or BOTH?
"Images," "Audio," and "Video" are pretty self-explanatory, I guess if you're here for the photos, podcasts, and TikTokish content. I've also seen on servers that have a lot of add-ons enabled people might have additional feeds for other platforms they are connected to, which are self-explanatory.
"Local Community" and "Global Community" appear to be the same feeds as under the "Community" button in the main navigation. Which is redundant, but okay.
Then I've also seen instructions for new users to go into Settings > Social Networks > General Social Media Settings and change the drop-down to "Any conversation my follows interact with, including likes" or your feeds will be pretty bare.
It's little wonder this confuses people coming from other platforms. It's...a lot.
#friendica
https://wiki.friendi.ca/docs/move-account mentions "Please consider that this is only possible on servers with open registration. On other systems only the administrator can add accounts with an uploaded file."
I run an instance where registrations require admin approval, how do I as administrator import a user's account export from another server into my server?
#friendica
Hi, I have a question
Why
sudo -u www-data bin/console storage move
it was used? When I installed and configured #friendica on my server , i changed the storage to filesystem , what i did i created the storage folder (out of the friendica folder) , after sudo chown -R www-data:www-data /var/www/storage
in Storage Administration Filesystem I entered the path and it is saved /var/www/friendicastorage
I missed something? what i did is correct?
Cheers
This is a post actually directed in part to the @Friendica Support forum page of our free open source software community. I guess you heard the term #friendica already, as you are quite a while in the fedi, beginning with your #diaspora presence a long time ago. Our main coder @Michael Vogel is a fan of yours (if I got that right). I asked him the other day in a FOSDEM element chat, if he considers it possible that you make some drawings for friendica, maybe even for every new version, we have like two o three releases every year.
The idea came up because on this server we decided to use the following comic on the login/welcome page:
Than we came up with this variation for the text as you can see:
It seemed to me that Michael liked the idea to have some drawing by you, so I don't want to let the idea slip away and ask you, as well as the community, what everyone thinks about such an option. There are also the 403, 404, 500 and so on error pages. Well maybe those are more a task for @isfies!, who knows ..
Sumasumarum, any ideas, comments or questions about this proposal
@all
?
!Friendica Support
#friendica Q&A @Tutorial
How does the setting:
'php_path' =>
, definable in the /config/local.config.php
or by the console via /bin/console config
work exactly?The setting
'php_path' => '/usr/bin/php'
, that actually also shows up in the crontab -e
file doesn't exist as an existing folder structure and/or file, at least on this standard ubuntu server installation, but was the original setting of this instance when we ported it from a friendica beta hosting service over here to a single IP VPS server with a single domain. And till now with that setting this instance ran quite well.Where does /usr/bin/php actually point to, by whom is ist accessed (www-data?) and is there a way to change the reference it points to (if it is actually a reference inside friendica)?
On this server, in the case of the installed friendica versions 2024.xx we set this to:
'php_path' => '/etc/php/8.1/fpm/'
and for now the display in the admin panel looks quite right:PHP version 8.1.31 php.ini /**/8.1/fpm/php.ini
reasons for this "help to understand" request
This server is being setup to host different sub/domains, including different and older friendica instances (3.4.3/2019.12/2021.01/2021.04). The idea is at least to be able eventually to evolve them step by step to the actual stable or old stable versions of friendica. To achieve that this tutorial was used to be able to manage different php versions on the same VPS. The references for the php versions were taken from this github page.
There for the way the php version used for the different friendica versions is crucial to make things work in the first place.
First of all, sorry for my English, I use a translator.
I am using Friendica version 2024.12, database version is 1576/1576 and the post update version is 1550/1550.
I have changed my storage in Friendica from “Database” to “Filesystem”.
I have selected /var/friendica_storage as the path -> drwxr-xr-x 258 www-data www-data 4096 2 Mar 15:49 /var/friendica_storage
This setting was also applied:
sudo -u www-data bin/console storage list:
Sel | Name
-----------------------
* | Filesystem
| Database
Then I execute the following:
sudo -u www-data bin/console storage move
[2025-03-02 14:49:46] Moved 5000 files
[2025-03-02 14:49:50] Moved 5000 files
[2025-03-02 14:49:55] Moved 5000 files
[2025-03-02 14:49:59] Moved 5000 files
[2025-03-02 14:50:04] Moved 5000 files
[2025-03-02 14:50:08] Moved 5000 files
[2025-03-02 14:50:13] Moved 5000 files
[2025-03-02 14:50:18] Moved 5000 files
[2025-03-02 14:50:22] Moved 5000 files
[2025-03-02 14:50:27] Moved 5000 files
[2025-03-02 14:50:33] Moved 5000 files
[2025-03-02 14:50:38] Moved 5000 files
[2025-03-02 14:50:43] Moved 5000 files
[2025-03-02 14:50:49] Moved 5000 files
[2025-03-02 14:50:54] Moved 5000 files
[2025-03-02 14:50:59] Moved 5000 files
[2025-03-02 14:51:04] Moved 5000 files
[2025-03-02 14:51:10] Moved 5000 files
[2025-03-02 14:51:16] Moved 5000 files
[2025-03-02 14:51:22] Moved 5000 files
[2025-03-02 14:51:27] Moved 5000 files
[2025-03-02 14:51:32] Moved 5000 files
[2025-03-02 14:51:37] Moved 5000 files
[2025-03-02 14:51:44] Moved 5000 files
[2025-03-02 14:51:49] Moved 5000 files
[2025-03-02 14:51:54] Moved 5000 files
[2025-03-02 14:52:00] Moved 5000 files
[2025-03-02 14:52:02] Moved 2180 files
[2025-03-02 14:52:03] Moved 137180 files total
[Error] Friendica\Console\Storage::doExecute(): Return value must be of type int, null returned
It ends with this error message. But the files are present in the /var/friendica_storage folder.
The query in MariaDB shows that the images are still stored in the database:
MariaDB [xxxxxxxxxxxx]> SELECT COUNT(*) FROM photo WHERE data IS NOT NULL;
+----------+
| COUNT(*) |
+----------+
| 137228 |
+----------+
1 row in set (0,419 sec)
MariaDB [xxxxxxxxxxxx]> SELECT COUNT(*) FROM photo WHERE data IS NOT NULL;
+----------+
| COUNT(*) |
+----------+
| 137246 |
+----------+
1 row in set (0,39 sec)
But probably also in /var/friendica_storage, because this is getting bigger.
So the images are now saved simultaneously in the database AND in the /var/friendica_storage folder, including new images!
I have now tried this process twice and both times the error occurred. I restored my database backup.
What have I done wrong, what can I improve or change?
#Friendica, #Help
Can't seem to satisfy some of the PHP library requirements, namely IntlChar, IDN, OpenSSL. I read somewhere that installing openssl covers PHP libraries for same. Is this true? What about IntlChar and OpenSSL? Does php-intl cover IntlChar?
[strong]Friendica: Das kommt davon wenn man einen Zeilenumbruch im Pseudonym hat[/strong]
Das hatte ich bisher noch nicht. Das in einen erwähnten Account ein Zeilenumbruch im Pseudonym war. Geht das überhaupt oder ist hier was grundsätzlich falsch gelaufen?
#Friendica #Frage #Erwähnung #Pseudonym #Zeilenumbruch #2025-02-23 !Friendica Support
[strong]Friendica: Warum kann ich den Sharky Beitrag nicht aufrufen?[/strong]
Hallo Zusammen, ich wollte diesen Sharky Beitrag bei mir in Friendica öffnen indem ich wie gewohnt danach suche. Es geht aber nicht, es kommt immer nur 'no result'. Woran kann das liegen? Der Account selbst lässt sich problemlos öffnen, es gibt dort aber keine Inhalte. Mit einen anderen Account auf einer anderen Friendica Instanz (anonsys.net) geht es problemlos.
#Friendica #Frage #Inhalte #Sharky #Öffnen #Probleme #2025-02-16 !Friendica Support
[strong]Friendica: Animated GIF wird nicht korrekt angezeigt[/strong]
Das Profilbild von @Thunfischer 🐅 (Mastodon) ist ein animiertes GIF bei dem das dargestellte Gesicht hin und wieder mit einen Auge zwinkert. Auf dem Mastodon Profil funktioniert das auch so. Hier auf Friendica hingegen ist das gelegentliche Zwinkern zu einen Dauerzwinkern geworden. Ich kann mir also nur vorstellen das es an Friendica oder am Browser (Firefox) liegt. Den wenn ich das Bild im Browser einzeln aufrufe, hat es auch das nervöse Dauerzwinkern.
Hat einer von Euch eine Idee woran das liegen könnte?
#Frage #Friendica #aGIF #AnimatedGIF #Darstellung #2025-02-14 !Friendica Support
[strong]Friendica: Mehrere Bilder auf einmal hochladen?[/strong]
Hallo Zusammen, ich hatte in Erinnerung das es eine Möglichkeit gäbe mehrere Bilder gleichzeitig hochzuladen. Doch irgendwie finde ich das nicht mehr. Soweit ich mich erinnere ist konnte man die Bilder vom Dateimanager in das Uploadfenster ziehen, jedoch finde ich das irgendwie nicht mehr.
Habe ich da was übersehen?
#Frage #Friendica #Bilder #Upload #2025-02-13 !Friendica Support
All work done by @Kristi H. so huge thanks - this is outstanding 🙏 🚀
#Friendica #Theme #Stylesheet
Hello @Friendica Support
Why when I create a post and embed a video (I upload the video to my friendica storage) I always find it at the bottom of the page? I'll give you an example , I create the post like this
ABCabcAbcABC....I write something..... then I embed some videos from youtube like this,
and finally I insert the hashtags
#friendica #support #etc
I click on preview and everything is perfect , when I click on share, I publish my post, and I find the attachment of the video that I inserted at the end after the hashtags
What kind of formatting should I use? I've tried various combinations, I normally write my posts in Joplin notes, then I copy and paste. But I created this post directly "Create new Post" but nothing changes
original post
#diasporaPoll about polling.
#poll feature test, related to a #friendica post about vote by name polling.
If I get this right, D*'s poll feature can have a max of four questions and multiple choice is not available.
Also notable, in comparison with #mastodon poll's, there is no time limit for the poll.
As mastodon allows editing post's, the poll count is reset if the post text is edited, but not the time span of the poll.
Time span is from 5 minutes up to 7 seven days.
mʕ•ﻌ•ʔm jesuiSatire .. ᘛ⁐̤ᕐᐷ wrote:
Important detailfirstfor D* users:
The original post on friendica has already moved to v.0x so it's recommended to visite this link to have an idea if there have beenimportanteupdates, other wise your comments might become out of context or be way behind the time line.
What link mʕ•ﻌ•ʔm jesuiSatire .. ᘛ⁐̤ᕐᐷ?
Look's that there was definitely missing some #mateina in your circuits.
Here is the link to watch the whole thing unraveling in real time and with all eventual text updates in posts and answers, dear #diasporians:
https://forum.friendi.ca/display/0ac89072-1767-a1e2-3482-4df229573083
Actually such a link is federated thru out the activityPub federation but not present on D*, so friendicans could consider to add those originating links in a comment if that seems reasonable or important, probably something to have in mind depending on the content.
Right now the post is in v.02
Mayor changes:
* poll's aren't drown in pool's anymore
header wrote:
#activityPubescens
to appreciate the editing features #friendica brings to the table of this restaurant at the end of the #fediVerse, please visit the originating page of this post.
footer wrote:
If you you don't care about pool's just be brilliantly absent from the ballot box.
Ballot count since v.01 of this post:
Two hundred eighty seven friendicans abstained from the vote because they don't have a Badekapp for the pool option, no votes in favor of poll's and one vote against poll's by the user @Wilhelm.
Which timeout is set for worker process to deliver a message to a server? Is there a possibility to set the value?
Reason: Seems this #Friendica instance has to deliver message to a quite slow server - or better to say - communication is quite slow.
I have to temporarily suspend two #Friendica instances - they are each running on a share hoster and the worker is causing problems - is constantly being killed by the system. There don't seem to be enough resources for #Friendica.
Hello @Friendica Support
What can cause #friendica homepage [strong](My post and conversations)[/strong] to slow down? I set 10 posts per page, some of my posts have 1 or 2 videos embedded, my storage setup is Current [strong]Storage Backend: Filesystem[/strong]
when i click on my home page 🏛️ I notice that my browser takes about 10 seconds to load the post content , sometimes it doesn't even load the Friendica icon , I have to click the refresh button 1 or 2 times,
Before I used to embed videos via #nextcloud, and it worked fine. But then I edited the posts by removing the embedded video from nextcloud and uploading it to friendica and embedding it as an attachment, everything else works very fast . Some suggestions... please
cheers
Learning question and a call for action:
Why do people say that the #friendica user interface #UI as seen from a standard laptop desktop, in other words a working station screen, isn't a pleasant experience?
This looks like serious stuff to me, like a #newsPaper outlet similiar to #NYtimes or #ZEIT.
- The page background, seen here on this server as a big center #copyLeftFleur is modifiable.
- The logo kind footer as weel.
- A simple text field for the main header of the page, like in this case [common ground | CC-BY-SA-NC] fits nicely.
Can somebody please #enshittify this #KISS a littel bit, wasting time, attention and selfconfidence of the coder community!
@Jeff Jarvis @Eva Wolfangel @Christian Stöcker @taz @taz @Digitalcourage @Cory Doctorow
all of a sudden my notifier tasks is stuck on the little timer icon, but in the logs it shows done, and I have no errors, im not sure if this a bug, a issue or just a fluke, Friendica 'Interrupted Fern' 2025.02-dev - 1576 what ever is the problem is also preventing my instance/profile from fully federating, I cant get any new posts of my profile in any rss/atom feed reader at all, this just started and I am clueless as to what happened and where to look as there are no errors logged anywhere, and workerqueue shows jobs as done when they are completed, so I am really at a loss, and would like to fix this asap.
here are my current worker settings per admin/site/worker
Maximum load average
20
Maximum system load before delivery and poll processes are deferred - default 20.
Minimal memory
0
Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).
Maximum number of parallel workers
20
On shared hosters set this to 5. On larger systems, values of 20 are great. Default value is 10.
Maximum load for workers
15
Maximum load that causes a cooldown before each worker function call.
Enable fast-lane
When enabled, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.
Decoupled receiver
Decouple incoming ActivityPub posts by processing them in the background via a worker process. Only enable this on fast systems.
Worker defer limit
15
Per default the systems tries delivering for 15 times before dropping it.
Worker fetch limit
25
Number of worker tasks that are fetched in a single query. Higher values should increase the performance, too high values will mostly likely decrease it. Only change it, when you know how to measure the performance of your system.
I have dug through every file and the entire database and can not find what is causing this, I can see new posts from other people on other federated instances, I can see my posts, but they are not showing up in my feed reader, indicating they are either not completed tasks or not getting federated, I have been all over this, for hours today and no errors no logs showing any issues at all, yet I clearly have an issue, as you can see the Notifier Task is showing Pending instead of being Checked as done, Help would be greatly appreciated.
I have even tired dropping back to stable, and that still did not work, so I went back to Friendica 'Interrupted Fern' 2025.02-dev - 1576 I really wish I could figure out what is going on, sure would like to have this working as its really my only form of communication with the world
So I updated my php to 8.4.2, but that has not made any difference, and I cant go backwards, as I have something else on the same server that cant go down in versions, I have dug more and more, and have found nothing that is causing this issue, having some kind of idea where to look would be helpful, considering I have done everything imaginable to solve the Notifier Tasks Pending problem of hangging and have yet to find a solution, so I have tried to think outside the box and find a solution that does not include debugging, checking error logs, confirming config files, and assuming the database is correct and healthy, find another way to address this issue, and I am hitting a brick wall.
so now I just did git reset --hard origin/develop, and the problem is still there. :(
I have even created a test user on my instance, and verified it is instance wide.
#Friendica
#friendica #featureRequest
Hi there,
is there a way to change locally the profile picture displayed of a contact?
Haven't seen any option to that regard in the contact page.
I'm asking in part specifically because of the #eyeContact issues some people have. It's about the fact that they have real problems facing full face pictures that kinda "look straight at you", actually a known psychological effect not only in primates.
(Just stare consistently at a dog and you'll see. Well actually better you don't, unless you know what you are doing)
At the same time that's probably not the only reason a avatar could be unwanted for someone. So, optional I could think of or a standard feature that disallows the display of a avatar or a feature that allows to replace the avatar picture with something chosen by the user.
🤔
Hi there,
the moment has come to do the first instance upgrade cycle in the life of this instalation to bring this server to the actual stable version 2024.12-1 in the comming days.
In part the idea is to document every step in a post similiar to the howTo instructions:
install and/or move friendica to ubuntu 22.04 LTS VPS server
in the @EDIT | don't follow! profile.
Right now we are on 2023.05, so we will have to update step by step to:
2023.12 | release notes
2024.03 | release notes
2024.08 | release notes
2024.12-1 | release notes
Are there any specific recomandations or details to have in mind besides the information expected to be found in every update release instruction?
This is basically a single user instance with round about 14 forum pages with few followers each and a total of 18 profiles with contacts in the activityPub and diaspora community and some RSS subscriptions. No other specific conectors are enabled.
Installed addons/apps:
blockbot, calc, impressum, js_upload, notifyall, nsfw, pageheader, phpmailer, qcomment, rendertime, showmore_dyn, startpage
DB backups amount to ~180MiB and the image file storage folder on ftp around ~400MiB.
Friendica stable | 'Giant Rhubarb' 2023.05 - 1518
PHP Version 8.1.2-1ubuntu2.14
VPS server | Ubuntu 22.04 LTS
4 Core CPU, 8 GB Ram with 300GB NVME Disk - unlimited traffic
hosted by @ raroun 👍
Notes:
This instances right now seems to work well.
Sometimes this profile here has some strange hickups like when following up the link of a post from this server in a stream view a message "Not Found |The requested item doesn't exist or has been deleted." Also right now profiles from contacts, for example @ hoergen or @ feb don't show up in the contact list but they are displayed as followed in the profile contact page.
#friendica #fediAdmin
Ver. 05 | install and/or move friendica to ubuntu 22.04 LTS VPS server
EDIT - information
This tutorial is supposed to be published by the tutorial profile of this server.It is designed to have several chapters, each being distinctively seperated by an own titel. In total as of now there are like besides this introduction like 6 chapters.
posting and edition time of and by this EDIT profileof ver05 as of now 1hs
mastodon review contact: @mʕ•ﻌ•ʔm bitPickup
Categories:
@helpers@forum.friendi.ca
SPOILER - click to open/close || Introduction
This tutorial is an adaption of the tutorial "creating a friendica server - ubuntu" by @Hank G ☑️ based on the experience of the installation report by @…ᘛ⁐̤ᕐᐷ jesuisatire bitPickup:https://squeet.me/display/962c3e10-5765-2e86-4a15-589579746174
and specific help by @Raroun.
Server specs and friendica version used:
VPS server | Ubuntu 22.04 LTS
PHP Version 8.1.2-1ubuntu2.14
4 Core CPU, 8 GB Ram with 300GB NVME Disk
Friendica [STABLE] | 'Giant Rhubarb' 2023.05 - 1518
SPOILER - click to open/close || Installation environment and HowTo
The only reasonable way to work with a VPSserver on the web is using the console.If you are not familiar with that don't worry, it is easy and the only thing you have to do is being able to copy/paste the commands displayed:
¡
Copy/paste only the codeBoxes like this one
, located outside of the spoilers of this tutorial one after another without altering the sequence!Of course it is necessary to change the specific file names and passwords for you indiviual site, but that's all. promise!
On the console you wont be able to copy/paste with the keyboard ctrl-C/ctrl-V technique, you'll have to use the mouse "right click, chose option" technique.
This tutorial was created on a #debian #linux desktop environment.
There shouldn't be differences if you want to do this from a #windows machine.
The method used for communication between your local computer and the VPS server is called #SSH:
Wikipedia - Secure Shell:
"Cryptographic network protocol for secure data communication, remote shell services or command execution and other secure network services between two networked computers."
#linux #debian #ubuntu #friendica #fediVerse #fediTutorial #tutorial #fediHelp #fediTips #activityPub #HowTo #DIY #VPS #server #selfHosting
@admin@tupambae.org @tutorial@tupambae.org
Most #fediVerse platforms have profiles on their own platform and/or a #mastodon profile, because that's the kinda standard thought and behavior. But actually to me it looks like the #friendica #communityForum page capabilities exceed by far what mastodon or others have to offer. Well, I haven't digged into the fedi clone of reddit to see if that would be an even better option. What is true tho is that forum.friendi.ca is already long standing and our community has gone a long way, so there is in general terms "no single point of failure" like in other projects that depend on one main figure and that's it.
I consider our helpers community experience here, with all the followers of our helpers page getting resend the help requests posted to the forum, chiming in to help out and solve issues, very positive. So this is a proven setup and could help lot's of other projects out here too. Actually I do think that if implemented and adopted, it even could have a positive feed back loop for friendica itself, but that's like something on another page.
So having forum.friendi.ca already up and running, why not support the fediVerse community opening our doors to those who fulfill certain basic community standards?
This server here (tupambae.org) as well is only mend to be a forum server, and of course it's doors are open for any #fediPlatform that likes to have an own forum page over here, yet somehow to me it look's like forum.friendi.ca is the first natural and ideal candidate for something like that.
Of course same goes for a #fediAdmin, #activityPub or #APIdeveloppers community support forum, if that is desired or useful.
Right now in general terms the fedi lives on using some tags or maybe some a.gup.pe addresses, but it's actually us who hold and develop that option for more than a decade now inside the federation itself.
Was that more clarifying
@hypolite
?
@Friendica Support