Author:
erics , October 11th, 2020
Format the new USB flash drive as Mac OS Extended (Journaled) and label it “MyVolume” Click the Mojave Download Link: https://itunes.apple.com/us/app/macos-mojave/id1398502828?ls=1&mt=12 Download the installer package from the App store – it will land in the main /Applications folder. Open Terminal and run:
sudo / Applications / Install \ macOS \ Mojave . app / Contents / Resources / createinstallmedia -- volume / Volumes / MyVolume
Full article at Apple Support “How to create a bootable installer for […]
Categories: How-To's , Technology Tags: apple , boot , Bootable , Catalina , createinstallmedia , Download , Drive , Flash , High Sierra , Install , Mac , MacOS , macosx , Mojave , Reinstall , Terminal , USB
| No comments
Author:
erics , January 24th, 2020
If you are unable to update a plugin via the WP admin console, then you can do the update manually. Download the zip file to your local hard drive and extract it. Then, from the command line, do the test run first:
cd { extracted_plugin_directory }
rsync - av -- dry - run -- delete . . / { extracted_plugin_directory } / theHost : / volumes / www / theSite / wordpress / wp - content / plugins / { extracted_plugin_directory } /
*Make sure to use the trailing slashes with rsync for proper operation […]
Categories: How-To's , Technology Tags: cli , Download , Error , Extract , Fail , howto , Manual , Plugin , rsync , Terminal , tips , update , WordPress , zip
| No comments
Author:
erics , December 16th, 2012
Here is a link to the original article by the Filament Group. I posted the code below just so I have it handy…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
jQuery . download = function ( url , data , method ) {
//url and data options required
if ( url && data ) {
//data can be string of parameters or array/object
data = typeof data == 'string' ? data : jQuery . param ( data ) ;
//split params into form inputs
var inputs = '' ;
jQuery . each ( data . split ( '&' ) , function ( ) {
var pair = this . split ( '=' ) ;
inputs += '<input type="hidden" name="' + pair [ 0 ] + '" value="' + pair [ 1 ] + '" />' ;
} ) ;
//send request
jQuery ( '<form action="' + url + '" method="' + ( method || 'post' ) + '">' + inputs + '</form>' )
. appendTo ( 'body' ) . submit ( ) . remove ( ) ;
} ;
} ;
</script>
if ( jQuery ( '#Checkbox-download' ) . is ( ':checked' ) ) {
jQuery . download ( '/yourPath/index.php' , 'abc=123' ) ;
return false ;
}
Categories: How-To's , Technology Tags: Download , howto , JQuery , tips
| No comments
Author:
erics , February 25th, 2012
wget -m ftp://login:password@yourServer/the/path/
Categories: How-To's , Technology Tags: Copy , Download , FTP , howto , Mirror , Sync , tips , wget
| No comments