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
| #Delete all products from WooCommerce DB | |
| #http://wordpress.org/support/topic/remove-all-woocommerce-products | |
| DELETE relations.*, taxes.*, terms.* | |
| FROM wp_term_relationships AS relations | |
| INNER JOIN wp_term_taxonomy AS taxes | |
| ON relations.term_taxonomy_id=taxes.term_taxonomy_id | |
| INNER JOIN wp_terms AS terms | |
| ON taxes.term_id=terms.term_id | |
| WHERE object_id IN (SELECT ID FROM wp_posts WHERE post_type='product'); |
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
| window.resolveLocalFileSystemURI(filePath, function(fileEntry) { | |
| fileEntry.file(function(fileObj) { | |
| console.log("Size = " + fileObj.size); | |
| console.log("Size = " + fileObj.fullPath); | |
| }); | |
| }); |
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
| UPDATE tablename | |
| SET columnname = ELT(0.5 + RAND() * 6, 'value 1','value 2','value 3','value 4','value 5','value 6') |
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 | |
| /* Simple Code Obfuscator for PHP | |
| * See: http://stackoverflow.com/questions/232736/code-obfuscator-for-php/3781356#3781356 | |
| */ | |
| $infile=$_SERVER['argv'][1]; | |
| $outfile=$_SERVER['argv'][2]; | |
| if (!$infile || !$outfile) { |
NewerOlder