Welcome to the University of Abertay CCT Student Linux Server

Getting Access to CCT Student

CCT Student is available to all registered students of the University.

In order to use CCT Student you must get your account registered by the helpdesk. Once this is done you can access KYDD via ssh or X11 from the labs.

Client Software

PuTTY

For a secure ssh session Putty has been installed in specialist labs

Filezilla

For a secure ftp session Filezilla has been installed in specialist labs
host is sftp://cctstudent.abertay.ac.uk, username and password are your usual credentials

Accessing your webpage

Your web pages on CCT Student can be accessed from:
http://cctstudent.abertay.ac.uk/~USERNAME
where USERNAME is replaced with your username (the tilde ~ must be used!)

How do I set error reporting in my PHP scripts?

Add the following to your php script to turn on error reporting:

ini_set("display_errors", 1);
error_reporting(E_ALL);

blue line