Archive for the ‘General’ Category
Blogging With WordPress
Intro to WordPress
WordPress is one of the many options available to bloggers who are looking for a free online software which makes it incredibly easy to publish their own blog. This software is easy to use, provides a variety of templates and offer excellent support for new and experienced bloggers alike. Again this is just one of the options for starting a blog as there are many options available to bloggers and other blogging programs may offer slightly different features but many bloggers are quite pleased with WordPress. This article will offer some useful information for those who are interested in starting a blog with WordPress such as: reasons to choose WordPress, tips on starting a blog and information about the support offered by WordPress. Based on this information as well as their own research you as an individual can decide whether WordPress is right for you or whether you should seek out a different blog network.
Reasons for choosing WordPress
There are many great reasons to choose WordPress to start a blog. Some of these reasons include a great variety of templates, the ability to categorize and tag posts easily, features such as spell check, previews and autosave, the ability to post text, audio files and video files, a variety of privacy options and the ability to track statistical data related to the blog in addition to other great features. WordPress also offers a vast amount of third-party plug-ins which can add additional functionalities. Some of these features may be more important to some bloggers than others so deciding whether or not WordPress is right for you will largely be a matter of personal preference. For example bloggers with little or no programming experience may enjoy the myriad of templates available on WordPress while bloggers who are concerned about privacy issues may be more interested in the privacy options available through WordPress. Carefully investigating these features will help you determine if you should start a blog with WordPress or look elsewhere to fulfill your blogging needs.
Starting a Blog with WordPress
This is a very simple process, I guarantee it. If you opt to start a blog with WordPress you will certainly not be disappointed by the amount of time it takes to start a blog. A blogger can literally start a blog with WordPress within minutes. This is tremendously important to bloggers who are eager to get started and do not want to deal with a long process to start a blog. The only requirements for starting a blog are a valid email address and a username. You, the blogger enter this information into the signup page and receive a password almost instantly. Next the you simply have to check your email, follow the activation link provided and use the password provided and the process is complete. You can start blogging immediately.
Support Offered by WordPress
For many first time bloggers the type of support offered is very important. This is because first time bloggers may have quite a few questions about the process of starting a basic blog and once they establish a basic blog they may have additional questions about using advanced features and customizing the blog. WordPress offers a great deal of support for bloggers of all skill levels. The support offered by WordPress includes the ability to contact the support staff as well as the ability to receive support from other members through online forums.
Increase your Memory Limit via .htaccess or php.ini
This seems to be a very popular topic and some of the directions out on the web are not very clear as to how to accomplish this. As it is something I myself have had to revisit lately I thought I would share my collected info with you.
First off, there are two different ways to increase the memory limit on a hosting account (if the host permits it.) You could either change it in the .htaccess file or the php.ini file. I will be covering both, so if one method doesn’t work for you please try the other.
The servers php.ini file is normally located in unreachable location (unless you are on a VPS or virtual private server), which means that only the hosting company would be able to edit it. There is however a catch, you can, in most circumstances, create one in your root directory and it will override the servers. To do so follow the steps below. I will be covering cPanel as it is what I and most others on shared or reseller hosting are using.
1.) Login to cPanel. If you don’t know how to do this I will create another article for that specific purpose.
2.) Scroll down until you see the “File Manager” and click to select it.
3.) Another window will pop-up. Select “Web Root” and check the box that says “Show Hidden Files“, it should be the first check box.
4.) Once in the file manager window, in the upper left hand corner click on “New File.” Enter the name “php.ini” without the quotes. Then click Create New File to save it.
5.) Click on your file in the file list to select it. Then click Code Editor to open it in the web editor. In the pop-up window just click Edit.
Here is where we will enter the code to override the server configuration. Again this will only work if your web host allows it.
The code is:
memory_limit = 8M
Also be sure to replace the number “8″ with how many megabytes of memory you need. Also be warned that some host will not allow more than a certain amount of memory to be used by a single user so check with your host first to avoid any confrontation.
(Note: If the above works for you, you do not need to edit the .htaccess file. You will only need to edit one or the other. Do not edit both!)
Now for the .htaccess file:
Follow the above steps 1-4 only this time name the file to be created .htaccess instead of php.ini.
Then add this line of code and replace the “16″ with the amount of memory in megabytes you need.
php_value memory_limit 16M
(Note: After editing either the .htaccess or php.ini files click the Save Changes button in the upper right-hand corner.)
That should be it! Easy as pie. If this helped you or even confused you in any way please post a comment so that I may try to help solve the issue. Thanks.
Most Useful Firefox Plugins (Web Development)
MeasureIt 0.3.9
Draw out a ruler to get the pixel width and height of any elements on a webpage.
Support:
Support for this add-on is provided by the developer at http://www.kevinfreitas.net/extensions/
Comments:
I, as a web developer, have found this to be very useful. I have many a time been stuck in a situation where a client likes the size of something on another website, and until this add-on it was very difficult to judge what the dimensions where. I would recommend this to novice and advanced users because of its ease of use, and scale of usefulness.
Web Developer 1.1.8
by chrispederick

The Web Developer extension adds a menu and a toolbar with various web developer tools.
Support:
Support for this add-on is provided by the developer at http://chrispederick.com/work/web-developer/help/
Comments:
Ever needed to know what CSS styles were being applied where on a website? Or maybe just wanted to understand more about the layout? Then this is the add-on for you. It allows for the display of numerous important information about a website. Including: Cookies, CSS, Forms, Images, Misc. Information, Outline, Source Code, and many other options. Though this is a very useful tool, I would not recommend it for anyone below a moderate understanding of web design as it does have a learning curve.
Turn register_globals on for your website
1.) This is actually very simple. Login to the backend for your website and look in the root directory for a php.ini file if you use PHP4 or if you are using PHP5 look for a php5.ini file.
2.) Open it either in you website file editor or download it and open it with notepad.
3.) Look for a line similar to this:
register_globals = on
4.) If you can’t find that line add it.
5.) Enjoy!
