Related Posts
WordPress: Cannot create directory error, got everything chmoded to 777?
So you went as far as chmod’ing your entire folder structure to 777 (very unsafe), you’ve hacked wp/wp-admin/includes/file.php return new WP_Error( ‘mkdir_failed_ziparchive’, __( get_current_user() . ‘ Could not create directory. (‘.$_dir.’)’ )… to print out exactly what directory it cannot create and what user is trying to create the folder, everything is correct, yet it […]

How to create a list that holds different object types using `void*` in C.
I remember being in school back around 1998 and not knowing enough about C to do this. After coding in other languages, then going back to C++ and understanding at a lower level how references and pointers work, this was pretty easy to figure out. In this exercise I store elements of different types in […]
ubuntu/debian abort: error: _ssl.c:504: error:14090086:SSL [FIXED]
Trying to clone or update a repo, and you get this error? [bash] hg pull -u abort: error: _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed [/bash] Quick fix, go to .hgrc and put this on your [web] section [bash] [web] cacerts= [/bash] Fixed, remember to leave a tip if you wasted hours on this and I just […]