Eclipse PDT Word Wrap

We'd think our lovable free PHP IDE, Eclipse PDT, would come with word wrap functionality because it's so basic. Surprisingly, it doesn't. However, it's not complicated to add this feature to your Eclipse PDT editor. Go to Help -> Software Updates. Click Available Software. If the site 'http://ahtik.com/eclipse-update' is not already listed, click Add Site. Enter 'http://ahtik.com/eclipse-update'. Install Virtual Word Wrap by checking the left side box. Left click in the editor. Turn Virtual Word Wrap on by clicking it from the pop up window. We still have turn on the feature for each PHP file, but it's still better than ...

Magento Table Structure

When you first look at Magento database, it can be overwhelming because of its complexity. The Magento database is heavily dependent on EAV (Entity Attribute Value) model. While the EAV model makes it easier to expand the database, i.e. adding your own entities or attributes specific for your store, SQL codes can be very difficult to write. Before you customize Magento database, make sure you read through EAV model and you understand Magento table structure thoroughly. EAV Core Tables All EAV tables are prefixed with "eav_". eav_entity_type: table of all entitiesIt contains information about entity codes, entity models, entity tables and more. Example ...