So I've asked around basically everywhere (including here) but I'm going to try again because literally noone seems to want to help and I'm desperate af.
[Fri Dec 13 06:52:28.286593 2013] [:error] [pid 13101] [client 124.169.101.176:62647] WordPress database error Can't create/write to file '/var/tmp/#sql_1ff_0.MAI' (Errcode: 2) for query SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ('post_tag') ORDER BY t.name ASC LIMIT 50 made by do_accordion_sections, call_user_func, wp_nav_menu_item_taxonomy_meta_box, get_terms, referer: http://wardport.com/wordpress/wp-admin/nav-menus.php
As you can see from that^ I'm getting errcode 2, which by perror 2
means "No such file or directory". Most sources tell me that a) there is no space to work in the directory, which there is (it's actually completely empty!) or b) mysql doesn't have permission to write to said directory (/var/tmp/) which it does (desperate attempt http://puu.sh/5LeRg.png).
What the hell is wrong my server this is so frustrating
This file you can't create seems to be an AriaDB container file for a temporary table. Are you running MariaDB? If so, what version?
A temp file is not strange for this query.
Your mysqld is somehow misconfigured, or perhaps the server running it is misconfigured.
Do you have access to a simple (non-WordPress) mysql client? If so, try the same query there just to rule out the whole WordPress / PHP infrastructure as the cause of the problem. If that query fails, try a simpler one like
This one may not fail, because it doesn't need to create and then sort a temp table. The point is to get a simple test case that fails. Don't overthink this, just get yourself a simple query that fails.
Is this your own server? If so, you should be able to find an error log for your mysqld process. It is probably a file with a name ending in .err someplace in your MySQL data directory. tail it (look at the last few hundred lines) and see if mysqld is explaining in more detail what's wrong. Run your simple failing test case query and look again.
/var/tmp should be writeable by every user on the system; *nix falls over in a heap if it isn't. It should also have plenty of space on it.
FWIW, this isn't a programming question (unless you're working on the internals of the version of MySQL you're using). It's a sysadmin question.