Skip to main content

Posts

Showing posts from January, 2019

Opencart - configuration to send emails with Gmail and google apps

How to configure opencart with a Gmail account and google apps Gto to System-> Settings Click on the "Mail" Tab Configure with the following option (change user and password accordingly): Mail Protocol: SMTP SMTP Host: ssl://smtp.gmail.com SMTP Username: youremail@gmail.com SMTP Password: yourpassword SMTP Port: 465 SMTP Timeout: 6 Remember also to change the main email address in "general" (tab) settings with youremail@gmail.com (and not other emails otherwise they could be blocked).

ruby - missing libcurl on windows 10

On windows 10 when you get the follosing error running your ruby script LoadError: Could not open library 'libcurl': The specified module could not be found. Could not open library 'libcurl.dll': The specified module could not be found. Could not open library 'libcurl.so.4': The specified module could not be found. Could not open library 'libcurl.so.4.dll': The specified module could not be found you can solve the problem by downloading the latest curl binary for win x32 or x64 https://curl.haxx.se/download.html (ex. https://curl.haxx.se/windows/dl-7.63.0/curl-7.63.0-win64-mingw.zip ) and copy the /bin/ folder from the zip to your [ruby installation path]/bin In the case of the 64 bit version of curl also rename libcurl-x64.dll to libcurl.dll