Monthly Archives: June 2012

Adding new language into MyReview

A translation file is tree-structured, with a first level (namespaces), a second (text codes) and a third one which present the text content in two languages: English (the reference for translation) and the target language chosen in the export form … Continue reading

Posted in MyReview | Leave a comment

Showing relationship among database tables

SchemaSpy software is used for showing relationship among different tables. It is free software. SchemaSpy is a Java-based tool that analyzes the metadata of a schema in a database and generates a visual representation of it in a browser-displayable format. … Continue reading

Posted in Uncategorized | 2 Comments

Making a simple form in Zend framework

Firstally define the directory structure of zend framework. Create index.php file inside the project/ directory and write the following code: <?php define(‘ROOT_DIR’, dirname(__FILE__)); set_include_path(‘.’ . PATH_SEPARATOR . ROOT_DIR . ‘/library’ . PATH_SEPARATOR . ROOT_DIR . ‘/application/models’ . PATH_SEPARATOR . ROOT_DIR … Continue reading

Posted in Uncategorized | 1 Comment

Different namespaces in MyReview

namespace is a mean to group texts. MyReview uses several groups, or “namespaces”. These are given below: db namespace contains the translation of all the database fields; such translations are useful for instance as header of HTML tables, or as … Continue reading

Posted in MyReview | Leave a comment

tmux in Ubuntu

tmux is a terminal multiplexer. It enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached. Install tmux by … Continue reading

Posted in Uncategorized | Leave a comment

Run multiple sites instances with one MyReview Installation

You can run many sites with a single MyReview installation. The MyReview directory organization makes it easy to separate the application part from the site-specific files. Here is a short list of the actions that must be carried out to … Continue reading

Posted in MyReview | Leave a comment

Changing layout of MyReview

In the Configuration form of admin menu, three inbuilt layouts are provided. Layout selection option is provided to select these. We can even make changes in these by modifying their respective CSS files located at myreview/www/css directory. We can also … Continue reading

Posted in MyReview | Leave a comment

sed command and slang replacer

Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). sed command is used to replace text. Example: Create file in which replace words … Continue reading

Posted in Uncategorized | Leave a comment

Writing a simple document in Latex

LATEX input files can be created with any text  editor . It contains the LATEX commands and the contents you want to add in your document. The input for LaTeX is a plain ASCII text file.  The commands used in … Continue reading

Posted in LaTex | Leave a comment

Secure your SSH server with Public/Private key authentification

Open SSH is the most widely used SSH server on Linux. Using SSH, one can connect to a remote host and gain a shell access on it in a secure manner . Instead of logging in to SSH using a … Continue reading

Posted in Uncategorized | Leave a comment