• 6 Posts
  • 153 Comments
Joined 5 months ago
cake
Cake day: February 17th, 2024

help-circle


  • harsh3466@lemmy.mltoSelfhosted@lemmy.worldHow to host a userbase
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    2
    ·
    2 days ago

    I’m not entirely sure what you mean by userbase, but based on your description it sounds like you could set up a Wordpress docker container with some plugins to handle what you want and then use the Wordpress api for the calls. If you’re looking for like a paid membership situation for the site, there are free and pay plugins that can accomplish the payments and subscription integrations.










  • At the terminal, go to the directory that contains the mount point for the disk (so if the mount point is /mnt/disk go to /mnt.

    Run ls -l. This should list everything in /mnt with the owners and permissions. If your mount point (in this example disk) is owned by user and group root, then you just need to change ownership of the mount point and the disk attached.

    With the disk attached, run sudo chown -R user:user disk

    Replace each instance ofuser with your system username (if you’re not sure what you’re username is run whoami and it will tell you), and replace disk with your mount point directory.

    Here’s what this does:

    • sudo: escalates your privileges to run the chown command
    • chown: the utility that allows you to change ownership of files and directories
    • -R: tells chown to change ownership recursively
    • user:user specifies the user and group that will own the files/directories you are modifying.
    • disk: specifies the file(s)/directories you want to change ownership for.



  • harsh3466@lemmy.mltoSelfhosted@lemmy.world"No code" databases
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    1 month ago

    I’m currently using Baserow, and so far it suits my needs well enough. I’m not a very demanding user, but part of what I love is how nicely Baserow documents the api. It made it very easy for me to implement some automations I wanted to use to record data.

    Edit: fix stupid autocorrect errors