- 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 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 | |
/*********************** | |
* Import/Export Script to run Import/Export profile | |
* from command line or cron. Cleans entries from dataflow_batch_(import|export) table | |
***********************/ | |
$mageconf = './app/etc/local.xml'; // Mage local.xml config | |
$mageapp = './app/Mage.php'; // Mage app location | |
$logfile = 'export_data.log'; // Import/Export log file |
This file contains 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 | |
require_once 'app/Mage.php'; | |
ini_set('display_errors', 1); | |
ini_set("memory_limit","11364M"); | |
Mage::setIsDeveloperMode(true); | |
$time_start = microtime(true); //get start time | |
$premem=memory_get_usage(true); //get initial memory usage |
This file contains 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
{ | |
"name": "magento/project-community-edition", | |
"description": "eCommerce Platform for Growth (Community Edition)", | |
"type": "project", | |
"version": "2.1.2", | |
"license": [ | |
"OSL-3.0", | |
"AFL-3.0" | |
], | |
"require": { |
This file contains 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
/.buildpath | |
/.cache | |
/.metadata | |
/.project | |
/.settings | |
atlassian* | |
/nbproject | |
/sitemap | |
/.idea | |
/.gitattributes |
This file contains 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
<VirtualHost *:80> | |
ServerName web01-magentodev.com | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/html | |
<Directory "/var/www/html"> | |
Options Indexes FollowSymLinks ExecCGI Includes | |
Order allow,deny | |
Allow from all | |
AllowOverride All |
This file contains 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 | |
/** | |
* @author Raj KB<[email protected]> | |
* @website http://www.magepsycho.com | |
* @blog http://www.blog.magepsycho.com/sandbox-script-quick-testing-magento2/ | |
*/ | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); |
This file contains 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
//Read CSV file | |
$fileData = function($file) { | |
$file = fopen(__DIR__ .'/'. $file,'r'); | |
if (!$file) | |
die('file does not exist or cannot be opened'); | |
while (($line = fgets($file)) !== false) { | |
yield $line; | |
} |