주절주절

HTTP Connection Information Logging

This is to check if the connection information is correct for testing when using OpenAPI. Method values, host, POST values upon connection. [PHP] <? $log = $_SERVER['REQUEST_METHOD'].' '.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].' n'; foreach($_SERVER as $k => $v) { if($k=='HTTP_HOST') continue; if(substr($k, 0,5)!='HTTP_') continue; $log .= '$k: $v'." "; } $log .= " "; $post = array_map('urldecode', explode('&', file_get_contents('php://input')));...

Creating Short Links Using Google API

I needed a short link, so I created one using PHP. Simply register for the Google API and you're good to go. Usage: shorturl_google('original address', 'API key'); <?php function shorturl_google($url, $key) { $post = array('longUrl' => $url); $json = json_encode($post); $curlObj = curl_init(); curl_setopt($curlObj, CURLOPT_URL, 'https://www.googleapis.com/urlshortener/v1/url?key='.$key); curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curlObj, CURLOPT_HEADER, 0);...

Advertising using the Tenping API

I saw a Tenping ad on Facebook and decided to test it out with PHP. If we consider the overall sales through the revenue rankings on the Tenping site, I wonder if we can keep this running for long... If the results from the test are good, I'll write about various methods to utilize Tenping...

Editing a WordPress Theme

This is a method for editing WordPress themes by modifying backup files (referred to as child themes) without touching the original. To easily identify the child theme in use, create a new folder in the “wp-content/themes” directory by combining the theme names. (For example, if the original theme is “twentyfifteen”, create a folder named “twentyfifteen-child”)...

Error Installing Gnuwboard on AutoSet

An error occurred while installing Gnuwboard on the Windows server. I’m not sure about the latest version of AutoSet, but the one installed is ‘v 6.3.1’… (I can’t believe how outdated it isㅠ) Anyway, a '500 error' occurred when accessing the 'data' folder. Deleting the '.htaccess' file confirmed that it worked normally. Modified it to...

Removing PAGEFILE.SYS and HIBERFIL.SYS

Removing pagefile.sys (A file that uses hard disk as RAM when memory is insufficient) Control Panel – System – Advanced system settings Advanced tab – Settings Advanced tab – Change Uncheck the box for automatic management of paging file size for all drives No paging file – Settings hiberfil.sys (Temporary file for hibernation) Start –...

V3 False Positive 😢

The silly V3I only added EmbeddedWB, Memo, and IdTCPServer components in Delphi 7, but V3 Lite flagged it as malware 😢Always dealing with unnecessary false positives, and recent hacking incidents... tsk tskIt's frustrating to have to worry about this kind of stuff when creating public programs as a hobby 😢Uninstalling V3!