Struggling to come to terms with handling the live preview for non-standard updates.
I’ve been studying the Twenty Fifteen theme to see how changing the color scheme will change the individual theme colors and am feeling like a dunce.
Struggling to come to terms with handling the live preview for non-standard updates.
I’ve been studying the Twenty Fifteen theme to see how changing the color scheme will change the individual theme colors and am feeling like a dunce.
When you throw away code and start from scratch, you are throwing away all that knowledge. All those collected bug fixes. Years of programming work.
Git, you’re making me feel like a dunce.
No love,
Vix
P.S. Give me time. I’ll come around
If you using XAMPP as a local web server for testing out themes and plugins then you might find this useful if you want to enable pretty permalinks for WordPress. *Note: I have xampp installed on a Windows XP setup.
In order for WordPress to manipulate URLs, Mod Rewrite must be turn on. To load the module open up Apache’s main configuration file: httpd.conf.
It is usually found in c:\xampp\apache\conf\.
Look for the following line and remove the “#” at the beginning of the line.
#LoadModule rewrite_module modules/mod_rewrite.so
Now it’s time to create your site on your local machine because let’s face it, it’s nicer to look at http://garinungkadoldev.com than http://localhost/gkl_280 🙂
The VirtualHost config file, httpd-vhosts.conf is usually located at c:\xampp\apache\conf\extra
NameVirtualHost garinungkadoldev.com
<VirtualHost garinungkadoldev.com>
DocumentRoot c:\xampp\htdocs\gkl_280
</VirtualHost>
So what does this all mean?
NameVirtualHost – tells the Apache HTTP Server which domain name (garinungkadoldev.com) to use.
<VirtualHost> – container where directives intended for garinungkadoldev.com are placed.
DocumentRoot – absolute path to where web files are located. In this example my WordPress installation is inside c:\xampp\htdocs\gkl_280
Save your files and restart XAMPP!
Before enabling permalinks in WordPress you need to tell Windows to recognize your domain name as belonging to localhost.
In Windows XP the HOSTS file is found at C:\WINDOWS\system32\drivers\etc\. Open the “host” file inside a text editor and add this:
127.0.0.1 garinungkadoldev.com