Skip to content

Instantly share code, notes, and snippets.

View andrefrd's full-sized avatar

André Dantas andrefrd

  • Grupo Vista
  • São Paulo -BR
View GitHub Profile
@Abban
Abban / handleUpload.php
Last active October 13, 2020 06:39
jQuery AJAX file uploads. Code for the following blog post: http://abandon.ie/notebook/simple-file-uploads-using-jquery-ajax
<?php // You need to add server side validation and better error handling here
$data = array();
if(isset($_GET['files']))
{
$error = false;
$files = array();
$uploaddir = './uploads/';
@arosenhagen
arosenhagen / magento-code-snippets.md
Last active April 8, 2024 09:21
[magento] - code snippets

Magento Code Snippets

Download extension manually using mage

./mage config-set preferred_state stable
./mage clear-cache
./mage sync
./mage download community Module_Name