RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineI recently had a problem where I could not get any custom HTTP Headers passed to my PHP Script. It seems that Apache 2 running PHP 7 with FCGID would not allowing and removing or tripping all custom HTTP Headers.…
How To: Virtualmin CentOS Upgrade PHP 5.3 to 5.4
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLine1. Enable the REMI repo and Upgrade software yum –-enablerepo=remi install mysql The reason for using install mysql is that the yum software utility will install/upgrade all dependencies to ensure that all the software pieces work together. It will also…
How to: QR Code – Multi Platform – Apple App Store and Android Google Play Store – redirect PHP
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineBelow is a simple PHP script to detect the users device type and then redirect them to the appropriate Apple iTunes App Store or Google Play store – in my case I actually just give the Android User the APK…
SOLVED: APK download file size not shown – no download percentage – SetEnv – htaccess – PHP Content-Length – Apache Server – CentOS
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineWhen trying to host an APK file on my server I was able to get it to download fine – but I was not able to get the file size to show in the download – including showing the download…
How to: CentOS, Virtualmin – htaccess rewrite index.php, redirect .php to no extension, rewrite non .php to .php
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineHere is a quick guide on how to 1. rewrite index.php to root 2. redirect .php to no extension (non .php) 3. rewrite non .php to .php using a .htaccess file To do this the order of the rules in…
How to: CentOS 6 Virtualmin Logwatch Install and Configure – Mail to Email – Disable Service Monitoring – Debug and fix – MySQL and HTTP Error
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineThis How to contains instructions on how to install and configure Logwatch 7.4.0 on CentOS 6 running Virtualmin, and how to – Configure Mail to Email – Disable Service Monitoring – Debug and Fix MySQL and HTTP Error Checking: 1. Install…
How to: CentOS Virtualmin PHPMyadmin Disable Root Logins and Force SSL
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineAfter you have installed phpmyadmin with virtualmin into a domain there are two things you need to change in the phpmyadmin config file for this to work The phpmyadmin file can be found at /home/domain/phpmyadmin/config.inc.php – or what ever you…
How to: CentOS 5 Virtualmin Joomla 2.5 Memcached PHP client library
RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineInstalling and setting up the Memcached server Memcached is available as a ready-made package in the Remi repository. So lets install the Remi repository first: cd /etc/yum.repos.d wget http://rpms.famillecollet.com/enterprise/remi.repo Memcached server install yum –enablerepo=remi install memcached Edit and use the…