- metalrobot Металлический конструктор
- inkdatatable An Inkscape extension for creating tables with text fields
- textext Inkscape LaTeX plugin originally from http://pav.iki.fi/software/textext/
- inkscape-gs An inkscape's extension to create guides with offset, useful to create a grid system.
- NiceCharts An Inkscape-extension to draw charts
- gdadin GUI to Draw Algorithms Designed with Inkscape
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is free and unencumbered software released into the public domain. | |
* | |
* Anyone is free to copy, modify, publish, use, compile, sell, or | |
* distribute this software, either in source code form or as a compiled | |
* binary, for any purpose, commercial or non-commercial, and by any | |
* means. | |
* |
- Direct download Magento extensions: http://freegento.com/ddl-magento-extension.php
- Delete all orders from database: http://www.codelogbook.com/remove-all-orders-from-magento-database/
- Magereverse http://www.magereverse.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- After dumping a production database, needing to scrub customer data to remove emails, phone numbers, | |
-- reset passwords, and/or specific attributes from the EAV tables. Change IDs and values accordingly | |
-- DO NOT BLINDLY COPY/PASTE RUN without customizing for your needs first! For Magento 1.x | |
-- NOTE: if you need to target a specific EAV use something similar and NOTE the attribute_id! | |
update customer_entity_text set value = concat('[email protected]') where attribute_id = 267 and entity_type_id = 1; | |
-- Set all customer passwords to password123 | |
update customer_entity_varchar set value = '15d590025cf0bc5c7db18292ca8c73342d3a7706f0deb5589431e3a137b420cf:jK' where attribute_id = 12 and entity_type_id = 1; |
/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/m/e/me-d1_2.jpg
|___________________________|_|_____|________________________________|_|_|__________|
| | | | | | |
Cache Directory | | | | | |
Mage/Catalog/Model/Product/Media/Config.php | | | |
getBaseMediaPath() | | | | | |
| | | | | |
Originally posted from https://web.archive.org/web/20171207214530/http://www.molotovbliss.com/debugging-tips-and-tricks-with-magento-commerce
Zend_Debug::dump
Use Zend_Debug::dump($foo);
instead of using var_dump($foo);
or print_r($foo);
it is essentially the same, just a wrapper with pre HTML tag for formatting and escaping of special characters.
NewerOlder