<script type=”text/javascript”> tinyMCE.init({ mode : “textareas”, setup : function(ed) { // set the editor font size ed.onInit.add(function(ed) { ed.getBody().style.fontSize = ’14px’; }); }, }); </script>
Author Archives: Prosoxi.com Webmaster
Replace PHP short open tags with full form in all ‘.php’ files using one command
Nowdays, In the latest versions of web servers, The PHP short open tags are diabled by default, Although we can able to enable it in the ‘php.ini’ file, Some of the shared hosting servers may be diabled that systax and you have to migrate your code to the standard syntax…
How do I use Wget to download all Images into a single Folder
wget -nd -r -l 2 -A jpg,jpeg,png,gif http://example.com
Download whole page from terminal
You can install it with brew install wget or sudo port install wget.
Downloading Folders to my Local via SSH
#scp -r user@host:/path/to/folder/ local-copy-of-folder If you have SSH keys set up, you can tab-complete remote files/folders.
How to pass password to scp command
Use sshpass: sshpass -p “password” scp -r user@example.com:/some/remote/path /some/local/path