Issue phpinfo() via browser reports a different version of PHP than wp —info or php -v reports in cli. Reason The CLI version of PHP is found via the $PATH variable, where as the browser version is being found by Apache config. To change the CLI version, I needed to update my $PATH to find […]
Category: guides
To ensure that the People Picker in SharePoint provides results from all appropriate domains, open the SharePoint Management Shell as admin on one of the application servers, then run the following command. In each command, include all domains separated by semi-colons for each URL desired. Repeat for additional URL’s if desired. I do not believe […]
PHP Upload Limit Directives php.ini
If you’re having an issue with uploading via PHP, and want to adjust the PHP configuration limits in the .ini file, check the following directives: memory_limit upload_max_filesize post_max_size
List all Services
What Version of Linux am I running?
To find out which version of Linux you are running
Clearing Space in Google
20210419: This looks promising, and it is what I’ve done today. 20190129: This process ended up having many issues, opted for gyb instead. Steps Connect to account via Thunderbird IMAP To help see progress, configure TB server delete settings to Just mark it as deleted In TB, open All Mail, Quick Filter by Attachment, Sort […]
For Development Only I’m not a security expert, but I try to be security conscious. This guide was created for the purpose of local development on my own computer, not to host any site that any other computer would connect to. There was no security precautions taken, and this should not be presumed to be […]
Search repo for package Install package Update package Update Kernel/OS Cheatsheet See also RHEL yum Cheat Sheet
IIS Redirect HTTP to HTTPS Rule
Requirements URL Rewrite rule installed in IIS Steps Select desired website in IIS Open URL Rewrite option from the Features pane Click Add Rule(s)… Select the Blank Rule template Name it something appropriate, such as HTTP to HTTPS From the Match URL section, set: Set Requested Url to Matches Pattern Set Using to Regular Expressions […]
Soundcloud RSS Feed
Structure is: http://feeds.soundcloud.com/users/soundcloud:users:<id#>/sounds.rss I was able to find the ID # of a user by pretending to Share > Embed (the user, not the channel or single track), and then looking in the URL referenced in the iframe (…//api.soundcloud.com/users/156542883…) I have some recollection that RSS feeds from SoundCloud don’t work reliably, but I also have […]