36

Going nuts over a cUrl error in PHP "Protocol HTTPS not supported or disabled in libcurl", recompiling, reinstalling curl, no result...

Just to find out 3h later that the curl request URL had a " " (space) right before "HTTPS://...".

FML .

Comments
  • 1
    Thanks ! :D I've got over it.
    Tip for myself : check everything b4 you get deeper. xD
  • 4
    Oh the hours I've wasted because of leading or trailing spaces...
  • 2
    Last week my colleague and I spent 2 hours trying to debug a call to a SQL database procedure that wasn't working as expected and filling up the log with errors. I eventually discovered I'd missed a comma between two of the variables in the SQL statement.

    She beat on my arm for a couple of minutes for being a moron. Rightly so.
  • 1
    @LMCodes I feel you my brother in codes. PL/SQL procedures and functions were a nightmare when you had a small, tiny typo in them.
  • 1
    @xSkyrippee SQL just gets away from me every time. I know it's relatively simple, I know it should be easy, and it's always dead simple to read on my colleagues screen. But put me in charge of it and you'll see some proper garbage.
  • 2
    This.
Add Comment