$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Set Permissions Site/Blog After Deployment

December 18, 2011 | By Duchateaux.

After Site or Blog Deployment you need to Set the Correct Permissions on Files and Directories.

  1. Open a Terminal window (if your Live Server is Remote you need a ssh Login).

    To Set Permissions Only for Files Recursively execute:

    find path/To/Root/Directory -type f -print0 | xargs -0 chmod 744

    To Set Permissions Only for Directories Recursively execute:

    find path/To/Root/Directory -type d -print0 | xargs -0 chmod 755

    (Reference).

Some Exta Indications are Contained in this other Guide:
Climb the InfoWall
How to Set Permissions Site/Blog After Deployment
Fedora, Linux

Sviluppo Siti Web

.

How to Set Permissions Site/Blog After Deployment
Bloogger Blogger, Google Blogger, Google Google

Climb the InfoWall