plesk mod_suphp php tmp
- No Comments
- Nov, 29, 2009
- Angelo Schalley
- Plesk Linux
create a tmp directory in you sites root
place a file php.ini in your sites root and add the following content :
allow_url_fopen=off
upload_tmp_dir = “/tmp”
session.save_path = “/tmp”
redirect to another page with timer
- No Comments
- Nov, 29, 2009
- Angelo Schalley
- html / php
<HTML>
<script>
<!–
function autoChange()
{
var timeID = setTimeout(“location.href= ‘https://www.domain.com’”, 3000)
}
//–>
</script>
<BODY onLoad=”autoChange()”>
Deze pagina is verhuisd naar https://www.domain.com<BR>
Uw webbrowser zou dit automatisch moeten doorsturen.<BR>
Mocht uw browser dit niet doen, klik dan <A HREF=”http://www.domain.com”>hier</A> om verder te gaan.
</BODY>
</HTML>
Read more on redirect to another page with timer…
basic setup enterprise iscsi target centos
- No Comments
- Nov, 26, 2009
- Angelo Schalley
- Linux
first of all : yum update -y
reboot
yum install kernel-devel openssl-devel gcc rpm-build
mkdir /usr/src/iscsitarget
mkdir /data/iscsidisks
cd /usr/src/iscsitarget
wget “http://downloads.sourceforge.net/project/iscsitarget/iscsitarget/1.4.19/iscsitarget-1.4.19.tar.gz?use_mirror=kent” or get the latest on sourceforge
tar xfz iscsitarget-1.4.19.tar.gz
Read more on basic setup enterprise iscsi target centos…