How to Properly Clone a Windows 7 System Partition with Clonezilla « RandomScrawls. After reading an article about hard disk cloning with Clonezilla on Lifehacker, I decided to take care of my laptop’s dire need of free space by buying a new, larger internal hard disk – instead of buying an external one – to replace its current one.
I figure I can shave about IDR 150,000 in the process while learning one or two tricks on hard disk cloning – an area I’ve never touch in my entire life before. Little that I know that the experience was anything but smooth. The fact that the article described a different condition with the one I was facing hit me hard. You see, I’m trying to replace a smaller (160 GB) hard disk with two partitions (system and data) with a larger (500 GB) hard disk (which I was intending to be partitioned into two as well). Apparently this complicates matters quite a bit. Before we get started, here are the things you’ll need and should prepare beforehand. Prepare your Clonezilla-on-a-stick. That’s it. Like this: Like Loading... Apache: Redirect http to https Apache secure connection – force HTTPS Connections. Let us say you have webmail sub-domain called and you would like to redirect it to https secure connection i.e.
This will help you protect user privacy and sensitive information such as username and password remotely. So how do you configure your Apache web server so that you prevent your web sites from being accessed without encryption? Redirect http to https Apache Configuration First make sure Apache is configured for HTTPS connection and necessary SSL certificates are installed. No non-ssl access i.e. only accept https connections Now open httpd.conf or .htaccess file (mod_rewrite not required): # vi httpd.conf Append following line : Redirect permanent / Any request made to will goto Save and close the file. This is easiest way to ensure that your normal user never use plain text HTTP protocol to send data. How to redirect browser to https (ssl) in php. Advertisement Most of the e-commerce website uses payment gateway for online payment.
And, those sites uses SSL (secure socket layer) connection to transfer data to and from the payment gateway. In the common scenario, most of the sites uses “http” protocol and you can see “http” in the browser’s address bar. But in the above scenario,we need to redirect the browser to “https” which means that “Hypertext Transfer Protocol over Secure Socket Layer”. Ok let’s see a real example, type “ in browser after a while the “http” gets converted to “https” in address bar, which means this site is transferring the data over SSL protocal. How to redirect the browser to https when site is using http protocal in PHP? First of all, you should know that SSL must be installed in the server. Function to redirect the browser to “https” in PHP Redirecting whole website to “https” using .htaccess You can call the above function in each and every page to redirect the browser to “https”. Popularity: 14% [?]