Search for files modified in the last X amount of days in UNIX
Searches for files modified up to 2 days ago. find ./ -type f -mtime -2 -exec ls -al {} \
Searches for files modified up to 2 days ago. find ./ -type f -mtime -2 -exec ls -al {} \
Measure of file size: KBps File size i.e. how big the file or how much space a file occupies in the hard disk measured in terms of KiloBytes (KB upper case “K” and upper case “B”). In computing terms the upper case “K” stands for 1024. 1024 is computed from 210. (2 power 10). 2 [...]
find myProjectDirectory -type f \( -name \*\.php -o -name \*\.js -o -name \*\.css -o -name \*\.inc \) | xargs tar -rf myProjectTarName.tar
To set only files that end with .tpl to 600 (pattern escaped with slashes) find . -name \*\.tpl -exec chmod 600 {} \;
The Facebook Conversion Tracking Prestashop Module. Need to track your ROI from Facebook Ads? With this easy to use Prestashop module you can. This module automatically adds the tracking conversion code when a customer makes a purchase so you can measure if your Ads are working. You can download the Facebook Conversion Tracking Prestashop Module [...]
By Alyssa LaRenzie eHow Contributing Writer If your iPhone 3G screen is cracked, check first with Apple to see if your warranty covers the repair or a replacement. This repair can be difficult and should be attempted only if the image behind the glass screen is visible. With those precautions, repairing it yourself should cost [...]
Prestashop Cart2Order Module I recently had the need to convert customer carts into actual orders and since there wasn’t an easy way to do that with the base install code and a module didn’t exist, I wrote my own. Basically what this simple module does is convert a customer cart into an order. Here’s how [...]
I was browsing the prestashop forum and ended up on a thread concerning an issue with people stealing a site design by downloading the template files from the theme directory. It struck me that this is probably something that those of you who use other template systems with your sites may also face, so thought [...]
Please don’t edit those originals! I came across this little gem a while ago on the Prestashop forum, and thought I would draw attention to it in the hopes that it will help someone, somewhere. I’m not one to complain, but my pet hate is folks who edit the original source files on their stores, [...]