Neuroscience: How to explain music for the masses :)

August 1st, 2009
Bookmark and Share

oscommerce’s paypal module problem with downloads

May 31st, 2009

I struggled a lapse of time today because my new customer’s store was delivering downloadable products for pending orders, using the standard_ipn module made for oscommerce rc1.

The whole problem is that the original Paypal_ipn module for oscommerce (since version 2.2 MS2 as far as I could track) DOES NOT  have an option to changes statuses when an order was approved (completed).

It simply have two statuses: Preparing (before the customer went to the Paypal gateway) and Acknowledged (after the customer returned from the gateway). So, this customer’s module was set to change the order’s status to “download available” when the module was just saying “Acknowledged”.

The fix: add a new setting to the module and edit the file ext/modules/payment/paypal/standard_ipn.php to account this new order status.

(if you don’t know what I mean, hire a good programmer to do it for you or contact me and I can help you for a small fee.)

Bookmark and Share

“esta página pode conter um risco de segurança não especificado. deseja continuar?”

May 17th, 2009

O erro do título aparece frequentemente quando preciso dar um clique direito, copiar arquivos ou outras ações em uma pasta de rede. A solução está no link abaixo:

http://www.howtogeek.com/howto/windows-vista/disable-the-annoying-this-page-has-an-unspecified-potential-security-risk-when-using-files-on-a-network-share/

Bookmark and Share

Cartório de Caarapó

April 27th, 2009

De vez em quando, temos boas surpresas.

Gostaria de deixar meu agradecimento ao sr Ronaldo Mantovani, do Cartório de registro de Caarapó, MS. Normalmente, nós que somos do “Sul Maravilha” (como diria o personagem Zeferino), pensamos que os serviços nos estados de SP, RJ, etc deveriam ser melhores, o que frequentemente se mostra um erro.

Explicando: precisei de uma cópia de uma certidão de nascimento, a ser enviada para o Japão com urgência. Se fosse atrás de despachantes, seguramente teria um monte de burocracia, demorando semanas para chegar alguma coisa aqui.

Pois bem, dizem que perguntar não ofende, então telefonei ao cartório, falei com o sr Ronaldo, explicando a situação. Ele me disse que poderia emitir o documento, escanear e enviar imediatamente, ao custo de R$25,00 da emissão da 2a via, mais correio, que me custou R$8,00 (carta registrada internacional). Somando-se R$8,00 do DOC, o custo para obter esse documento foi de R$41,00 no total, e recebi a cópia do documento em dois dias em meu email. Agora estou apenas aguardando que o correio me entregue o original.

Com isso, meu problema foi resolvido, sem atraso e sem enrolação.

Para quem precisar, o telefone do Cartório de Caarapó é 0×67 3453-1400, email: cartorio1oficiocaarapo@yahoo.com.br

Fica aqui meu agradecimento ;-)

Bookmark and Share

Antivírus (Avast4Home)

April 11th, 2009

Sempre me perguntam qual o melhor antivírus. Para não me extender muito, geralmente digo o antivírus que estou usando no momento, o que pode mudar de uma hora para outra.

Explicando melhor:

Um antivírus deve ser eficiente, atualizar constantemente e de preferência, usar poucos recursos de seu computador. Segundo esses princípios, o antivírus de minha preferência desde 2005 é o Avast4Home, que além das razões acime, é gratuito para uso não comercial.

É possível baixar uma versão para seu idioma em http://www.avast.com/eng/download-avast-home.html, procure na lista no final da página.

Para usar a versão gratuita é necessário efetuar um registro no site da Alwil, que pode sser acessada em http://www.avast.com/por/home-registration.php. Mude o idioma do site para potuguês usando o botão no topo da página.

Caso você não queira fazer o registro, pode simplesmente pedar o serial aqui: W83324142H1400A0211-1ZMK9XCY (válido até 1/jun/2010)

Bookmark and Share

“Farofa” de okara

March 2nd, 2009

receita de okara com baixa caloria

Click to continue reading ““Farofa” de okara”

Bookmark and Share

How to change the upload limit for an HTML form in PHP?

February 27th, 2009

I created an upload function for one of my scripts, and had a problem with the maximum size.So the steps to fix this situation are:

Change the .htaccess for the directory containing the upload script, adding the lines:

# Change upload setting to allow larger uploads
php_value upload_max_filesize 41M
php_value post_max_size 42M
php_value max_execution_time 400
php_value max_input_time 400

Important: the php_value post_max_size must be greater than php_value upload_max_filesize, since any upload will be part of the post variables.

In case you get an “Error 500: Internal server error” after placing the above lines in the .htaccess, it probably means that you server’s configuration is too restrictive.

Open your httpd.conf (or apache2.conf), look for a section such as

  ...
    AllowOverride Indexes AuthConfig Limit FileInfo
  ...
 
    Deny from all

and add “Options” to the allow override directive, as:

  AllowOverride Indexes AuthConfig Limit FileInfo Options

Also, if you don’t have it, add:

    Deny from all

to the same section. This will prevent the possibility of any file beginning with .ht* to be served o the browser, even if you forget to change it’s permissions.

Bookmark and Share

Setting a default charcode for an Apache2 webserver

February 2nd, 2009

If you have problems in your Apache (or Apache2) server not showing ISO characters in your webpages, even if the charset is set in the pages, it’s probably a missing line in your httpd.conf file.

In Apache2 servers, the file is at /etc/apache2/apache2.conf

Open it and look for

#AddDefaultCharset ISO-8859-1"

and remove the # character. (this means uncommenting the line, for the newbies :)

Restart the server by typing:

sudo /etc/init.d/apache2 restart

And your webpages shoud now look good.

Bookmark and Share

Setting up a webserver with a ISP Control Panel

February 1st, 2009

Setting up a webserver
I use to set my servers following the instructions from howtoforge, but there are a few missing settings due to my language:

Bookmark and Share

how to mount ext2 / ext3 filesystems under Windows?

February 1st, 2009

I needed to mount an ext3 filesystem in my windows, in order to share some files (my development scripts and databases) from my Windows setup and my Debian install.

Falko Timme has presented us another great tutorial about this:
http://www.howtoforge.com/access-linux-partitions-from-windows

Bookmark and Share

WordPress Loves AJAX