As a web developer I run a local instance of WordPress on my machine, and out of the box you can NOT take advantage of WordPress’ auto upgrade/update feature. If you open a terminal and update the file permissions this will resolve that issue. $ cd //Sites/ $ sudo chown -R _www wordpress $ sudo [...]
include vs. include_once vs. require vs. require_once
include (‘sponsor_links.php’); If the file sponsor_links is present in the current folder, it will be included ( way may want it to appear both – at the top and at the bottom). include_once (‘statistics.php’); If the file statistics.php is present, it means we want statistics for the page. Otherwise, we don’t want statistics. Deleting statistics.php [...]
Code, examples, PHP, Web DevelopmentTop 10 SEO checklist
Proper Title Tags Well-constructed title tags contain the main keyword for the page, followed by a brief description of the page content. It will be less than 65 characters and avoid using stop words such as: a, if, the, then, and, an, to, etc. Your title tag should also be limited to the use of [...]
SEO, Web DevelopmentCSS Image Rollover
The CSS method uses what is known as an image sprite to load all the rollover effects as a single image and we then use CSS to do the transition. To create the image sprite just create a single image containing all of the individual transitions. Once you have your image sprite you just need [...]
CSS, How to..., HTML, Web DevelopmentIE Specific Stylesheets
Internet Explorer has it’s problems with CSS (OK, it’s pretty much awful) but if you are worth your salt as a CSS coder, you should be able to deal with it. I am of the opinion that you can handle anything IE can throw at you without a ton of hacks and without having alternate [...]
CSS, HTML, Internet Explorer, Web DevelopmentInstalling Eclipse with the Palm WebOSdev SDK
Installing Eclipse and the Plug-Ins This section describes how to install and update Eclipse. Note: If you are using an earlier version of Eclipse, you must upgrade to Eclipse 3.4 to get the new plug-ins for Palm webOS development. To install Eclipse Download Eclipse 3.4.2, also called Ganymede. Mac: Download Eclipse 3.4.2 and extract into [...]
Eclipse, How to..., Linux, Palm, Web Dev, Web Development, WebOSColdFusion Try and Catch
In order for your code to directly handle an exception, the tags in question must appear within a cftry block. It is a good idea to enclose an entire application page in a cftry block. You then follow the cftry block with cfcatch blocks, which respond to potential errors. When an exception occurs within the [...]
Code, ColdFusion, How to..., Web Dev, Web Development- 1
- 2
