Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Kru-x

Community Developer
  • Joined

  • Last visited

Everything posted by Kru-x

  1. Have you tried to update the permalink option in wp settings? Kru-x
  2. First the WP docker container has nothing to do with the proxy, the proxy is only to point to the WP container. To use WP in a container us not really needed but it is an easy way to start one up and toss it when you are done. All is preconfigured in the container and done by people that knows what they are doing, I'm not one of them 🙂 Kru-x
  3. Good that you figure it out, but for others that wonders: The docker periodically updates your A record at godaddy (DDNS for godaddy domains). You can create a a comma-separated list of the 'A' record names you'd like to update. For example: "home" or "@,anothername", Kru-x
  4. Sorry it should have been /mnt/user/appdata/your_folder this is the path on your unraid server. Krusader probably mounts the user/ as root/ so it should be the same as yours. See the "/var/www/html", this is the path (folder) inside the container, and the "mnt/user/appdata/wordpress-temp" is the path (folder) on your server. What version of docker wont matter. So when you crank up a new container all files in "/var/www/html" (in this case all files in a new WP installation, the root of your site) gets copied to "mnt/user/appdata/wordpress-temp", after that on each update or restart of the container, all files in this folder should be persistent as docker wont copy and overwrite any files/folders with the same name. I tried Krusader ones but I didn't get it (i'm on mac and are using Forklift), how do you edit and save the wp-config.php file can you confirm in the terminal, if you go to the "mnt/user/appdata/your-site" (your case Root/Appdata/your-site) that the file is actually changed in there after edit. Looks to me that you are editing the file in the container, or that the storage is not persistent on your server but then the whole site would change so I am a little bit lost on that one. Kru-x
  5. Welcome back, Not sure how you have set it up, but docker works as if a file is missing he will add it but if you have a file with the same name he wouldn't. Have you taken the wp-config.php file out of the root folder, or are you renaming it? So, It copies the files from /var/www/html in the docker container to /var/www/html/mnt/user/appdata/your_folder (that is the root of your site), on restart or update, if a file is missing he will add it but never replace it. Odd if he do! I name my WordPress container: my_site1-wordpress and I match it with the MariaDB continer like: my_site1-MariaDB, and so on. I have one database to each WP site. I leave the DB name to default "wordpress" in each MariaDB container. I rarely connect to the DB on my server, I only fiddle with it on my development (my laptop, mac) where I have exactly same setup with docker as on my server. Don't use phpmyadmin, I use TablePlus. I if I need to connect to my MariaDB container i just connect to it with ip:port when I am on my network or by vpn when I am away. Kru-x
  6. Hi Greg, Glad to hear it is running well, a server time out is not really related to this setup and I'm not sure. Really can't help you, ask in a general WP forum, could be anything. But to give you a starting point, you can increase the time b4 it times out both in wp-config and in NginX (NPM) but I am not sure why this would be needed. Maybe ask the plugin developer. I use wkhtmltopdf to generate pdf's from HTML pages, but that is a lot off hassel and have to be built in to the WP docker container in this setup. Sorry I can't be of more help, Kru-x
  7. I think it is becouse you did the WP installer on your internal address, always creates a lot of havocs. Delete your folders and DB and start from the beginning, ones you have your domain up running then start the wp installer, Kru-x Ps. read some of the threads earlier in this forum, its a common issue that many run in to.
  8. Did you install WordPress from you domain or local? Kru-x
  9. Hi broadcastthebadger, If you have used this docker for a while it is probably that you have the old one, the old one broke and I changed it to another one, should be in said in this forum I think. Anyhow check if you have jwater7/godaddy-publicip-updater in the repository column, if not delete the image and my template and use the new one in the apps library. Hope it helps, Kru-x
  10. Don't worry, Godaddy is a domain name provider and you are paying for it! The service as a website hosting is just a side kick. It won't matter to them if you host it or another provider douse it, same for them and it is a reason they provider an api to change it.. Kru-x
  11. Sa du fick det att funka? Kru-x
  12. Wish it was that easy, 🙂 But all references to pages, post, comments etc. are saved into the Database (thats how WordPress do much of it's workings), thats why it is better to start from scratch or you have to find all those faulty references in the DB manually. As I have mentioned in previous posts, there is good programs (plugins) that will do this for you if you have a site already or is working in a development environment. Kru-x
  13. Then it is that you installed WP on your local ip address first, it's WordPress that redirects to the same ip that it was installed on. To explain what I believe is happening, during installation WP created an index.php page (the homepage) that have a an address of IP:8080 and saves that info in to the database. And even if you change the site's domain he will still redirect to domain:8080. That's why I always recommend installing from your domain first. Kru-x
  14. Sounds like you are only using one instance of a MariaDB, whilst you could, I always make a new instance of the database eg. so two containers for each site ex wp-temp & wp-temp-MariaDB. Makes it much easier to fire one site up and delete it when needed. The "issue" with the webUI, it should auto change to the port that you add in the template, if not you can change it your self in advance view and correct the WebUI: http://[IP]:[PORT:8080]/ it works the same with all containers in unraid. Kru-x
  15. You can create as many instances of WordPress as you like and it seems you have figured it out, create different containers with different ports and that should be it. Seems like you are confident enough to change user permission and wp-config.php, that is good if you are but in a basic setup you shouldn't need to, the MariaDB is accessed by WP as root user with full privileges and the installation takes care of the directions in the wp-config.php file, both if you just use the regular settings in the template. And just a side note, if you start the install from the internal ip address that is the address that is used, might be easy enough to change b4 you have done any changes or added any pages but if you work a bit on the site and then wants to get it on a domain address you are in for a ride, much of the internal working of WP is relying on the info in the DB. I always suggest to do a clean install from the domain name and work from there, if there is a site you have worked on or a development instance, move it to the clean instal of that domain by using a plugin, I always use "Duplicator Pro". Kru-x
  16. Nahhh, it will only replace a file that is missing but not overwriting. So your _.php might pop up again, not that I know what that is , never seen one myself.
  17. Hi, The root folder is the one you created when you added the container, as per below "/mnt/user/appdata/wordpress-temp/". The php.ini is not there by default but you can add one. I have had more success with .htaccess method to increase the upload limit. Kru-x
  18. HI dancue, Personally I run all my containers in Bridged mode, but I know many is using Spaceinvaders guide and are using a "proxynet" that creates a separate "internal" network. Many swear by it and I have read that it might be better for a proxy routing traffic. Having said that, only ones I have had the need to use a specific separate network and even then later on I switched back to bridge mode again and got it working. For me it is just easier to use one network as I know exactly what the different IPaddresses are on each box (i got two servers). You don't need to add a "custom location" as per your screen shots otherwise it looks right and as for your setup, I guess you installed WordPress from your internal ip address and not on your Domain name, eg remove both the WP and MariaDB's folders and add the two containers again, then check if you can see WP's installation page on your local address but without starting the install, then try to connect to it from your domain name and do the install from there. Hope it helps, Kru-x
  19. Thanks for that explanation Squid, didnt know that, Kru-x
  20. Hi ingarb, I understand what you are saying but not why ;-), It works like this, first time you add a container you download a/my template (in this case my WP), then as soon as you save it, it is saved in a template directory with all your modified settings, any subsequent use should use the modified template, do you delete the templates in between? I don't get it, Also why would you try to remove the port mapping, 80 is the port inside the container to communicate with the "outside world" and the port you add is the port you communicate with from the outside. How are you doing it otherwise? Kru-x
  21. Hi, Try to empty your browsers cache. But having said that (and read your message properly :-()) wonder. I never got the hang of letsencrypt/nginx settings , and it seems to be ask in that forum or to make life easy for you use the nginx manager as per previous posts. Then you don't have to worry about settings. Kru-x
  22. Hi Martin, No worries we are all at a stage where we wondering how to do things. I recommend reading up on docker itself, that taught me a lot in my understanding of how containers works. As for your question, you just add a new template with a different name and port, then a new instance (container) of a MariaDB is created. Make sure the folder path is different as well. Hope it helps, Kru-x
  23. No worries, Personally I can't see any benefit using the same DB to different sites more then in a multi-site setup. It is no disadvantage to run different DB's and it benefit separating each instance witch makes it easier should something go wrong. That's the main reason I have not added more variables to the template, I tried to make it as simple as possible. But having said that, each person have it's own preferences and a more confident user can add any variables himself, you can add a WORDPRESS_DB_NAME environment variable to your template. But if I can give an advice I wouldn't bother as per above, still if you insist i would use a software to connect to my database and manually manage the DB's/users/ and passwords. You can leave the WORDPRESS_DB_HOST blank for a new instance then you get presented with the WP installation on startup where you can do it all manually, but with this the user needs to understand what the container and DB is about (thus use a software), in regards to username password and db names etc. The MariDB container is setting the user to root with full privileges and the WP container is using the same to use the DB, in a production environment this should be done manually and should not be using root. Kru-x
  24. Hi hkinks, What are you trying to achieve? You say "if I have a database with different name". On a new install you can name the database to whatever you want by adding the the parameters to the DB template see https://hub.docker.com/r/linuxserver/mariadb (heading "parameters"). If the WP container can't login to the mariaDB container you are presented with the WordPress install where you can add your DB name user and PW. You could also login as root to the mariaDB with a separate DB software and create whatever DB name you like then install WP the same as a above. Remember user and privileges thought. Hope this answered your question Kru-x
  25. Please give more info, the post u r referring to I guess he had the domain name wrong.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.