ISPConfig 3.1 Automated Installation

This article is about Automated Installation of ISPConfig3.1 on Ubuntu 18.04 and the issue with Roundcube. The installation steps can be found here and very well laid down – https://www.howtoforge.com/tutorial/ubuntu-ispconfig-automated-install-script/ I installed it on a Linode instance (the $10 instance). The first thing I found is the softwares is better updated manually prior to the… Continue reading ISPConfig 3.1 Automated Installation

CKEditor – WYSIWYG Editor for Web

This is a quick guide about integrating CKEditor Download CKEditor from here – https://ckeditor.com/ckeditor-4/download/ I downloaded the full version. Call the scripts in your code <script src=”ckeditor_full/ckeditor.js”></script> … … <textarea required id=”content” name=”content”><?php echo strlen($content) ? $content : “” ?></textarea><br/> <script> var editor = CKEDITOR.replace(‘content’); //CKEDITOR.instances[‘content’].setData(“”); CKFinder.setupCKEditor(editor); //see below – this is for the CKFinder… Continue reading CKEditor – WYSIWYG Editor for Web

Web 3D experiments with ThreeJS

Here is an experiment where a fixed background (or texture) has been used behind an interact-able 3D model. The model was created using Blender. From Blender (or any other 3D software) export the model as FBX file. The code formatting is getting horribly misaligned when pasted here. So here is the whole folder. Run the… Continue reading Web 3D experiments with ThreeJS