Month: January 2013
-
Assets:Precompile (Rake Aborted) – Heroku
Hey everyone, I ran into the following error over the weekend while trying to push to heroku: Running: rake assets:precompile rake aborted! could not connect to server: Connection refused Is the server running on host “127.0.0.1” and accepting TCP/IP connections on port 5432? This stackoverflow post helped to solve the issue. All you need to…
-
Browser Out of Date – JavaScript Plugin
Hey everyone, I’m about to launch a new site and was looking into a quick and easy way to advise users with older browsers to upgrade. A bit of a Google revealed Browser-Update.org. They have a simple script that you add to your site and it will not only inform them that their browser is…
-
Installing SQL Developer on Ubuntu – make-sqldeveloper-package chmod: missing operand after `755′
Hey everyone, I was following a guide while trying to install SQL Developer on Ubuntu, however I ran into the following error: make-sqldeveloper-package chmod: missing operand after `755′ To fix it, simply change line number #381 in ‘/usr/bin /make-sqldeveloper-package’ as follows: Original ${FIND} “${OPTDIR}” ! ( -type d -o -name “*.jar” ) |${XARGS} ${XARGS_OPTS}…
-
Change Current Day Color – jQuery FullCalendar
Hey everyone, Just a quick post on how to change a few of the styles in FullCalendar. All you need to do is add these after the default styles are loaded: Current Day Background Color .fc-today{ background-color: blue; } Change Calendar Background Color #calendar .fc-content{ background-color: #FFFFFF; font-size: 80%; } Add Box Shadow to Events…
-
How to Block PayPal eCheque Payments
Hey everyone, Just a quick post on how to block eCheque payments. These are payments that take up to seven days to process and be approved. The site I am currently working on is in no position to reserve services for such a long period of time, so the request has been made to block…