New Mediaist is an Internet marketing  consulting firm. We help industry-leading firms plan, develop, and grow their online presence.<br />
New Mediaist is in the business of helping companies focus on what counts.<br />
Our measurement focused-approach helps businesses target their online marketing activities, enabling for the further development of recurring revenue sources and sustainable competitive advantages.

Ari's blog

Reseting Directory Permissions in Linux

One more quick tip - if you just uploaded a whole bunch of files to a shared hosting account like GoDaddy and can't figure out why your webpage won't load, it could be a directory permissions problem. One quick way to reset permissions in *NIX is as follows

find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;

What this does is reset all files to 644, and all directory to 755. Explaining how the *NIX file permission system works will have to be reserved for another post...

Syndicate content