Hotel - Management System
http://blogs.elastix.org/en/2010/03/how-to-hotel-management-system/
1) Installing the base systemFirst you’re going to need to ssh in to your Elastix PBX System.Then, run the following:
cd /var/www/htmlwget http://www.kefa.it/hotel.tar.gztar zxvf hotel.tar.gzrm hotel.tar.gzcd ...
HD Get Full By Log Files
Access and Verify Log Folder
cd /var/log/asterisk/ ls -lah
Removed / Delete Log Files (As You want)
rm LOGFILE NAME
...
How to list all DND-enable extensions
Source: http://www.mehrdust.com/archives/how-to-list-all-dnd-enable-extensions
in linux prompt run:
# asterisk -rx “database show DND”
# asterisk -rx “database show” | grep “/DND/”
# asterisk -rx "database show DND"
/DND/1002 : YES
/DND/1004 : YES
/DND/1006 ...
How to add a Contact Us form in Magento
Magento includes contact form functionality by default. A link to a contact form can usually be found in the footer of your Magento installation.
Of course, ...
How to disable the Compare products functionality
Edit app/code/core/Mage/Catalog/Helper/Product/Compare.php and change the following code:
public function getAddUrl($product)
{
return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product));
}
to
public function getAddUrl($product)
{
//return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); return false;
}
Edit ./app/design/frontend/base/default/layout/catalog.xml (if you are using a different ...
How to setup network after RHEL/CentOS 7 minimal
https://lintut.com/how-to-setup-network-after-rhelcentos-7-minimal-installation/
Comandos básico de network en CENTOS 7
nmcli d
nmtui
service network restart
...