Posts

Showing posts from 2009

Como entrar em contato com o Mercadolivre

O Mercadolivre é um bom local para se vender de tudo. Porém o serviço de atendimento é desrespeitoso. É impossível falar com eles e isso é assim de propósito. Achei um formulário de contato no site. O endereço é: http://www.mercadolivre.com.br/jm/ml.faqs.portalFaqs.FaqsController?axn=frmContact&faqId=6031&categId=PDEN Vale a pena ligar para o 0800-8911897 só pra criar algum transtorno. É o telefone de uma empresa que presta serviço de cobrança para o MercadoLivre. Eles devem receber ligações de pessoas iradas porque nem o nome eles dizem. Veja o meu roteiro para pertubá-los. Sendo muito educado e polido, fale com a voz mais macia que você tiver: 1 - Ligue o 0800-8911897 2 - Pergunte o nome do atendente 3 - Pergunte o nome da empresa 4 - Pergunte como entrar em contato com o Mercadolivre. O atendente vai te dizer que tem um formulário no site. 5 - Peça ajuda ao atendente. Diga que você já encontrou o formulário mas que não há forma de entrar em contato. O atendente vai te dar al

Installing Sunray II server software on Centos 5.3

I spent many weeks trying to install Sunray server software on Linux. I was NOT able to make it work with Centos 5.3 x86_64. Maybe this is related somehow to GDM package but it did not work. It worked when using i386 version of Centos. See the step by step guide. 1 - Install Centos 5.3 i386 1.1 - If you have more than 3GB of installed RAM, run as root: yum -y install kernel-PAE 2 - Run as root: yum -y update reboot 3 - Download: srss_4.1_linux.zip from http://www.sun.com/software/sunray/getit.jsp jre-6u13-linux-i586-rpm.bin from http://www.java.com apache-tomcat-5.5.27.tar.gz from http://tomcat.apache.org/ 4 - run as root: yum install glib dhcp openldap-clients openldap tftp-server libXp openmotif22 openssl compat-libstdc++-33 libusb-devel compat-openldap yum groupinstall "Development Tools" yum install kernel-devel 5 - run as root: cd /usr/lib ln -sf libldap-2.3.so.0.2.31 libldap.so.199 ln -sf libgdbm.so.2.0.0 libgdbm.so.3 ln -sf liblber-2.3.so.0.2.31 liblber.so.199 6 - inst

Download Centos DVD iso

Looking for a place to download Centos DVD iso without bittorrent? Check: http://mirror.switch.ch/ftp/mirror/centos/ Click on the desired version, then on isos, and choose the arch. For example version 5.3 dvd isos are at: http://mirror.switch.ch/ftp/mirror/centos/5.3/isos/i386/CentOS-5.3-i386-bin-DVD.iso http://mirror.switch.ch/ftp/mirror/centos/5.3/isos/x86_64/CentOS-5.3-x86_64-bin-DVD.iso

Installing Moodle on Centos 5

I assume that both apache(http) and mysql(database) are on the same server. This is not needed. 1 - Go to moodle.org and download latest moodle*.tgz. cd /tmp wget http://download.moodle.org/stable19/moodle-weekly-19.tgz #Do not use this link. Get latest file from http://www.moodle.org/ 2 - As root: yum install php php-mysql httpd mysqlclient10 mysql-server php-gd php-mbstring php-xmlrpc 3 - If your mysql installation is fresh, you will need to assign a root password to it. service mysqld start /usr/bin/mysqladmin -u root password 'newpassword' may assign newpassword as the new mysql root password. Replace newpassword to a safer password. 4 - Start services and be sure that it will be started automatically. service httpd start service mysqld start chkconfig httpd on chkconfig mysqld on 5 - Create a user moodle with a good password that has all privileges on the table moodle. I suggest that you download and install PhpMyAdmin to do it. Try the latest 2.xx.x.x version as it will w