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
SET @LOGIN_PW = "password_goes_here"; | |
SET @USERNAME = "username_goes_here"; | |
SET @FIRSTNAME = "Test"; | |
SET @LASTNAME = "Tester"; | |
SET @EMAIL = '[email protected]'; | |
SET @SALT = "rp"; | |
SET @PASS = CONCAT(MD5(CONCAT( @SALT , @LOGIN_PW) ), CONCAT(":", @SALT )); | |
SELECT @EXTRA := MAX(extra) FROM admin_user WHERE extra IS NOT NULL; |
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
var products = []; | |
jQuery('.dottedlink:contains("Edit")').each(function(){ | |
var $ = jQuery; | |
console.log($(this)); | |
var row = $(this).closest('tr'); | |
products.push({ | |
'name' : row.find('td:eq(1)').text(), | |
'displayname' : row.find('td:eq(2)').text(), | |
'price' : row.find('td:eq(5)').text(), |
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
configure | |
set system package repository wheezy components 'main contrib non-free' | |
set system package repository wheezy distribution wheezy | |
set system package repository wheezy url http://http.us.debian.org/debian | |
commit | |
save | |
exit | |
sudo apt-get update |
NewerOlder