Tuesday, May 18, 2010
Monday, May 17, 2010
creating custom fields in simple machines forum
http://custom.simplemachines.org/mods/index.php?action=parse
http://www.simplemachines.org/community/index.php?topic=294269.0
http://www.simplemachines.org/community/index.php?topic=294269.0
Wednesday, May 12, 2010
how to remove duplicate rows in mysql db
Step 1: Move the non duplicates (unique tuples) into a temporary table
We no longer need the table with all the duplicate entries, so drop it!
CREATE TABLE new_table as
SELECT * FROM old_table WHERE 1 GROUP BY [column to remove duplicates by];
Step 2: delete delete the old tableWe no longer need the table with all the duplicate entries, so drop it!
DROP TABLE old_table;
Step 3: rename the new_table to the name of the old_table
RENAME TABLE new_table TO old_table;
And of course, don't forget to fix your buggy code to stop inserting duplicates!
Tuesday, May 11, 2010
upload multiple files to specific Magento products
- This is possible by creating a custom textarea attribute. Then, create a folder where you will save the files to be linked in the textarea attribute.
Tuesday, May 4, 2010
Magento: Display category list on the left column
http://www.magentocommerce.com/boards/viewthread/4722/#t17585
Sunday, May 2, 2010
installing AsteriskNOW
- http://www.youtube.com/watch?v=tn9TzJ6eZW0&feature=related - linux text installation
- http://www.youtube.com/watch?v=ONOxNJquatk
- http://www.elastix.org/index.php?option=com_openwiki&Itemid=27&id=installation - elastix
Subscribe to:
Comments (Atom)