0 Comments

How to create a WordPress theme from scratch

Instead of writing a tutorial on how to get you stated in the world of writing a WordPress theme from scratch, I will just give you a set of links to great material you can use.   Theme Development – WordPress Codex [http://codex.wordpress.org/Theme_Development] You will become familiar with the basis and structure of a theme [...]

Read more
 
0 Comments

Adding your own style sheets and javascript files to admin pages in WordPress

If you have your own theme you will be also providing a Menu page for Admin Options, and consequently you will be linking stylesheets (css documents) as well as script files (most likely you would like to use jQuery). The easiest way to accomplish this is by adding the link and script tags directly on [...]

Read more
 
0 Comments

Auditing web pages with Chrome developer tools

Chrome developer tools has a very cool feature to audit a web page and flag issues that by fixing them will provide your web page with better network utilization and performance, the usage is very simple and the results are really cool. Let’s try it out in the WordPress dashboard page, to do so we [...]

Read more
 
0 Comments

Using developer tools with JQuery

If you had to work with JQuery, you would know that identifying the elements selected by the query in order to have an insight on what is going on with your script might not be a trivial task, however you can run queries with the developer tools that Chrome offers and also you can achieve [...]

Read more
 
0 Comments

Enabling WordPress debugging mode

If you are starting with your own WordPress theme, plugin or widget, or simply you are having trouble in your site after you added the latest of them, you should know about the debug option in WordPress, it enables notifications to be printed out in your web page allowing to track subtle issues with your [...]

Read more
 
0 Comments

How to install and configure phpMyAdmin

Once you have LAMP (Linux-Apache-MySQL-PHP) configured in your server, you may want to have an easy way to manage your MySQL server easily and making use of the Web server and PHP, in that case you can install phpMyAdmin, which will allow you to manage your database server from the web browser, and it’s open [...]

Read more
 
01 Comment

Getting started with Apache-PHP-MySql on Linux (LAMP)

This post is the last one of the series of posts to get you started with a fully functional LAMP stack, LAMP stands for a software combination that allows you to build general purpose web sites, it contains Apache as the web server, MySQL server to provide data base access and PHP as the server [...]

Read more