- Install latest xampp
- Check installed php version
- Download desired php versions
- In my case, I will add php5.6 version
- Make a folder in xampp root for php5.6 php. For example, php5_6
- Copy downloaded php5.6 files and folders to php5_6
- Open php.ini in php5_6 folder. (if php.ini not exist, rename php.ini-production to php.ini)
- Find and uncomment following lines
extension_dir = “ext”extension=php_bz2.dll
extension=php_curl.dll
extension=php_fileinfo.dll
extension=php_gd2.dll
extension=php_gettext.dll
;extension=php_gmp.dll
;extension=php_intl.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_ldap.dll
extension=php_mbstring.dll
extension=php_exif.dll ; Must be after mbstring as it depends on it
extension=php_mysql.dll
extension=php_mysqli.dll
;extension=php_oci8_12c.dll ; Use with Oracle Database 12c Instant Client
;extension=php_openssl.dll
;extension=php_pdo_firebird.dll
extension=php_pdo_mysql.dll
;extension=php_pdo_oci.dll
;extension=php_pdo_odbc.dll
extension=php_pdo_pgsql.dll
extension=php_pdo_sqlite.dll
;extension=php_pgsql.dll
;extension=php_shmop.dll - Open httpd_xampp.conf and add following. Please check your xampp php path and add desired listen port. Here Listen port is 8056.
ScriptAlias /php5_6/ “C:/xampp/php5_6/”
<Directory “C:/xampp/php5_6”>
AllowOverride None
Options None
Require all denied
<Files “php-cgi.exe”>
Require all granted
</Files>
</Directory>Listen 8056
<VirtualHost *:8056>
UnsetEnv PHPRC
<FilesMatch “\.php$”>
php_flag engine off
SetHandler application/x-httpd-php5_6
Action application/x-httpd-php5_6 “/php5_6/php-cgi.exe”
</FilesMatch>
</VirtualHost> - Check whether the port work with php versions
http://localhost/dashboard/phpinfo.php
http://localhost:8056/dashboard/phpinfo.php
DB Error: Column ‘first_name’ cannot be null
DB Error: Column ‘first_name’ cannot be null
Increase “max_input_vars” from 1000 to your desired count.
This will solve the issue.
Website is undergoing some maintenance and will be back soon.
Please note that our website is undergoing some technical maintenance. We’ll be back soon.
We thank you for your patience and hope to see you soon!
<html>
<head>
</head>
<body cz-shortcut-listen="true">
<div style="position:absolute;left:0;right:0;top:20%;bottom:0;height: 100vh;text-align: center;">
<h1>Website is undergoing some maintenance and will be back soon.</h1>
Please note that our website is undergoing some technical maintenance. We’ll be back soon.
We thank you for your patience and hope to see you soon!
</div>
</body>
</html>
Upgrading and Downgrading DirectAdmin users.
Upgrade a User to a Reseller. Assume that user name is ‘staysafe’.
cd /usr/local/directadmin/scripts ./user_to_reseller.sh staysafe
Upgrading a Reseller to an Admin. Assume that reseller name is ‘bdtopten’.
cd /usr/local/directadmin/data/users/bdtopten perl -pi -e 's/usertype=reseller/usertype=admin/' user.conf cd /usr/local/directadmin/data/admin perl -pi -e 's/^bdtopten\n//' reseller.list echo bdtopten>> admin.list
Downgrading a Reseller to a User. Assume that reseller name is ‘kitedubd’ and ‘kitedubd’ has no users.
- Change user type at user.conf
vi /usr/local/directadmin/data/users/kitedubd/user.conf
- Change as follows
usertype=user
- Update admin reseller list, remove ‘kitedubd’
vi /usr/local/directadmin/data/admin/reseller.list
- Update admin user list, add ‘kitedubd’
vi /usr/local/directadmin/data/users/admin/users.list
- Done!
Empty Sent-folder : Roundcube | DirectAdmin
Go to
vi /usr/local/directadmin/custombuild/options.conf
Change webapps_inbox_prefix ‘no’ to ‘yes’
webapps_inbox_prefix=yes
Restart roundcube
cd /usr/local/directadmin/custombuild ./build roundcube
Check Roundcube.
- « Previous Page
- 1
- …
- 55
- 56
- 57
- 58
- 59
- …
- 92
- Next Page »