Kommiku 2.3 support Batch upload using file uploader . ??
Test it on LOCALHOST before using on Website
Here is whole code ??
<style>
.ajax-file-upload-statusbar{border:1px solid #0ba1b5;margin-top:10px;width:400px;
margin-right:10px;margin:5px;-moz-border-radius:4px;-webkit-border-radius:4px;
border-radius:4px;padding:5px 5px 5px 5px}.ajax-file-upload-filename{width:100%;height:auto;
margin:0 5px 5px 10px;color:#807579}
.ajax-file-upload-progress{margin:0 10px 5px 10px;position:relative;width:250px;border:1px solid #000;padding:1px;
border-radius:3px;display:inline-block}
.ajax-file-upload-bar{background-color:#38B63C;width:0;height:20px;border-radius:3px}
.ajax-file-upload-percent{position:absolute;display:inline-block;top:3px;left:48%}
.ajax-file-upload-red{-moz-box-shadow:inset 0 39px 0 -24px #e67a73;-webkit-box-shadow:inset 0 39px 0 -24px #e67a73;
box-shadow:inset 0 39px 0 -24px #e67a73;background-color:#e4685d;-moz-border-radius:4px;-webkit-border-radius:4px;
border-radius:4px;display:inline-block;color:#fff;font-family:arial;font-size:13px;
font-weight:normal;padding:4px 15px;text-decoration:none;text-shadow:0 1px 0 #b23e35;cursor:pointer;vertical-align:top}
.ajax-file-upload-green{background-color:#38B63C;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;margin:0;
padding:0;display:inline-block;color:#fff;font-family:arial;font-size:13px;font-weight:normal;padding:4px 15px;
text-decoration:none;cursor:pointer;text-shadow:0 1px 0 #5b8a3c;vertical-align:top}
.ajax-file-upload{display:inline-block;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#599bdc),color-stop(100%,#3072b3));background:-moz-linear-gradient(center top,#599bdc 0,#3072b3 100%);-webkit-box-shadow:0 1px 0 0 #7dc0ff inset,0 -1px 0 0 #1a3d5e inset,0 2px 2px 0 #d4d4d4;-moz-box-shadow:0 1px 0 0 #7dc0ff inset,0 -1px 0 0 #1a3d5e inset,0 2px 2px 0 #d4d4d4;box-shadow:0 1px 0 0 #7dc0ff inset,0 -1px 0 0 #1a3d5e inset,0 2px 2px 0 #d4d4d4;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;text-shadow:0 1px 0 #424242;padding:10px 20px;border-color:#295c8c;border-width:1px;border-style:solid;font-family:Lucida Grande;font-size:14px;color:#fff;cursor:pointer;width:100px}
.ajax-file-upload:hover{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#82bbf0),color-stop(100%,#3072b3));background:-moz-linear-gradient(center top,#82bbf0 0,#3072b3 100%)}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="/uploader/jquery.uploadfile.min.js"></script>
<div id="mulitplefileuploader">Upload</div>
<div id="status"></div>
<?php
//If directory doesnot exists create it.
$output_dir = UPLOAD_FOLDER.$chapter['folder'];
if(isset($_FILES["myfile"]))
{
$ret = array();
$error =$_FILES["myfile"]["error"];
{
if(!is_array($_FILES["myfile"]['name'])) //single file
{
$fileName = $_FILES["myfile"]["name"];
move_uploaded_file($_FILES["myfile"]["tmp_name"],$output_dir. $_FILES["myfile"]["name"]);
//echo "<br> Error: ".$_FILES["myfile"]["error"];
$ret[$fileName]= $output_dir.$fileName;
}
else
{
$i = count($page_list);
foreach ($_FILES["myfile"]["error"] as $key => $error) {
$i++;
if ($error == UPLOAD_ERR_OK) {
$tmp_name = $_FILES["myfile"]["tmp_name"][$key];
$name = $_FILES["myfile"]["name"][$key];
move_uploaded_file($tmp_name, "$output_dir/$name");
$db->page_create('',$i,$name,$pubdate,'',$i,$series['id'],$chapter["id"],'');
}
}
}
}
echo json_encode($ret);
}
?>
<script>
$(document).ready(function()
{
var settings = {
method: "POST",
allowedTypes:"jpg,png,gif,doc,pdf,zip",
fileName: "myfile",
multiple: true,
uploadButtonClass:"ajax-file-upload-green",
onSuccess:function(files,data,xhr)
{
$("#status").html("<font color='green'>Upload is success</font>");
},
onError: function(files,status,errMsg)
{
$("#status").html("<font color='red'>Upload is Failed</font>");
}
}
$("#mulitplefileuploader").uploadFile(settings);
});
</script>
]]>
Everytime i dump chapters, it says “Rar function does not exist on this server. You won’t be able to Extract Rar Files without the Rar Module.”. Please help me. Thanks
]]>Hello,
Can you give me a Script for call the Series/Chapter title & seriesOption dropdown menu?
I will use that script for description in page like this :
You are reading “Series Title – Chapter Title” Love It.
Please help me brother, ??
Regards
Arba22
This code looks for images in CHAPTER FOLDER.
here is code and enjoy ??
<?php
if(empty($page_list)) {
$output_dir = UPLOAD_FOLDER.$chapter['folder'];
$uploader = glob("$output_dir/*");
$last = filemtime($uploader);
$filedate = time() - filemtime($last);
$pubdate = date ("F j, Y, g:i A",$filedate);
$i = 0;
foreach ($uploader as $uploaded) {
$i++;
$img = basename($uploaded);
$chap_id = $chapter['id'];
$ser_id = $series['id'];
$db->page_create($_CLEAN['title'],$i,$img,$pubdate,$_POST['story'],$i,$ser_id,$chap_id,'');
$status['pass'] = __('The Pages successfully created', 'kommiku');
}
}
?>
]]>
I just checked RSS feed of Kommiku.
Its show in url as Series Name not Slug.
I fix it with replace series name with series slug. ??
]]>I’m trying to load a manga series to my wordpress site, but the “Dump a Chapter” features does nothing. I’ve raised my upload limit to 900mb. I’ve placed all the scans into a zip file, still nothing. Any help would be appreciated.
]]>I’m using Manga of the week. Its working fine on Windows Server but on Linux its not. ??
Linux version not working correctly. Its show same series days by days.
In Windows ?? Working superb.
here is it Linux ver.
https://www.picsbash.com/
Hello,
I recently installed the plugin kommiku and am very satisfied with what it does so far. Currently I’m working on changing the appearance, so that it fits to the design of my blog.
Since the blog I have is completely in german i want at least edit the text that visitors can see and change its language to german. But no matter how long I search, I just can’t find the responsible piece of code…
Here is what I did so far: https://www.artogether.de/manga/KonKon/test/
I want to change [Previous], [Next], Chapter, etc.
Could somebody help me? I already spent hours searching and even firebug couldn’t help me out…
I would be very glad if someone could help me ??
greetings
keokinkon
I saw the topic about this…er…topic about the resizing of the image when it’s too large and the zoom in feature.
I tried following it but then the post is outdated!
How do I add this feature?
]]>how to change upload file image to url image from other imagehosting?
]]>In header.php
<title><?php kommiku_title(); ?></title>
Atm it displays like this
Naruto Doujin : Chapter 1 : Page 0
How to make it like this
Naruto Doujin
Instead of listing all manga series in a list format I want to list like 30 manga series on a page with thumbnails and add pagination. An example would be https://www.tenmanga.com/category/A.html
How can I do this?
Hi,
I discovered a little bug with the slug of a series. If the slug of your series contains capital letters you can’t seem te upload a chapter with the “dump” option because it tries to create a directory in a pace that doesn’t exist.
the warning:
Warning: mkdir() [function.mkdir]: No such file or directory in /home/<username>/domains/<domain>/public_html/wp-content/plugins/kommiku/extension/dumper.php on line 76
Warning: mkdir() [function.mkdir]: No such file or directory in /home/<username>/domains/<domain>/public_html/wp-content/plugins/kommiku/extension/dumper.php on line 80
When I have a chapter without capital letters it’s alright. I really checked permissions and stuff 3 times so I’m really sure it’s a bug ??
]]>I wanted to know how to add advertisements boxes on top and bottom of the manga reader Kommiku.
I am using 2.2version.
And here is the reader.
[Link]
Please let me know…
Thank you.
can you make for a link image.. cause i want using image hosting
]]>why me want to dumper always Request time out in my connection.. ???
]]>Hello everyone, im using this plugin and its awesome, you can see my work at this page but i have one last thing that i cant resolve on my own, im trying to show all page_list from all chapters on each page instead of only the page_list from the current chapter.
If you need more explanation just ask, the file that needs to be modified is kommiku\reader.php the line that starts with foreach ($chapter_pages as $pageList)
Thanks for your time.
]]>Warning: mkdir() [function.mkdir]: No such file or directory in /home/u828790730/public_html/wp-content/plugins/kommiku/extension/dumper.php on line 76
what the matter with that?? please resolve fast
]]>There are no labels appearing in wp-admin when i’m trying to configure the options. what gives?
]]>Okay, so i’m a little confused about the rating and view counter system. Is this a feature that is offered? I enabled both but on the series info it has 20 boxes that are non-interactive, as far as I can tell. As for the view counter, I can see nothing that indicates it’s presence at all. I could be missing something simple, as I am not very computer literate. Please excuse my ignorance in advance.
]]>hi
i have been trying to implement image resizing and zooming feature on the reader
so that if the image is larger then lets say 910px width it will automatically re size it to 910px and for this i edited the reader.php and the contents of line 156 to
$wrapper = '<div id="manga-image"><img src="'.$theimage.'" class="resize" /></div>';
and as for the zoom option i have no idea but i know i want to do some thing like these
https://www.mangareader.net/94-8-3/bleach/chapter-1.html
https://www.mangafox.com/manga/gamaran/c104/3.html
i tried asking elsewher for help and this one seemed to m as the best option but i am unable to implement it and was hopping that you might be able to help me
]]>I downloaded the latest version of the Kommiku manga/comic plugin. It works fine the URLs are set correctly but on the manga page:
https://feintproductions.com/manga/white_out/1/
The URLs, such as the [Next], [Previous], and the image you click on to goto the next manga page. It leads to the following:
https://feintproductions.com/manga/1/2/
…Which ends in “/manga/1/2/” and goes to a “not found” link and it should end in “/manga/white_out/1/2/”. Is there any solution to this? I’ve been messing with this plugin basically all day and haven’t been able to fix it what so ever.
-Thanks
]]>Hello! Great plugin.
I just have one small issue. My comic does not contain chapters and unfortunately the current widget only shows when a new chapter is added. Any chance you can make a widget that shows the latest page added?
Thanks in advance!
]]>not see walking program and am using the WP almost the first time, I wonder how the Kommiku per page / theme since I can not find how to do that = |’m very noob xD
sorry for google english =[
]]>I’m increasingly frustrated with everyone who visits my front page at superdude.org having to click through links every time they want to see my newest comic pages. I want to improve content delivery, to provide that immediacy. if I could embed kommiku pages in a wordpress post, that would solve it…unfortunately WordPress Post Connect is completely broken for me, I tried for hours with every variation I could think of: p=344, 344, /p=344, ‘344’ and https://superdude.org/?p=344 and MANY more, only to fail, “No such WordPress Post.”
My theory is that kommiku looks into directories as though i’m wordpress through www.remarpro.com, not self hosted wordpress, which I am, and that is why it fails. Any thoughts?
Please, please help. I really don’t want to go back to the ComicPress nightmare!
Nick
]]>Hi, sorry kommiku know some script to zip up sleeves?
To add the script to OMV?
Thanks
]]>When I try to dump any zip files I get error saying “The ZipArchive Library (zlib) is not enable. Can not extract without the library.”
]]>I’m excited about the next update. I had a look at tosho and I noticed some new features like discussion and I was wondering is that going to be your own custom forum? or will it work with intergrating with vbulletin?
]]>In Kommiku API key feature:
Give yourself the special features with the Kommiku Api Key!
Only given to special people… however.
So i want to ask that how can i get API key, certainly how can i become special people and what are the special features with the API key. !!??
Please give me an answer !!
]]>Is there a way to upload manga by ftp? cause I’m lazy to manualy create thousands of chapters
]]>