git clone https://github.com/NoiseByNorthwest/php-spx.git
cd php-spx
git checkout release/latest
phpize8.0
./configure --with-php-config=/usr/bin/php-config8.0
make
sudo make install
I'm sharing this solution because during my research all the recommended solutions would require me to have a Windows device to regenerate the certificate.
My printer was available on macOS's Printers, but when I tried to print it wouldn't work, and when I opened the printer queue a message saying that the certificate was expired was being displayed.
The printer used to work on the older macOS versions, however after the macOS 14 upgrade it stopped working.
This solution has been tested on macOS Sequoia 15.1.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Determines the current WordPress version | |
| # | |
| curl -s https://core.svn.wordpress.org/tags/ | grep "<li>" | egrep -o "[0-9]\.[0-9](\.[0-9]{1,})?" | sort | uniq -d | tail -n1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # | |
| # Copyright 2015 Tiago Hillebrandt <[email protected]> | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # |