I was having trouble uploading images, strangely enough after I fixed it I realized I forgot to take a screenshot of the error, so I tried to unfix it but it guess it’s gone for good. Anyway, according to my search terms the error read something like: “Error creating folder * (mkdir(): File exists)”. Where “*” is a wildcard for a file path which would make it harder to find results otherwise.
It showed way too many results, apparently this is a common PHP error. Prefixing my search with the word “dokuwiki” narrowed it down and soon I find half the answer I was looking for.
Apparently the media folder locks down mod_authz_host-based access with an .htaccess file. What is mod_authz_host ? It simply means “Group authorizations based on host (name or IP address)” according to the HTTP Server Project‘s Module Index. In other words, you cannot request the files directly since your request would be coming from a system—which has an IP address.
However, requests for the filesystem coming by other means, such as processes running on the server (like PHP), can still get them and present them differently to the client (the browser).
Regardless, FCKeditor/Ckgedit can bypass this by symlinking the media directory (ref/data/media — ref is my DokuWiki root) into FCKeditor/Ckgedit’s own file structure at ref/lib/plugins/ckgedit/fckeditor/userfiles. Filesystem-wise, symlinking immediately grants the symlinked location 777 permissions, and I believe they can’t be changed. (I’ve had mixed results attempting this and, in the cases I’ve been successful, the change is only recognized by some systems, not all.)
UPDATE 1
I mean… Only a day passed when I found out symlinks can indeed change ownership. Seriously!—Every time I say something I prove myself wrong the next minute. You should not believe a word written in here. You use the -h short option in both chmod and chown, BTW, the long option is --no-deference only in chown. I think chmod doesn’t have a long option for this. But why should you believe me!? 😛
UPDATE 2
Never mind. That (chmod) only seems to work in macOS. I’m testing systems, so far on Fedora 36, Red Hat Enterprise Linux 8.6, Ubuntu 20.04.5 LTS can’t be done. On macOS 10.13 and FreeBSD 13.0 can be done. chown works everywhere though. See? This is what I’m talking about; just a minute later. I didn’t test more system bc suddenly I’m blanking on their (host)names for some reason. I have at least one Debian (version), one Zorin OS, I’m not so sure about FreeBSD, usually they’re pretty uniform on their versions…
If you remove the symlink from FCKeditor/Ckgedit’s directories, then the next time you summon the UI to upload an image it automatically recreates it as a regular directory which of course it won’t have access to your existing data which means you’ll end up duplicating it. If you recreate the symlink on your own the error returns.
When FCKeditor/Ckgedit recreates its image directory as a directory, not a symlink. other was automatically added because of the namespace I was in but otherwise it’s an empty file structure.
According to the articles I read, all you have to do is copy one of the .htaccess samples from the userfiles directory mentioned earlier, .htaccess.security, into the real media directory and you’re done.
However, I did and I wasn’t.
The sample file’s content is:
<IfModule mod_authz_host>
Require all denied
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Deny from all
</IfModule>
<FilesMatch "\.(gif|jpe?g|png)$">
<IfModule mod_authz_host>
Require all granted
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Allow from all
</IfModule>
</FilesMatch>
Options -Indexes
Now, stop me if you’ve seen this before, specifically the last line.
Right?! That’s what I thought too. It’s like we’re twins. We should definitely start calling each other “bitch” and “dumb slut”. Hashtag BFFs.
So bitch…
I added on it +FollowSymLinks, I tried again et voici ci-dessous !
Now showing more stuff, it still looks emptyish because there isn’t much on the wiki.
I also augmented the file extensions allowed to be served:
<IfModule mod_authz_host>
Require all denied
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Deny from all
</IfModule>
<FilesMatch "\.(gif|jpe?g|png|svg|pdf|mov|mp4|mp3|m4a|ai|psd|aiff|tiff|pxm)$">
<IfModule mod_authz_host>
Require all granted
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Allow from all
</IfModule>
</FilesMatch>
Options -Indexes +FollowSymLinks
Getting ambiguities out of the way
The contents of ref/data/media/.htaccess is a copy of ref/lib/plugins/ckgedit/fckeditor/userfiles/.htaccess.security:
<IfModule mod_authz_host>
Require all denied
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Deny from all
</IfModule>
<FilesMatch "\.(gif|jpe?g|png|svg|pdf|mov|mp4|mp3|m4a|ai|psd|aiff|tiff|pxm)$">
<IfModule mod_authz_host>
Require all granted
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Allow from all
</IfModule>
</FilesMatch>
Options -Indexes
At this point I had gone rogue and I had edited the file directly which is advised not to do. However, I left the last line untouched.
The contents of ref/lib/plugins/ckgedit/fckeditor/userfiles/.htaccess is: → this is the important file ⤵︎
<IfModule mod_authz_host>
Require all denied
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Deny from all
</IfModule>
<FilesMatch "\.(gif|jpe?g|png|svg|pdf|mov|mp4|mp3|m4a|ai|psd|aiff|tiff|pxm)$">
<IfModule mod_authz_host>
Require all granted
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Allow from all
</IfModule>
</FilesMatch>
Options -Indexes +FollowSymLinks
If you deleted the symlink too, to recreate it, in the command line navigate to your media folder using the pushd command instead of cd.
If you deleted the symlink too, to recreate it, in the command line navigate to your media folder using the pushd command instead of cd. Why? Because it prints the last directory you were each time you change to a new one. You can copy and paste it.
Objects are closer than they appear
The last step is fixing permissions. In Debian upstream, httpd’s default user is www-data:www-data. In Fedora upstream it’s apache:apache. I don’t know what’s the user on xBSD, but just list the files in other directories of your DokuWiki install with the long format option (ls -l) and you should be able to infer it from it. Now, assuming you’re on the last directory we were (image above), run:
# replace user:group with your distributions respective values
chown -fR user:group "$(pwd)"
# you can't really change this on symlinks but it's just for housekeeping (the other files)
# '"$(pwd)"' is your current path, '-fR' includes the contents said path no Qs asked
chmod -fR 755 "$(pwd)"
I doubt this people will ever see this, but if some permalink magic is at work and it finds its way back, I’d like to thank them for getting me on the right path…literally.
Personal notes
I’ve observed that normally it’s expected for the website files to be on the web server itself. I expect to be hacked, to fuck up my server, to delete all the directories using something irreversible like rm -fR, or to do some other stupidity as I often do, thus as a safety measure my server’s files are on NFS mounts which are symlinked kinda heavily. Even if I delete things from the CLI, the backend servers are taking both constant backups and snapshots automatically of the files letting me revert from stupidity, plus you know a bitch likes to serve that chunky media which like all good dicks, has trouble fitting into my tiny disk, a mount. hashtag wink, is necessary.
Point is, It might be the reason why the guides above didn’t work, though the guides themselves use symlinks, so it could’ve been an oversight as well. IDK.
Messages from Sensei Vita’s Temple
Non-ESA ESA-vested pet (17:00 PST) or ESA-vested bondage partner (17:30 PST) videoconf frozen yogo yoga with resident Israeli-American instructor Terry Shirah York is available on Microsoft Teams again. The Azure support staff has assured us that the service will be very reliable as long as it’s not raining, Friday or Saturday.
WordPress 6.5-ish introduced a user-friendly font management UI. There is no longer need to mess with code or to submit to the bad grammar on this post. The latest WordPress also comes with the theme Twenty Twenty-Four as the default which is a little… trying. It is not, however, required to use the font management UI as Twenty Twenty-Three before it was to use Gutenberg.
As always, I recommend you to stay clear of any plugins, including Automattic/WordPress’ own. WordPress has a pretty strong foundation by itself to create just about anything, you just need a lot of patience.
If you want for visitors to have the ability to comment, use WordPress’ built-in commenting system, don’t inject third party (that connects to other domains from your site) code into your site, it’s disrespectful to your visitors; they’re visiting your site, not Disquss or Facebook or what have you. To avoid being compromised and drive off spammers, simply don’t show the comments, you’ll still receive them. Or alternatively give visitors an email address or IM URI. If you feel the need to show comments is paramount, you’re doing it for all the wrong reasons, I believe. And JSYK: SEO is not a good reason for anything.
WordPress 6 with Twenty Twenty-Three and a more mature Gutenberg (I believe renamed the “Visual Builder”, I’m not sure though) can finally create proper free form pages.
I saw the potential immediately I just I had to figure out a few things in the process. The most pressing of them were the fonts, being brand new Twenty Twenty-Three has not much written about it unless you’re a dev and you’re willing to go down to that level.
All guide sites about WordPress, seem to copy each other’s bad advice just to put out something constantly and drive those SEOs up, like all predatory web designers do. They’re quick to refer you to a plugin that would need an API thus specifically identifying you for fuck knows what and every article on the simplest things is a drawn out web hosting tutorial before it gets to the one liner related to its title.
Following guides for previous versions of WordPress and for Twenty Twenty-Two and MDN (Mozilla’s Dev site) I figured out how to do it on my own.
So here we go.
Do your creative homework
If you’re familiar making wireframes and font choices, skip this. It’s meant as newbie-to-newbie advice.
Instead of that lorem ipsum shit, find an article or old homework of yours. Something that actually makes sense and style it in a word processor to verify that the font you want to upload looks good before doing all the work.
This seems so obvious, but it’s for that very same reason you should make sure not to skip it; once you have your demo ready, select everything (titles and body and whatnot) and increase/decrease the font size together at once, on almost all apps either size or zoom with ⌘+ and ⌘- and since the command is sort of generic, it will work on everything without messing with individual styles (plus, you can always ⌘z).
Test in low DPI displays, like that 1024×768 17″ display you have gathering dust in that room nobody lives in, now you have an excuse to clean it and of course on cutting edge high DPI displays, if you don’t know where to get one of these, don’t worry, there’s one in your pocket; most smartphones are made with ridiculously high resolution displays, just put it a little farther away than you would normally do, it does not have to be perfect.
And finally, disable antialiasing:
ON macOS
Click on ⌃fnF2spacebar↓ ↓ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ ⇥ spacebar⌘q. Just kidding, sort of (it works).
Summon Spotlight (⌘spacebar) start typing “general” (in System Preferences) look for the item with the wall switch icon. Once it loads, uncheck the last checkbox “Use LCD font smoothing when available”.
On macOS newer than High Sierra, this option isn’t available anymore.
Step number next: Identify your fonts properties, specifically, the weight
Take a look at the font’s weight value. The number goes from 100 to 900, sometimes 950. It is related to the style variation of the font. For instance, my font there (link above) is a 900, which means it’s a Black-style font.
I’m in no way using the proper names for any of this, except maybe on the things I just learned. I figured staying stupid might be for the better since I could potentially relay things better using non-technical terms.I’m a dumbass for you, I mean; if that ain’t romantic… hashtag pantydropper {said out loud}
You would think Bold, is the thickest style of a font there is —I did— but it is actually Black, or in extreme cases Extra Black (the 950 weight). Here’s a table from MDN:
Weight
Common Name (meaning: it doesn’t have to be)
100
Thin, Hairline
200
Extra Light, Ultra Light
300
Light
400
Normal, Regular
500
Medium
700
Bold
800
Extra Bold, Ultra Bold
900
Black, Heavy
950
Extra Black, Ultra Black
UPDATE
After publishing publishing the article this section was later clarified. You may skip to the next title if you’re not in the mood for nonsense.
But since this site is just fancy nonsense, I’m obliged to ask: Grrl. Are you lost? Do you know your name? How many years have been since The Fierce Massacre when our ruler dictatorness supreme Beyoncé ascended to power? Do you know the name of the lab your parents ordered you from?
Then you have to know about this thing on the web that I don’t even know what its name is, but perhaps it’s for the better so if we speak on the same misinformed terms, then we’d be able to get the same misaligned point, aligned, makes sense? Probably not. The point is, designers in the code can target a certain desired look they wish for the end result and achieve it even if they don’t provide the fonts, or if your adblocker blocks CDNs (like it should) so fonts can’t be gotten from the end user. They do this by specifying a laundry list of similar popular fonts that may already exist on your system. For example, and it is the only example I know because I was interested in a variation of one of these fonts a while back; the Arial font is a well-recognized font that you can find everywhere right?
Well, not true. This came as a shocker to me too. Arial is a licensed font, so a very similar metrically matching open source font has been developed to replace it, Liberation Sans.
The one I liked was Liberation Serif Italic, BTW, the only Serif font for which for the first time I wish I wrote meaningful enough shit to warrant me using it, plus y’know… you can’t just use italic fonts everywhere, you lose an emphasizing style and underlining is, from what I gather, not used anymore.
Back to the code, a list of font families is specified and according to those the client system renders the page the closest to what was intended.
Now, remember about the styles thing? Well, when a font lets you choose from a range of styles, it is not actually one font but rather a collection of similarly based fonts. The naming structure gets more confusing and complex as a single fonts can contain both binary and compiled elements in it simultaneously, what elements? I don’t know. But there’s Postscript involved, which I think is some kind of ancient printer code that may of may not be used in SVG files as well. The part of the font with it needs its own name It needs its own name. Checkout this screenshot from this ancient font design app:
No, the image isn’t bad quality, the app really looks that horribly pixelated, it runs in a remote but containerized sort of RDS server, I don’t know. It’s very glitchy, though. It’s supposed to be very expensive, I can’t fathom why it would be.
So if I wanted a site to show print in Arial Black (AKA Arial in 900), not regular, not condensed nor rounded, not bold, etc. I specify a sans serif, remember sans is French for without. Then if I happen to have a visitor using Fedora, an Linux distribution known to actively refuse adding proprietary licensed anything to the system (and probably my favorite Linux distro), then it goes, “well, Arial isn’t available, but I have Liberation Sans in a close enough weight”.
I did mention the Arial/Liberation was the only example I knew. I didn’t mention I knew it well.
UPDATE
Though, I came clean about knowing shit from the beginning, just this once I didn’t feel like potentially spreading misinformation. I’ve seen how that may lead to imbeciles in the most powerful nations on earth to actually believe shit from a sore loser wannabe dictator. I did a little (still not much) research:
1, 2, step ♫: quick review of Collections and Families: What they actually mean
To make this not so confusing I’m going to color code type designterms are in magenta and CSS terms are in this weird color (0x5d00ff).
Multiple styles of the same font may form a collection. This is a TrueTypeterm but it applies to non-TrueType fonts as well. Below is an example of the dropdown shown when an app show all styles of a font under a single name. The font in the picture is New York, a standard macOS font:
A collection displayed as a single font
This could be just several individual fonts recognized with the same base name and different weight or slant (italics) by your app or could be the same thing in a single file, in the case of TrueType fonts. When a font is available in different styles i.e. it has various collections such as sans-serif, serif, monospaced… then it becomes a font family. Liberation is again a great example, as it comes in all of those styles just mentioned.
Just for the sake of completeness, the italics form of a font, is a style, not a weight, thus by these definitions, I think, it’s a separate collection of a font family (that would mean the drop down above isn’t showing a single collection but actually two, therefore: a family), but I couldn’t find a non-ambiguous answer to this or or one that wouldn’t contradict itself later in the article or whatever it was.
In summation:
A font is a set of glyphs in a given weight and style
A font collection are several fonts in the same style with different weights, they might come in a single file or split in several
A font family are several related font collections
So that’s that. Then comes this thing that web designer do in code to allow them to target certain second-best look when the ideal outcome fails. They do this by specifying multiple very generic/popular, very similar fonts that may already exist on your system, these are called font families and it actually refers to a CSS property name.
In CSS, a font family is sort of the opposite meaning use in type design. Remember, in type design a font family are different styles of a font, sort of like a brand, whereas CSS font family refers to super generic fonts so similar that they’re interchangeable with each other without being too noticeable, ideally, not noticeable at all. It’s more akin to a font collection, which makes it unsurprising that you can enter font collection names in the font family property.
A font family bears the same name for several styles and weights a font has, in CSS this is also vastly different, as a font family would be something like sans-serif. A font collection‘s name is a validfont family value.
“What does it have to do with WordPress?“
Honestly, I’d hope nothing. But WordPress appears to use fontFamily as a mashup of both families and collections.
In the drop down you get using the editor, selecting a font name zeroes in on in some type of super collection, further refined by the following drop down that lets you choose among weights and style combinations (regular, bold, italic, bold italic…), these correlate to the files that come with Twenty Twenty-Three, but it also provides an alternative if they can’t be delivered to the client (the browser).
With this information you can know make educated guesses of how to add new fonts in the WordPress’ Twenty Twenty-Three code. You’ll also need to be able to read a little CSS and JSON. You don’t have to know what it means, only to identify where things begin and end. You’ll see what I mean next.
Step 5: get some tools
(You should have them already as part of deploying WordPress, so pretty much a non-step.)
This files can be edited directly on WordPress: don’t.
Get an IDE if you don’t have one already
If you don’t know what this is; it’s just a glorified basic (plain) text editor (it’s not a word processor) that recognizes multiple computer languages and applies color according to each language’s syntax. They do other programmy things as well but we’re just interested in the colors right now. Syntax highlighting (the name of it) aids devs reading thought endless lines of code without losing their sanity. Here are some examples on AlternativeTo🆕↗️.
Get a file transfer client/manager
Only if you don’t have network-based filesystem access to your WordPress installation.
Sure, you can always use file transfer protocols e.g. rsync your files edit them and push them back and forth, or even FTP them natively assisted by your OS but, unlike network-based filesystem protocols (WebDAVS/NFS/SMB/SSHFS) which don’t require first transferring the file* to edit them (i.e. they can be edited in place). A decent file transfer manager simulates this when it uses non-filesystem protocols by downloading a copy and watching it while it remains open syncing immediately back the changes you make. You just need to set the editor you’d like to open them with in the app’s preferences and instead of transferring the remote file, you select the edit option.
*: technically they do, at least part of it, but it’s transparent to the user
Doing this let’s you bypass making backups and all that, even after you save the file (depends on the editor you’re using) you just have to ⌘z or ⌃z a few times and save again. As long as you keep the file open, you can keep undoing. If the connection with the server were to break, you can simply Save As… the file locally (or copy all contents ⌘a ⌘c / ⌃a ⌃c ) and then push (or paste ⌘a ⌘v / ⌃a ⌃v) it back.
ForkLift and Cyberduck are popular options. If you’re using a Mac, avoid Transmit, it’s overhyped and too expensive. Avoid subscriptions, they don’t provide service and updates are not valid reason to get one, if anything they serve as means to control remotely your software.
FileZilla, though it works, it asks you every time you save and switch back to it if you want to upload your changes; it gets very annoying very fast. And to be clear most of these apps don’t wait for you to switch back to them, they sync immediately no questions asked; only seen FileZilla behave like this.
Step 5 again: resource transfer
Drop your font files here:
You only need the WOFF2 file, the others are just for your own reference.
Next-quesigue: light theme hacking
Then edit the theme.json file located here:
Scroll down the file until you start identifying font names, then stop, and
Depending on your IDE whenever you put the cursor in an open { or [ or ( your IDE will highlight the matching closing character.
You need to choose the widest-encompassing set of characters around a font family and leave the cursor in the line after the selection so the new line is copied as well, this must be from in-between fonts, not one from the end or not one from the beginning.
Then copy and paste it twice, the first paste will only overwrite the selection with the same thing, so it will look like nothing happened except that nothing will be selected anymore.
Then the second (and consecutive) paste(s) will duplicate (and expand) the former selection.
Leave a new blank line before and after the duplicated content as a guide so you don’t forget where you’re supposed to be working. You can leave them during testing as JSON ignores new lines, you’ll remove them at the end. However JSON is pretty particular over commas, and being meant for machine-to-machine code, if the code is not perfect it won’t work.
Here’s how it looks:
The left panel is the filesystem tree, as usual. The right panel is the CSS file from Transfonter. The middle panel is theme.json.
Above, to duplicate that selection, I’d have to copy from line 155 to the first position of line 171. Unfortunately the cursor doesn’t show but it is on line 171. The reason of avoiding choosing from the beginning or the end, is that it is easier to make selections because you have more repetitions to learn from.
From observation, it can be seen that the keys that define a fontFace (think of “typeface” which would be the individual element of a collection, or fontFamily) are encompassed in {…} and unless it’s the last one, it is followed by a comma: {…},. JSON is a key-value language, all keys and values go double-quoted ("), it appears, maybe single-quoted ('), I don’t need to find out.
After the keys, a colon (:) follows, I’m not sure if white space is optional or not, if it’s asymmetric or not, the quotes seem to indicate it’s all optional, again, I don’t need to find out just know, I just want my fonts working. Probably you feel the same. The things grouped in square brackets, ([…]) seem to be some type of array because they aren’t paired, for instance, above reads (annotated character pairs):
In other words, it’s a single {…} from [‘s and ]‘s perspective without a pair. If I’m correct I might be closer to specifying the rest of the font file types the font was exported in. The fact that I don’t know what is the syntax is the reason I said earlier WordPress only seems to take WOFF2 files. Normally you specify several for browser compatibility.
Here’s the same screenshot defaced:
Don’t worry, she’s kinky. She enjoyed it.
Almost there.
Last step: design
The last step isn’t to “call” or “invoke” the theme in code like previous guides suggest. (Thankfully.)
You just need to modify your template parts or the template if it doesn’t have any parts to use the new typography.
Because my font only has one variation in it, it doesn’t matter if Black is selected or not it will display what’s available. I have not done further testing, though.