-
Posts
31 -
Joined
-
Last visited
-
Days Won
1
Everything posted by lia
-
Understood, thank you for the helpful answer!
-
Hi, I'm trying to figure out how disk space usage is calculated. I have four domains on my account: The domain with the most space, lia.helioho.st, is mostly an empty directory. I have installed/uploaded items to salt.wiki.gd and telenove.la but I'm not sure how it's getting up to 668 MB. Does the main domain list disk space used by all sites? If so, how come all the sites don't add up to 668 MB together? Thanks for all your help, I'm still learning a lot about web servers.
-
Thank you!
-
I ended up reinstalling with a new database and the issue is solved. I'm just missing the APCu PHP extension for PHP version 8.3.28 on the Morty server, if that could be installed. Thanks!
-
I don't know that proc_open() is the exact issue. This started happening after a failed import of Wikipedia templates and modules. The modules use Lua. Is it possible the database broke when the import could not complete?
-
It was working on Tommy so I think it is a bug.
-
When I attempt to create a new page in the wiki, I'm receiving database errors. It may have something to do with the semi colon in the page title, since it's not occurring when I make a page with only letters in the title. I've attached screenshots of the two errors I've encountered.
-
The database is named lia_saltwiki.
-
Hello, Sorry to request this again but it seems unavailable since I switched servers. I would like to request the APCu PHP extension for PHP version 8.3.28 on the Morty server. I am also getting a database error on my wiki that seems to be caused by recent updates. I see there is a backup of the database created today before those changes were made, but I'm not able to restore it myself (the button is not clickable). Is it possible to have the database restored to the backup? Thank you!
-
No, the issue seems to have resolved on its own. Thank you!
-
Thank you, that's helpful to know for the future!
-
Hello, I am getting a 403 Forbidden error when viewing user pages on my wiki, ex. https://salt.wiki.gd/User:Lia Having searched the issue, it seems to be that the page is flagged by Apache's mod_security. Can this be fixed? Thank you
-
Sorry, I uploaded a new index.html and it does load, but I get a 404 error if I remove it, instead of the directory. I will keep troubleshooting on my end as it looks like the domain is pointed correctly. My apologies for bugging!
-
Hello, I am getting a 404 error when visiting my site at salt.wiki.gd. I have created DNS A & AAAA records pointing to the IPv4 and IPv6 addresses, respectively. I confirmed the records are working at dnschecker.org. I'm not sure how else to identify the issue. Thank you
-
Thank you for your help!
-
Yes. Is this the wrong way to do that?
-
My apologies, I realize I did not provide sufficient details. The Short URL builder asks for the following credentials to generate the code for nginx.conf: fastcgi_pass fastcgi_params This is the nginx.conf code it would generate: server { # [...] # Location for the wiki's root location /saltwiki/ { try_files $uri $uri/ @mediawiki; # Do this inside of a location so it can be negated location ~ \.php$ { try_files $uri $uri/ =404; # Don't let php execute non-existent php files include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; } } location /saltwiki/images { # Separate location for images/ so .php execution won't apply location ~ ^/saltwiki/images/thumb/(archive/)?[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ { # Thumbnail handler for MediaWiki # This location only matches on a thumbnail's url # If the file does not exist we use @thumb to run the thumb.php script try_files $uri $uri/ @thumb; } } location /saltwiki/images/deleted { # Deny access to deleted images folder deny all; } # Deny access to folders MediaWiki has a .htaccess deny in location /saltwiki/cache { deny all; } location /saltwiki/languages { deny all; } location /saltwiki/maintenance { deny all; } location /saltwiki/serialized { deny all; } # Just in case, hide .svn and .git too location ~ /.(svn|git)(/|$) { deny all; } # Hide any .htaccess files location ~ /.ht { deny all; } # Uncomment the following code if you wish to hide the installer/updater ## Deny access to the installer #location /saltwiki/mw-config { deny all; } # Handling for the article path location @mediawiki { include /etc/nginx/fastcgi_params; # article path should always be passed to index.php fastcgi_param SCRIPT_FILENAME $document_root/saltwiki/index.php; fastcgi_pass 127.0.0.1:9000; } # Thumbnail 404 handler, only called by try_files when a thumbnail does not exist location @thumb { # Do a rewrite here so that thumb.php gets the correct arguments rewrite ^/saltwiki/images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ /saltwiki/thumb.php?f=$1&width=$2; rewrite ^/saltwiki/images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ /saltwiki/thumb.php?f=$1&width=$2&archived=1; # Run the thumb.php script include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root/saltwiki/thumb.php; fastcgi_pass 127.0.0.1:9000; } # [...] }
-
Hello, My username is lia. I would like to point the domain salt.wiki.gd to my site salt.helioho.st as a parked/alias domain. Thank you
-
Please disregard the last question, I have done some research and realized this would be a parked/alias request.
-
Hello, My username is lia. I would like to add domain telenove.la to my account. Thank you!
-
Hello, I have installed MediaWiki at my website: https://salt.helioho.st/saltwiki/ I would like to point another subdomain (salt.wiki.gd) to this wiki and have the Short URL work as salt.wiki.gd/Article_Path MediaWiki recommends using this tool to set up Short URLs but it requires changing the nginx.conf file, which I have gathered requires root access. Is it possible to have this changed by root admins? Also, to point salt.wiki.gd to my wiki, do I need to request it to be added as a domain? Thank you
-
Thank you very much!
-
Never mind, I found that answer in the wiki.
-
Hello, I'm curious what is the maximum amount of storage space on the Morty server? How is storage space added to a plan? This seems unclear on the Morty information page. Thank you
