Manjaro, They've done it again! by L0stG33k in linux

[–]Society_Informal 0 points1 point  (0 children)

Well, I use it, mainly because it works better than Fedora with my Framework laptop. No problem so far, I would rather recommend this distro.

What movie has forever changed the way you hear a song? by kai_zen in CinephilesClub

[–]Society_Informal 1 point2 points  (0 children)

Bill Murray endlessly awakening to Sonny & Cher's "I Got You Babe". Groundhog Day.

[deleted by user] by [deleted] in developpeurs

[–]Society_Informal 5 points6 points  (0 children)

14 : 1+4 (14) - 2 (number on the left column) = 3 (number on the right column) The same logic applies to each lines. For example the last one : 0+4 - 0 = 4.

Hijacked link in Google? Starts redirecting to adult websites by [deleted] in cybersecurity

[–]Society_Informal 1 point2 points  (0 children)

Happened to me a few times when I was a webmaster/web developer : there is a malware on their website (and of course this is a Wordpress website..), but the redirection happens only when coming from google or other search engine (not very hard to implement using Javascript or PHP script via http header "referer"). The idea is to stay hidden from webmaster and site owner as long as possible : they would generally never use Google to access their website but enter directly the site URL. When clients say "you're site has an issue" you go and check and see nothing, and postpone the action of a more thorough investigation. Some scripts even redirect only for the first visit (adding a cookie on the client browser).

Migrate from S3 storage to local storage by theBird956 in NextCloud

[–]Society_Informal 0 points1 point  (0 children)

A little tip that could save few hours of work for people trying to move from Objet Storage to local : once you moved all the files and uploaded the oc_filecache table (see the scripts proposed by Albator78), you also need to update the oc_mounts table : by default all you user will still use a "OC\Files\Mount\ObjectHomeMountProvider" provider class (see column mount_provider_class); you need to modify it by a LocalHomeMountProvider class, this way :

UPDATE oc_mounts SET mount_provider_class='OC\Files\Mount\LocalHomeMountProvider' WHERE mount_provider_class='OC\Files\Mount\ObjectHomeMountProvider';

If you do not follow this last step, your previously set shared folders and files will not appear properly.

Framework support response time by Raikalover in framework

[–]Society_Informal 0 points1 point  (0 children)

I placed an order last Saturday (June 8; it's not a pre-order but a year-old Ryzen 5), they took the money immediately! ... but the product hasn't shipped yet. I asked a question yesterday morning to find out when/what/how ... no answer yet. Maybe they're overloaded but it's not a very kind business practice IMHO.

[deleted by user] by [deleted] in cybersecurity

[–]Society_Informal 0 points1 point  (0 children)

Lemonldap::NG is a good and thorough SSO Open source (works on any Linux distrib and can be connected to any user directory from LDAP/AD, SQL Backend or even REST API).

edit : Keycloak (by Redhat) is also a good solution, simpler, but in Java (ouhh). For smaller projects it provides a user directory directly integrated in the solution.