Psychostats - Psychostats tutorial for cs

free web hosting
Free Web Hosting > Computers & Tech > How-To's and Tutorials > Websites and Web Designing

Psychostats - Psychostats tutorial for cs

return
QUOTE
Required Server Software
A Web server (usually Apache or IIS)
PHP v4.3 or any version higher.
MySQL v4.1.11 or any version higher.
Windows
ActivePerl v5.8 or v5.10
Linux
Perl v5.8+
Required Perl modules
DBI (v1.4 or higher)
DBD::mysql (v3.0002 or higher)
Optional Perl modules
Net::FTP - This is only required if you need to download logs from a remote FTP server (chances are this will be installed by default with your version of Perl).
Net::SFTP - This is only required if you need to download logs via an SFTP server (secure SSH file transfer protocol).


Your Web Server
In order to view your PsychoStats player web site you'll need a web server capable of displaying the pages. Almost any web server will suffice but it must have PHP v4.3+ (with the MySQL extension enabled). This documentation will not go into detail on how to enable these extensions, the PHP documentation is very detailed, so please visit the links.

If you already have a web host then you're in good shape and chances are your web site already supports PHP and MySQL. If you're not sure you can ask your hosting provider.

If, however, you will be running the web site off of your home machine, or another server that you maintain and it doesn't already have a web server running you will need to install one. Whether you're on Windows or Linux, I highly suggest installing Apache. Using IIS on Windows has a few quirks that cause a lot of problems for PsychoStats working properly on some systems (mainly user permissions that are confusing).

If someone would like to contribute detailed instructions on properly setting up IIS, please feel free to fill out this documentation with the steps required. But please keep the formatting in sync with the rest of the document.

Before you get too deep in how to install Apache on your server there's a better way to handle this. There's a simple way to get Apache, MySQL and PHP all installed with a single click of a button (ok, maybe a few clicks of a button). A premade Windows system that runs Apache, MySQL and PHP is called a WAMP (Windows Apache MySQL PHP). The wonderful folks over at the wampserver.com (french) web site (english) have pre-packaged up an entire software suite that combines all of the latest software with a single Install Wizard that installs and sets it all up for you.

It even includes a nice little "systray" utility that allows you to manage the various server configurations and enabling extensions w/o modifying any configuration files directly. The Wamp Server also comes packaged with some useful utilities, like phpMyAdmin which allows you to administer your MySQL database from a web interface. And don't worry, The WAMP Server doesn't install any spyware or annoyware :-).

Your Database Server
If you've installed the Wamp Server that was described in the previous chapter, or if your web host already provides access to the MySQL server then you can skip this and move on to the next chapter.

If you did not install the Wamp Server and you do not already have a MySQL database running then you'll need to install MySQL on your web server. This documentation will not go into detail on how to install MySQL from scratch since the MySQL documentation has a great Installation document in place already.

Once you have MySQL up and running you can proceed to the next chapter.

Creating a MySQL user
This chapter is not required for everyone. It depends on how your MySQL server is setup. If you have a web host that provides MySQL access for you chances are they've provided a user and a database already, in which case you can skip ahead to the next chapter. For users that are not sure, then read on.

Note: This chapter is very streamlined, a lot of users will already have MySQL users available and will not have to create a user themselves.

MySQL is a multi-user database that allows a virtually unlimited number of users to connect to it at the same time. Each user has their own privileges to the server, some users will only be able to access certain databases or even certain tables within a database, while other users may have full "root" access to all databases. Users in a virtual hosting environment will most likely have limited user access to a single database provided by the web host.

If you have the proper 'root' access to create a new user it is strongly suggested to add a user just for PsychoStats. This is a security measure so that if the PsychoStats user is ever compromised by a malicious user they would only have access to the PsychoStats database and not other databases that might be on the system.

If you have phpMyAdmin, which comes with the WampServer or can be downloaded from the official phpMyAdmin website, then follow the steps below to add a user.

Login to phpMyAdmin and on the main page click on "Privileges" near the bottom. That will show a list of the current users in the database.
Below the user list click on "Add a new User".
On the next screen, in the "Login Information", you'll enter a User name and password. Also, you'll notice a field labeled "Host". For the average user you'll want to leave that set to 'Any host'. This will allow PsychoStats to connect with that user from anywhere in the world. If this setting was set to "Local" then the user would only be able to connect to the database if the connection originates from the server itself (so, from your game server which might be next door or 1/2 way around the world, you wouldn't be able to connect to the database).
Leave the rest of the input fields on this page at their defaults and click on the "Go" button at the bottom. This will add the user and refresh the page. But now there will be more options below for the user.
In the section "Database-specific privileges" (about 1/2 way down the page) you'll want to enter the name of the database that you'll be using for your PsychoStats installation. Or if you already have a database setup just select it from the pulldown menu then click the "Go" button.
On the next page select all the check boxes (you can leave the checkboxes in the 'Administration' section blank) that are shown and click "Go".


Installing PsychoStats (part 1)
Installing the PsychoStats software is very easy, a web based "Install Wizard" will guide you through the steps needed to get the database setup and initial configuration defaults in place. But first you need to put PsychoStats on your web site.

When you unzipped PsychoStats onto your computer it created a directory resembling: psychostats3.0.0 (where 3.0.0 is the current major, minor and revision). Inside that directory will be lots of files and sub-directories with a structure similar to the list below (some optional files and directories have been omitted from this listing).

PsychoStats3.0.0
\lib
\upload
stats.pl
stats.cfg

All of these files make up the required set of files for PsychoStats to work. For now, the directory you're interested in is upload. The upload directory is the entire web front-end for PsychoStats, these files are what allow you to view your stats online. The contents of this directory need to be copied over to your web server. A common place is a sub-directory called stats within your website root directory. Below are examples for Windows and Linux of how you would copy this directory to your web site.

IIS on Windows
If you're running the IIS web server the document root is usually something like: c:\Inetpub\wwwroot. Thats the directory where you want to copy the PsychoStats upload directory into. However, the real directory may be somewhere different for your system and can be found by opening up the Website in your IIS Admin Console and looking at the web site properties. The 'Home Directory' tab will have the path of where your website directory is located.

Step-by-Step

Browse to the PsychoStats directory from the archive you unzipped.
Right click on the upload directory and select "Copy".
Browse to the document root of your website (ie: c:\Inetpub\wwwroot or wherever it it on your system).
Right click somewhere in the window of that directory and select "Paste". The files should copy over in a few seconds.
You should now have the upload directory copied into your web server document root. You probably don't want that directory to stay with the name of upload. So rename it to something more meaningful like stats. You can right click on the directory and select "Rename" to change the name.

So in the end you should have a directory of something like: c:\Inetpub\wwwroot\stats and in that directory will be all the PHP files and sub-directories that make up the PsychoStats website.


Upload to remote server
If your web server is being hosted somewhere else you'll need to upload the contents of the upload directory to it using your normal FTP client (or SFTP for certain hosts). This is a standard affair and I will not go into detail. If you don't know what FTP is or how to use it, you can ask a friend or seek help in the forums. This documentation is not the place to explain FTP.

Running the Install Wizard
Once you have PsychoStats uploaded to your web server you're ready to run the installation wizard which will complete your Installation of PsychoStats (you'll still need to setup the stats.pl to run, described in the following chapters).

I'll assume you copied or uploaded the PsychoStats upload files to a directory called "stats" on your web server document root. All you have to do now is browse to the /stats/install/index.php URL with your browser pointing to your website. The installation wizard will guide you through the rest of the installation. For example, You might end up browsing to an URL like: http://example.com/stats/install/index.php

That should open the Install Wizard. From here, just follow the directions and answer the questions that it asks you.

IIS and Windows file permissions
If after the installation you browse to your PsychoStats homepage and see only Smarty Error messages, then perform the following tasks:

Browse to a folder where PsychoStats keeps its compiled templates (Default: ps_themes_compiled)
Right-click that folder and choose Properties
Go to the Security tab
Click the user "Internet Guest Account" (Notice: The user name may be different if you changed your IIS settings)
Check the box "Allow: Full Control" to assign all needed permissions to that folder for IIS.
Click Apply and then OK
You can now refresh the PsychoStats page in your browser and finally see it working correctly.

Initial configuration
Once the install is complete you will have a fully functional PsychoStats website on your server. Although, for the moment, it will be empty and not have any players. The first thing you should do is open the (Administrator Control Panel (ACP) and look around at the configuration settings. The first thing you need to configure is a valid logsource. A logsource defines where your game server logs are located and how to read them. Without this, you will not have any stats.

See the section on Setting up a logsource for more information.

Installing PsychoStats (part 2)
At this point you should have a fully functional PsychoStats website up and running on your web server. You should be able to browse to the various pages within the stats (but there won't be any players yet) and you should have a logsource configured. And hopefully you've looked at other settings and have tweaked them as needed for your own personal tastes.

Now you need to install the stats.pl portion of PsychoStats onto your machine. The stats.pl (and related files) make up the 'back-end' of PsychoStats. This is the part that actually runs and populates your database with statistics from the game logs. These files can be put almost anywhere, on your web server, the game server, your home machine, or another remote server 1/2 way around the world. A lot of users are confused when they get to this part of the installation. So, to try and make it easier on you follow the questions below and find the question that relates to your setup.

A user says ...
"My game server and web server are on the same machine and are not on my home machine"
Answer: Upload the stats.pl, stats.cfg and lib directory to the game server.
"My game server and web server are remote but I want to run PsychoStats on my home machine."
Answer: Make a copy of the stats.pl, stats.cfg and lib directory on your home computer. Put them into a PsychoStats directory (it doesn't matter where). I suggest something like "c:\psychostats".
"My game server is on a remote machine and I want to run stats.pl on the game server."
Answer: Upload the stats.pl, stats.cfg and lib directory to the game server. You will have a home directory, just upload the files into a psychostats directory within your home directory. Do not put the files inside your web site directory (ie: public_html, or cgi-bin).
Configure the stats.cfg file
The stats.cfg file is a very small configuration file that simply holds some basic settings on how to connect to your database. All other settings for PsychoStats are stored in the database itself and can be changed by logging into your stats website and going to the ACP.

Make sure you edit the stats.cfg with the proper settings for your database. The table below shows the settings available. Remember, you're configuring these settings based on where your database server is in relation to the stats.pl. So if your database is on another remote machine you'll need to setup the 'dbhost' to point to the remote hostname or IP address.

A common problem with remote databases is improper user permissions that do not allow you to connect to the database. Another common problem is most free web hosting providers will block remote database connections to their servers which make it impossible to run the stats.pl on a different machine.

Running PsychoStats
At this point you have run the 'Install Wizard' from your browser and the database is fully setup and you can view your empty player stats online. Now it's time to finally generate some stats!

How to run stats.pl depends on what type of system you are on. We'll step through the various ways below.

 

 

 


Reply

yordan
Hi,
You forgot to mention that this topic is copied from http://www.psychostats.com/doc/PsychoStats_Installation
Please do not forget to put between quotes the texts you copied from somewhere else.
Regards
Yordan

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. download psychostats themes - 162.60 hr back. (1)
  2. psychostats linux - 188.64 hr back. (1)
  3. psyhostat - 329.84 hr back. (1)
Similar Topics

Keywords : psychostats, psychostats, tutorial, cs

  1. Gimp Animation Tutorial
    Read in the first part of the tut why i made another tut same as Lance (16)
  2. Here Are Some Great Php Tutorial Sites
    (4)
    these site very usefull for php html java 5 day ago i only use w3school recently i have some great
    web for usefull http://www.devresources.net/ http://www.php.net/ http://www.tizag.com/phpT/
    http://www.w3schools.com/php/default.asp http://phpbuilder.com/ http://www.phpfreaks.com/
    http://www.w3schools.com/php/ http://www.hudzilla.org/phpbook/index.php
    http://www.spoono.com/ http://codewalkers.com/ http://www.phpcs.com/ http://pear.php.net/
    http://www.phpclasses.org/ http://phpdebutant.org/ http://www.phpfrance.com/ http://....
  3. How To Understand A Database Schema
    A very nice and simple tutorial (4)
    Yesterday while i'm seaching for a data model and database schema at the Library of Free Data
    Models for a new project of a friend of mine i found there this nice and simple tutorial on How to
    Understand a Database Schema . As its name says, this tutorial will help you to better understand a
    Database Schema and covers the following basics topics that every Database Schema must define:
    QUOTE Primary and Foreign Keys. One-to-Many and Many-to-Many Relationships. Inheritance.
    "Rabbit's Ears", (Recursive relationships). The Scope of this tutorial is ....
  4. Basic Html Tutorial
    Made it myself, hope you like it. (1)
    HTML stands for hyper text markup language. It is a basic coding language used on almost every
    website. There are some tags in HTML which must be used, whilst others are enhancing, but not
    essential. Below I shall list the essential tags and there uses: This tells the browser that
    the language between the tags is going to be HTML so it knows how to read it. Inbetween those tags
    come These tags tell the browser that all the content that you wish to be displayed is in there.
    They are the only essential tags for HTML! The list is short but if you only use them your ....
  5. Moving To Fedora 9
    Tutorial on how a newbie can move to using this fantastic OS Fedora 9, (1)
    INTRODUCTION Through this Post/ tutorial, I will try to explain to newbies and experts an
    smoothly moving to Fedora 9. Also, I would explain only those topics that are hard to find on net,
    or are not well documented anywhere. These are my experience of using Linux/Fedora. Motto: More
    and more people realize and get FREE from all the GATES and WINDOWS. Table Of contents 1.
    Installation 2. Setting the Stage 3. Get set n Go 3.1 Play Anything 3.2 Read anything 3.3
    Desktop utilities 3.4 Connect ADSL 4. Tips and Tricks 5. Remarks. Remark: This....
  6. Bulletproof Ftp Server Tutorial
    BulletProof FTP Server Tutorial (0)
    thanks to someone for this tut. Configuring your Bulletproof FTP Server Tutorial I am not sure
    where I found this tutorial, It’s been a while…It might even have been here... ..So if it is one of
    yours, my hat goes off to you once again.... After reading the excellent tutorial on "Creating an
    FTP" that Norway posted… (I would suggest reading and following his tutorial first, then following
    up with this one) I thought that perhaps this tutorial might be pretty helpful for those interested
    in knowing how to configure their Bulletproof FTP Server that don't already ....
  7. Gimp Userbar Tutorial
    Very Easy... (3)
    Hello, I will tell you how to create a nice userbar in the open-source software called GIMP. You
    should GIMP 2.4.6 installed on computer, and if you don't, go to The GIMP Website. Make sure
    to view a few beginner tutorials to have a basic understanding of GIMP. This is what the finished
    userbar will look like: It is very simple, and I learned it easy. I will guide you through all
    the steps of making a userbar. ~ Now we will go through all the steps. 1. Open GIMP and click
    New(Ctrl + N) and make the size for your new image 350 by 19. Your screen should look....
  8. C/c++ -gdb Linux Debug Tool
    Simple Gdb tutorial (1)
    To run the C/C++ file use $ gcc –g –o test sample.cpp To debug the code use following command $
    gdb test --- you will get following messages GNU gdb Red Hat Linux
    (6.3.0.0-1.122rh) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the
    GNU General Public License, and you are welcome to change it and/or distribute copies of it under
    certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for
    GDB. Type "show warranty" for details. This GDB was configured as "i386-redhat-linux-g....
  9. Linux Beginners - Tutorial On Editors In Linux.
    (3)
    This is a simple tutorial on the editors in Linux. I use these 3 editors for programming on linux:
    1. vi -- available in all Linux and unix box, used to edit 2. vim -- not in all Linux flavors
    and it has got default coloring of key words feature, used to edit 3. view --Its used only to
    view, recommended to use for viewing of system config files, as it should not get edited without
    your notice. Following are the basic commands comes handy with these editors #Open a file for
    edit $ vi test -- creates a file if file is not exist in the current directory $ v....
  10. How To Download Videos From Youtube
    A Tutorial designed to inform of how to download YouTube videos. (11)
    This tutorial is to inform the reader of how to download videos from YouTube. I will also inform
    you of how to convert these videos into MP4 format so you can put them on your iPod. First, download
    Mozilla Firefox Internet Browser. This is, in my opinion, the most secure and customizable browser
    available. It can be downloaded freely at http://www.firefox.com . After you have Mozilla Firefox
    installed, open it and go to: http://www.firefox.com . When the page has finished loading, click
    Add-ons at the top of the page. Once the page has loaded, click in the search....
  11. Safety
    Anyone who knows a tutorial (9)
    Hey! Anyone who know a tutorial where they teach you how to protect your scripts from danger (hacks
    and stuff)? I think I need to start to think about theese stuff now.....
  12. Html Basic Tutorial
    <!-- For beginners only --> (9)
    Knowledge HTML stands for H yper T ext M arkup L anguage. You cannot create an HTML file
    using a rich-text editor, such as Microsoft Word or Wordpad. HTML To write a basic HTML, you will
    need to start with this: CODE The html > tag tells the browser that this is an HTML page.
    To close any tag, the same tag will be repeted but with the "/" sign. For example, CODE   
         Page title    Did you notice the /title >, /head > & /html > tags? That's how we
    close the tag. The HEAD > Tag A head > tag will include the meta >, titl....
  13. Php Tutorial: Making A Shoutbox
    Requirements: PHP, MySQL (12)
    Hi everyone, I'm going to tell you how to make a simple shoutbox using PHP and MySQL. To start
    off, open up mysql in the command line, or phpmyadmin, and create a database called shoutbox. Next,
    enter the following sql into the command line, or the phpmyadmin sql box, while using the shoutbox
    database: CODE create table messages(author varchar(30), message text, time timestamp, mid int
    auto_increment, primary key(mid)); This creates the table we need to store the messages, note the
    "mid" column, this gives each message a seperate id number, we'll see why ....
  14. C# Tutorial : Lesson 7 - Creating Value Types & Reference Types - Part II
    (1)
    foreach statement This statement is explicitly used to traverse through arrays. The
    benefit of using foreach over the normal for statement is that it is not needed to check the
    size of the array while using the former. Syntax:- foreach(type identifier in expression) {
    statement 1; statement 2; .... } Suppose we have an array StudentNames containing the name of all
    the students in a class. We need to display the name of each one of them on screen. First we will
    see how it can be done using the for loop. CODE string StudentNames = new string {"....
  15. Ajax + Php + Sql = Simply Superb! ( With Visitor Tracking )
    A small tutorial to explain integrating php, ajax and MySQL Database (11)
    Hi all.. I'm back with a new small tutorial! Introducation A tutorial to integrate
    Ajax, Php And Database ( Im using MySQL) + Visitor Tracking! Here you can enter values to some
    input fields, and by clicking some enter button, ( or u can call the function on some other event)
    those values will be sent to the database, along with visitor details ( IP Address, Input Value,
    Visitor Agent etc)! Those values will be stored in some database and you can retrieve the same using
    some simple php code and even deleted some rows from those databases! Requiremen....
  16. Photoshop Tutorial: Signature
    (4)
    Intro: Ok let's get started. Open up a new 400x130 px document. Play around with any render you
    feel like using. Resize it so that it's a good size for the signature. I will try to edit this
    post with a image version of the sig later* 1.) Choose a radial gradient type from your gradients.
    Pick black and another color. 2.) Click around the middle of the sig and hold it to around half-way
    to the end. Re-try until the middle of your sig has a gradient in it. 3.) Move your render into the
    sig and duplicate it 5 times (control+j) . 4.) Smudge the first one you co....
  17. Phpbb - Installation Tutorial ( For Newbies Based On Astahost Cpane)l
    phpBB 2.0.22 installation Tutorial with basic steps. (5)
    Introduction!! Providing a comprehensive 'How To' tutorial guide, on the
    installation of phpbb 2.0.22 forum on your Astahost/cPanel account. Tutorial includes Downloading
    of files Uploading using cPanel File Manager CHMOD using cPanel File Manager MySQL database
    creation PhpBB initial configuration This guid will help everyone from beginners, with images and
    an in depth guide of what to do. Step 1 To start with we need to download PhpBB ( latest stable
    version is PhpBB 2.0.22 ). This can be done by visiting the PhpBB Downloads page which shou....
  18. Wireless: Bypassing Mac Filtering
    Tutorial (11)
    Sometimes you scan the neighborhood for the wireless connections, you see open connections but can
    not connect to them. Well this is possible because they use MAC filtering to secure up their
    network. I will try to explain how to bypass this protection NOTE: This is for EDUCATION purpose
    only to show you it is possible to bypass this security. I am not responsible for unauthorized use
    of these information. Requirements : 1- You need some tool for sniffing the traffic. I suggest
    using Aircrack-ng (http://www.aircrack-ng.org/) 2- You need some tool to change your MAC ad....
  19. Installing Glut To Dev C++
    A tutorial to install GLUT on Dev C++ (3)
    This is a tutorial that someone submitted to my programming site when it was up because I didn't
    know how to install glut on any other compiler than my own. I though it would be helpful to post
    this up for everyone here so they can use GLUT as well without having to google for hours. I'm
    not sure if I'm allowed, but I have quoted it and have given credit where credit is due, so if
    this post is allowed I hope this helps those people who couldn't program in GLUT yet. QUOTE
    Installing G.L.U.T. to Dev C++ By James Duran (email: vrok137@yahoo.com) ....
  20. [tutorial] Basics Of C Programming - Part 2
    (21)
    Ok, well here is the Second part of the tutorial i promised. Operators & Expressions in C
    Introduction In c the variable, arrays or
    function references are combined with operators to form expressions.
    Eg. C=A+B The data items that the operators act upon are
    called operands. Some operators require two operands will others
    require just a single operand to act upon. Types Of Operators : ....
  21. Pre Loader Tutorial For Flash
    Made by: Jordain (6)
    Simple pre loader tutorial with play button by: Jordain Joyce First of all open up flash then
    Create 4 Layers and in order name them: Actions
    Loader outline
    Loader Bar Content Then create 3
    frames for each layer. Lets start in the actions layer, for the first frame make it blank and the
    second frame make it blank also. Press F9 to open the actions panel (make sure you ....
  22. Using The Php Mail() Function For Images Or Attachments
    Can't find a decent tutorial! (6)
    I read the one mail() tutorial that was posted in the tutorial section and to my horror found that
    he had quoted almost verbatim from the PHP Manual off php.net, and made a comment about it, and also
    found that if you were new to PHP or the Manual that it was informative but not indepth enough for
    my tastes. This is not a tutorial although with the code that will be posted it might look like
    one, that is not its intent or purpose. I have searched and found many so called tutorials about
    MIME mail and boundries and all that but basically it either told me to use PHPMai....
  23. Photoshop Tutorial: Pencil Sketch
    (4)
    Ola a Todos /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />
    This tutorial will show you how to convert a photo in to a pencil sketch. Step 1 Open your photo
    in Adobe Photoshop. Step 2 Right click on Background layer and choose "Duplicate layer" Step
    3 Now, lets convert the new layer in to black and white. For this we'll use a shortcut
    CTRL+Shift+U, or just go to image->adjustments->desaturate Step 4 Duplicate a copy of the new
    Background layer, so that the new layer we will work on step 5 is above all others. St....
  24. Video Editing Tutorial
    Using VirtualDub (3)
    Video Editing Tutorial (using VirtualDub) Before I start with this tutorial please
    download VirtualDub from VirtualDub.org . Many of us want to save just a small portion of a video,
    discard unwanted scenes from a video or add a logo of your choice to the video. Its very easy in
    virtual dub. First open the video in virtual dub. Virtual dub opens all kinds of video files with
    exception of the wmv and asf format as these are patented by microsoft. But you can find a version
    which opens asf too on doom9.org . Opened Video The bottom buttons are the co....
  25. Need A Tutorial On Creating A Font
    (5)
    I'd like to create a font set, just unsure how to, can somebody possibly either create a short
    tutorial or point me in the right direction (Maybe google.com /biggrin.gif' border='0'
    style='vertical-align:middle' alt='biggrin.gif' /> ). Cheers,....
  26. Change Fonts On A S60 Phone [tutorial]
    (15)
    I didnt find a suitable catagory for this tutorial so posting it out here, Mods please find a
    suitable place for this if i am wrong. Allright, lets get started. Almost everyone now owns a
    Nokia, and out of that almost 70% use SymbianOS phones (S60). You can change the themes the
    wallpapers etc on your phone, but i assume that a few of you would like to change only the Font.
    Nokia uses its default font called the NokiaSans . This is hard coded and set in the ROM of your
    phone, so that whenever we format the phone, the same font is taken and used. Many of you might hav....
  27. C#.NET: Web Timer Control Tutorial
    C# & VB.NET (3)
    Web Timer Control C# Difficulty: Easy Time: 10 Minutes The aim of this tutorial is to create a
    Timer that works on web pages. Timers are a very useful control in Windows Applications but how can
    you use them in web pages. With the default controls you get in the .Net Framework there is not a
    Web Timer. This web timer can be used as a normal web control you will be able to drag and drop it
    onto Web Forms, and modify it using the properties window. This Timer Works using the JavaScript
    setTimeout() function which once the required time has elapsed unlike a Windows F....
  28. 3ds Max Tutorial #2-creating Reflective Materials
    (1)
    The next tutorial is based on creation of a reflective material in 3ds max. this tutorial will help
    u create a surface that reflects everything in sight. 1. Fire up 3dsmax. 2. Press 'm' 3.
    Change the box where u see 'Normal' i.e. material type. Change it to raytrace. 4. Change the
    colours to the colours you want. 5. In the maps section click the box next to reflection. 6. Select
    raytrace from the list. 7. Apply the material to any object. 8. Render the scene Voila!!! you have
    created a reflective material. You can also try.. 1. Using the mental ray r....
  29. 3ds Max Tutorial.
    Introduction to reactor. (7)
    Letter Collision Tutorial. This tutorial will help u make a basic collision in 3Ds Max using its
    inbuilt reactor feature. Requisites:- discreet 3Ds Max 7 (Does 6 have reactor?? I dunno....). Even
    the trial downloaded from discreets website will do. Time:- 20-30min. Skill Level :- Beginner (A
    basic knowledge of the menu items is a must for this tutorial) Introduction:- reactor is a plug-in
    for 3ds max that allows animators and artists to easily control and simulate complex physical
    scenes. reactor supports fully integrated rigid and soft body dynamics, cloth sim....
  30. How To Remove Bad Sectors Or Bad Clusters From HDD
    a tutorial for you all (18)
    hi friends, there is small tutorial to remove Bad Sectors from hdd to remove bad sectors you need a
    program named SeaMap now we start Start the SeaMap.exe software Set the option by typing SD and
    then press enter Press 1 then 0 or 1 to select drive Then press 2 and there will be a option (Y/N)
    press n for No Press Esc button one to go back to command line Type FD Type y for yes the Hdd will
    format the whole disk and removes bad sectors and partitions Now the computer has to be restarted,
    Restart your computer Partition your Hdd using fdisk and then format all partitio....

    1. Looking for psychostats, psychostats, tutorial, cs






*SIMILAR VIDEOS*
Searching Video's for psychostats, psychostats, tutorial, cs
Similar
Gimp Animation Tutorial - Read in the first part of the tut why i made another tut same as Lance
Here Are Some Great Php Tutorial Sites
How To Understand A Database Schema - A very nice and simple tutorial
Basic Html Tutorial - Made it myself, hope you like it.
Moving To Fedora 9 - Tutorial on how a newbie can move to using this fantastic OS Fedora 9,
Bulletproof Ftp Server Tutorial - BulletProof FTP Server Tutorial
Gimp Userbar Tutorial - Very Easy...
C/c++ -gdb Linux Debug Tool - Simple Gdb tutorial
Linux Beginners - Tutorial On Editors In Linux.
How To Download Videos From Youtube - A Tutorial designed to inform of how to download YouTube videos.
Safety - Anyone who knows a tutorial
Html Basic Tutorial - <!-- For beginners only -->
Php Tutorial: Making A Shoutbox - Requirements: PHP, MySQL
C# Tutorial : Lesson 7 - Creating Value Types & Reference Types - Part II
Ajax + Php + Sql = Simply Superb! ( With Visitor Tracking ) - A small tutorial to explain integrating php, ajax and MySQL Database
Photoshop Tutorial: Signature
Phpbb - Installation Tutorial ( For Newbies Based On Astahost Cpane)l - phpBB 2.0.22 installation Tutorial with basic steps.
Wireless: Bypassing Mac Filtering - Tutorial
Installing Glut To Dev C++ - A tutorial to install GLUT on Dev C++
[tutorial] Basics Of C Programming - Part 2
Pre Loader Tutorial For Flash - Made by: Jordain
Using The Php Mail() Function For Images Or Attachments - Can't find a decent tutorial!
Photoshop Tutorial: Pencil Sketch
Video Editing Tutorial - Using VirtualDub
Need A Tutorial On Creating A Font
Change Fonts On A S60 Phone [tutorial]
C#.NET: Web Timer Control Tutorial - C# & VB.NET
3ds Max Tutorial #2-creating Reflective Materials
3ds Max Tutorial. - Introduction to reactor.
How To Remove Bad Sectors Or Bad Clusters From HDD - a tutorial for you all
advertisement




Psychostats - Psychostats tutorial for cs



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE