Richard Castera

Application Developer/Designer
  • Home
  • About
  • Projects

Archive for May, 2009

Web Resources | 1 Comment | May 29, 2009

Google Wave – A New Communication Platform.

google_wave

Google Wave is a new model for communication and collaboration on the web, coming later this year. In Google Wave, users create and invite other people to “waves”. Everyone on a wave can use richly formatted text, photos, gadgets, and even feeds from other sources on the web. They can insert a reply or edit the wave directly. It’s concurrent rich-text editing, where you see what other users on the wave are typing in real-time. That means Google Wave is just as well suited for quick messages as for persistent content – it allows for both collaboration and communication. You can also use “playback” to rewind the wave to see how it evolved.

PHP, Web Resources, Wordpress | 8 Comments | May 27, 2009

Migrate WordPress to a new Server or Directory

If you decide to change the URL or link location of your WordPress Blog due to a new domain or moving to a sub-directory, here are some simple steps that should be done to ensure proper migration without breaking links.

To update WordPress options with the new blog location, use the following SQL command:

UPDATE wp_options SET option_value = replace(option_value, 'http://www.olddomain.com', 'http://www.newdomain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://www.olddomain.com', 'http://www.newdomain.com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.olddomain.com', 'http://www.newdomain.com');
Magento, PHP | No Comments | May 26, 2009

Magento – Show blocks that are not loaded in the current Object or Template

Customizing Magento could be difficult. Here is an easy way to display any block in any template file that cannot be loaded with $this->getChildHtml().

<?php echo $this->getLayout()->getBlock('top.search')->toHtml() ?>
Magento, PHP, Web Resources | No Comments | May 25, 2009

Magento – Find which Class is loaded in the current Template

If you’ve just started working with Magento, you’ll find that figuring out which class is loaded in the current template file very difficult. Here’s a little snippet that helps you figure it out. Just place the following into any .phtml template files:

<?php
    print_r(get_class_methods(get_class($this)));
?>
or
<?php
    print_r($this->debug());
?>
or
<?php
    echo Zend_Debug::dump($this);
?>
My Thoughts, Web Resources | No Comments | May 24, 2009

Apple iPhone Apps for Designers & Developers

iphoneI purchased an iPhone about 2 months ago and I must say I love it. The only gripe I would say I have with this beautiful machine would be the Multi-media messages or lack thereof. This is something that Apple and AT&T really need to address. For a phone with all of this great technology to lack a feature that most basic phones come standard with is horrible. Anyway, (I needed to vent) here are a list of some really cool Apps that I’ve come across and use:

  • FTP On The Go – Allows you to Download, Edit, and Upload web pages or any other text files on your FTP servers.
  • List of Cheat Sheets – Cheatsheets for Regular Expressions, MySQL, World of Warcraft, CSS, jQuery, JavaScript, Google, PHP and HTML
  • OmniFocus – OmniFocus Keeps track of actions by project, place, person, or date. Bring up a shopping list, agenda items to discuss at work, tasks for home, and any other lists you need.
  • WordPress – The official WordPress iPhone app, for writing drafts and publishing on-the-go.
  • Ego – A delicious looking app for tracking Google Analytics, Twitter followers, RSS subscribers and Google Analytics.
  • Air Sharing – Mount your iPhone or iPod touch as a wireless drive on any computer, drag-and-drop files, and view them on your device.
  • TwitterFon – is a simple, clean, easy to use, and is a superfast Twitter client for your iPhone and iPod Touch.

List some of your favorites… :)

Magento, PHP | 77 Comments | May 21, 2009

Magento – Display new products on the home page

If you’ve ever wanted to add new products in your Magento home page, it’s fairly easy to implement. Go to “CMS” then “Manage Pages” and select “Home Page” from the list of pages. Now paste this code snippet to show products labeled as “new” on your front page:

{{block type="catalog/product_new" name="home.catalog.product.new" alias="product_homepage" template="catalog/product/new.phtml"}}

(Note that you must have some new products in your catalog for anything to show when you do this. This doesn’t mean that you’ve recently added them; only products explicitly marked as new using “Set Product as New from Date” and “Set Product as New to Date” options in the “General” product information page in the admin tool will be shown.)

Books, Magento, PHP, Web Resources | 2 Comments | May 20, 2009

Magento releases User Guide

Magento User GuideMaster the basics of running your Magento store using hands-on tutorials by Varien, the Magento Company.

The Magento User Guide provides the site administrator with detailed instructions addressing the platform’s innumerable functions. From setting up your store to managing your products, pages and promotions to generating detailed reports, our User Guide empowers our ever-widening customer to utilize the platform for all of its vast capacity. Serving as a handy problem solving solution as well as a practical step by step guide, our User Guide is sure to become a cost-effective partner in your Magento store implementation.

  • Download a sample chapter
  • Read the Table of Contents
  • Page 1 of 4
  • 1
  • 2
  • 3
  • 4
  • >
  • Premium Email Templates

    Social Profiles

  • Twitter
  • Facebook
  • LinkedIn
  • Digg
  • Google
  • GitHub

    Last Tweet

  • Beware the heat-seeking Nerf machine-gun coming to a cubicle near you http://om.ly/svHF #fb
  • Follow me
  • Archives

    • August 2010
    • July 2010
    • June 2010
    • May 2010
    • April 2010
    • March 2010
    • February 2010
    • October 2009
    • September 2009
    • August 2009
    • July 2009
    • June 2009
    • May 2009
    • September 2008
    • August 2008
    • July 2008
    • June 2008
  • Categories

    • AJAX
    • Apache
    • Books
    • Drupal
    • Ecommerce
    • Flash
    • Google
    • Javascript
    • jQuery
    • Magento
    • Marketing
    • Mootools
    • My Thoughts
    • MySQL
    • News
    • Photoshop
    • PHP
    • Prototype
    • SEO
    • Web Resources
    • Wordpress
  • My Favorites

    • 37 Signals
    • Andrew Warner
    • Chris Coyier
    • Chris Shiflett
    • Collis Ta'eed
    • Development Seed
    • Drupal
    • HubSpot
    • James Padolsey
    • Joel On Software
    • John Resig
    • jQuery
    • Kevin Rose
    • Life Hacker
    • Magento
    • Mashable
    • Matt Cutts
    • Matt Ryan
    • MySQL
    • NetTuts
    • Noupe
    • Photoshop Tutorials
    • PHP
    • Smashing Magazine
    • Tech Crunch
    • WoorkUp
    • Wordpress

2010 © Copyright. Richard Castera - All Rights Reserved.

Top