WHAT'S NEW?
Loading...
Showing posts with label Web Development. Show all posts
Showing posts with label Web Development. Show all posts


Bloggers and Developers a always prefer to choose the best wordpress template to use in their wordpress websites. And for them to do that, they gonna pay it to have a good premium wordpress template, or just copy the style and create an imitation out from it, which is a pain in the ass. So I ask myself, how to hack those premium wordpress template  from others website? Is it really possible to hack a premium wordpress template? So for me to answer those questions I research it and look for the answer.

As I research it in the internet. I found a solution on how to get a free premium wordpress template using a software. This software will copy all the files from the root directory. As I tested it, Im happy with the result. Because it really works, and totally copy the entire wordpress template and save it to my local storage.

I know this hacking stuff is unethical and must not be share. But I'm just happy that I learn it from my effort. To give you a clue about software. it starts with HTTP. Cheers! :)



This tutorial will teach you how to simulate live server into your own local PC using Xampp.

First:

Go to your "Window/System32/driver/etc" Folder, and look for the "host" file. Edit the file and add this ("127.0.0.1   mySite") in the bottom on the line, then save.

Second:

Go to your "xampp/apache/conf/extra" and look for this file "httpd-vhosts.conf", After locating file,
uncomment the "NameVirtualHost *:80", And then add the following at the bottom.


    DocumentRoot "C:/xampp/htdocs/calcdim"
    ServerName calcdim
    ServerAlias calcdim
 
    Order allow,deny
    Allow from all
    AllowOverride all

Third:

Go to "Xamp/Apache/Conf" and look for "httpd.conf" file.Find the following:

LoadModule vhost_alias_module modules/mod_vhost_alias.so
Include "conf/extra/httpd-userdir.conf"

if commented, please uncomment it by removing the "#" character.

Fourth:

Create a folder named mySite inside your "xamp/htdocs". After creating the folder, create index.html to test if it is really working.

Fifth:

Restart your apache to opening xampp control panel.

Last:

After restarting the apache, type mySite in your browser to text where its working.

So, these the 6 easy steps on how to create a real server in your own local PC. This is very useful to avoid incompatibilities when the code is uploaded to the server. Thank you.