Posts Tagged ‘application’

Gallery Installation and Configuration

The Photo Gallery comes bundled with ExpressionEngine and ready to be installed. In your Control Panel, click the Modules tab. On the right side of the table, click the Install link corresponding to the Photo Gallery Module. This will install the necessary components for the gallery.

When you access your Photo Gallery control panel for the first time (via the Modules page) you will be prompted to configure your gallery preferences with the following three steps:

Step 1: Create a Folder for your Images

Using your FTP program, create a folder on your server for your images. A good location is within your main “images” folder, but feel free to put it wherever you want. Once you have created the folder you must set its file permissions to 777 so that the Photo Gallery program will be allowed to put images into it.

Note: You will need to determine the full server path to your new image folder so that it can be saved in your gallery preferences. If you are not sure how to determine the full server path please contact your hosting provider and ask them.

Step 2: Choose a Name for your Templates

During configuration, the Photo Gallery script will add a set of default templates. You’ll be asked to choose a name for your templates
Step 3: Configure your Preferences

Although the Photo Gallery supports dozens of preferences you only need to initially update the following six items:

1. Photo Gallery Name Choose a name for your gallery.
2. Photo Gallery Short Name Choose a single word (no spaces). This “short name” is used to reference your gallery in the various ExpressionEngine Tags in your gallery templates.
3. Photo Gallery URL The full URL to your gallery.
4. Image Folder Name The name of the folder you uploaded in step 1.
5. Server Path to Image Folder The full server path to the folder, as indicated in step 1.
6. URL to Image Folder The URL to your image folder, in this format: http://www.example.com/image_folder_name/

Once you have updated the above items, click the submit button at the bottom of the page.
Step 4: Add Categories

Before you can add photos to your gallery you must create at least one category so your photos can be assigned to it.

Click the Categories tab at the top of the gallery module to add a new category. Repeat this process for each category you would like to create.

What is Gallery?

Gallery is an open source project with the goal to develop and support leading photo sharing web application solutions.

The Gallery project develops open source software licensed under the GPL, and is maintained and developed by a community of users and developers. The development is a distributed effort, with collaboration from around the globe. The team is well organized, with weekly meetings, and constant communication. Serving millions worldwide, the Gallery project is the most widely used system of its kind. Gallery is free to download and use.

phpList requirements

phplist is developed and tested with the following server software:
* GNU/Linux
* Apache web server
* MySQL database server version 4.0 or higher
* PHP versions 4.3.x or higher (IMAP module required for bounce processing)

phplist also runs on PHP 5, MySQL 4.1 & 5.

The developers use the following setup:

* A recent release of any Linux distribution
* Mysql 5.0.27
* PHP 5.2

phplist also runs on windows, with Apache, PHP and MySQL.

What is phpList?

phplist is an open-source mailing list manager. It is written in PHP and uses a MySQL database for storing information.
The software runs on a web server and allows web site administrators to set up a web based newsletter subscription system where users can subscribe to the desired mailing lists.

It allows email messages to be sent out to a large number of subscribers and also allows email message templates to be set up (e.g. for a consistent look and feel). It also allows the email messages being sent out to be personalised with attributes that are unique to each subscriber.

How to install MediaWiki?

To install MediaWiki in Host1Free.com free web hosting follow these steps:
1. Login to DirectAdmin server control panel.
2. Locate Softaculous application installer.
3. Select MediaWiki from application list.
4. Follow application installer steps to finalize the installation.

Alternatively you can follow this instruction:
1. Download MediaWiki and extract the archive to a web-accessible folder on your server.
2. Point your browser to the config directory (e.g., http://localhost/mediawiki/config/index.php).
3 Follow the on-screen instructions to complete the process.

How to change the favicon in MediaWiki?

* Simply upload your favicon.ico to the root of your domain/subdomain, make sure file name is in lower case and its name is favicon.ico
* Alternatively edit the $wgFavicon setting in LocalSettings.php and add $wgFavicon = “$wgScriptPath/path/to/your/favicon.ico”;

See Manual:$wgFavicon for more details.

Tip: The favicon image should be either 16 x 16 pixels or 32 x 32 pixels.
Rewrite Rule

If you are using a rewrite rule in .htaccess to remove “index.php” from the URL, you will also need to add an exception for .ico files. Simply add the following rule to your .htaccess:

RewriteRule .*\.ico$ – [L]

This rule must appear before the index.php rule.
Case sensitivity

When uploading the favicon file, be sure the filename is in lowercase. (That is, “favicon.ico”, not “Favicon.ico”.) A lot of servers (e.g., those on UNIX-like operating systems) will not be able to find the file unless its name is in lowercase.

How to enable HTML tags in MediaWiki?

How to enable HTML tags in MediaWiki visit: http://meta.wikimedia.org/wiki/Help:HTML_in_wikitext

How to change the ‘Main Page’ title to something else?

The default name for the MediaWiki main page is Main Page.
You can change this by editing the MediaWiki:Mainpage page.
Go to: www.yourdomain.com/wiki/index.php?title=MediaWiki:Mainpage
and click the edit button to edit the page. Change Main Page to the new page name you wish to use and save the change.

How to disable cache in MediaWiki?

Add in your LocalSettings.php file the following lines:

$wgEnableParserCache = false;
$wgCachePages = false;