I am using justboil image upload plugin on tinyMCE. I am able to upload image but that image instead of being uploaded to target folder “media” is uploaded to htdocs folder (xampp), means it does not even get uploaded to my root folder tutorials
$config['img_path'] = `C:\xampp\htdocs\tutorials\media`;
$config['upload_path'] = $_SERVER['DOCUMENT_ROOT'] . $config['img_path'];
where my code is going wrong?