Viewing 71 to 80 of 93 items
Archive | Server RSS feed for this section

Error! Some required system tools when trying to apply Magento patches via SSH

I have been trying to apply some Magento patches via SSH (SUPEE-5344 and SUPEE-1533) from the Magento Community Edition download page (https://www.magentocommerce.com/products/downloads/magento/) I am running in a SSH session: sh PATCH_SUPEE-1533_EE_1.13.x_v1-2015-02-10-08-18-32.sh but keep getting the following error: Error! Some required system tools, that are utilized in this sh script, are not installed: Tool(s) "patch" is(are) missed, please install it(them). I have  Full Article…

0

Fix for Git error: “fatal: Unable to find remote helper for ‘http’”

This error is most commonly caused by Git being compiled without support for OpenSSL or Expatlibraries. The solution is to build Git yourself. It looks like not having (lib)curl-devel installed when you install git can cause this. If you install (lib)curl-devel, and then rebuild/install git, this should solve the problem: $ yum install curl-devel Step 1 – Install OpenSSL  Full Article…

0

Caching your GitHub, Gitlab password in Git

  If you're cloning GitHub repositories using HTTPS, you can use a credential helper to tell Git to remember your GitHub username and password every time it talks to GitHub. If you clone GitHub repositories using SSH, then you authenticate using SSH keys instead of a username and password. For help setting up an SSH connection, see Generating SSH  Full Article…

0

Executing cron job for Magento use Cpanel

Cpanel cron jobs not working using magento? PHP Optional flags are sometimes required for a PHP cron job: php -q /home/username/public_html/cron.php   SSH Command to run a code script cron job: /bin/sh /home/username/public_html/file.sh  

0

View Linux version

You can use those commands below: cat /etc/*release* cat /etc/redhat-release

0

Install Epel for Centos 6

Install Epel for Centos 6. wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm

0

Install Epel and php mcrypt for centos 7

Install Rpel and php mbcrypt for centos 7 Epel: yum install http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm yum install php-mcrypt*

0

[CentOS-devel] Delta RPMs disabled by default?

[CentOS-devel] Delta RPMs disabled by default? You did a minimal install so the package selection you got is, err, minimal. You can enable delta rpms by installing the binary it needs and told you about. Running:   yum install deltarpm

0

Enable mod_rewrite in Nginx

How to enable mod_rewrite in Nginx? You need to add the following line to Nginx configuration file: location / { try_files $uri $uri/ /index.php?q=$request_uri; }

0