Viewing 21 to 30 of 93 items
Archive | Server RSS feed for this section

Centos – Install latest GIT version

I found this nice and easy-to-follow guide on how to download the GIT source and compile it yourself (and install it). If the accepted answer does not give you the version you want, try the following instructions: http://tecadmin.net/install-git-2-0-on-centos-rhel-fedora/ (And pasted/reformatted from above source in case it is removed later) Step 1: Install Required Packages Firstly we  Full Article…

0

Apache and httpd running but I cant see my website

If you have installed apache on my server however you can not browse your website through your server's IP. Here is some reasons: firewall, iptables configuration apache listen address / port More information is needed about your configuration. What distro are you using? Can you connect via 127.0.0.1? If the issue is with the firewall/iptables, you  Full Article…

0

Install Latest Apache, MariaDB 10.1 and PHP on RHEL/CentOS 7/6

This how-to guide explains how to install the latest version of the Apache 2.4, MariaDB/MySQL 5.5, and PHP 5.5/PHP 5.6 along with the required PHP modules on RHEL / CentOS 7/6 and Fedora 18-24. Install Apache, MySQL/MariaDB and PHP on CentOS/RHEL/Fedora This combination of operating system (Linux) with web server (Apache), database server (MariaDB/MySQL) and server-side scripting language (PHP) is known as  Full Article…

0

Centos – Subscription-manager: command not found

If you see this message when you are installing Remi, you should follow this way For Centos 6 wget -O /etc/yum.repos.d/epel-rhsm.repo http://repos.fedorapeople.org/repos/candlepin/subscription-manager/epel-subscription-manager.repo yum install subscription-manager -y

0

Error when using REGEXP in mysql

If you face this issue "exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1139 Got error 'this version of PCRE is compiled without UTF support at offset 0' from regexp'" It means your web server doesn't support UTF-8. I had the same error after an upgrade from ubuntu 14.04 to 16.04. I'm using  Full Article…

0

Apache – php files can’t work in SSL mode

When you install SSL, if you face the issue: php files can't work when you enable SSL for your website.  This issue doesn't occur in http protocol, it only occurs in https protocol. You can fix this issue by adding this line into your <Directory>….  AddHandler application/x-httpd-php .php Hope it will help you ^^

0

Magento – How to optimize

Magento’s cache system Magento & Zend Framework Before we go on with various optimization points, it is needed for everyone to understand truly and in depth the Magento two level cache mechanisms. The Magento cache system inherit from Zend Framework‘s (ZF) one. Nothing really surprising there, Yoav has always been close to Zeev & Andy and like this Framework  Full Article…

3

Ubuntu Warning: require_once(HTTP/Request2.php)

If you see this error when you access your source code: Warning: require_once(HTTP/Request2.php) It is saying that you lack some PHP extensions. You need to install 2 extensions: Pear and Http_request2 You can do it by the following commands: sudo apt-get install php-pear sudo pear install http_request2  

0

Bulk Senders Guidelines – Increase your sending success rate

Troubleshoot delivery issues with Postmaster Tools Gmail Postmaster Tools provides senders with metrics on parameters such as reputation, spam rate, feedback loop, etc. It can help you check compliance to the Gmail bulk sender guidelines, as well as identify issues that can cause trouble with the spam filter. We've received inquiries from bulk senders who'd like  Full Article…

0

How to add a DMARC record

Create the record Once SPF and DKIM are in place, you configure DMARC by adding policies to your domain's DNS records in the form of TXT records (just like with SPF or ADSP). Important: Before creating a DMARC record for your Google Apps domain, you must first set up DKIM authentication. If you fail to set up  Full Article…

1