90 comments found.
I tried to add adsense code inside, but i can’t do it. Can you help me? for https://face.bo/
Hello, Could you be a bit more specific about your difficulties?
I suggest you send us an email at inochiteam@gmail.com, it’s usually easier to solve complex issues via email that in the comments.
Best Regards MakeMake – InochiTeam
We try in https://face.bo/ but I’d like show options to change language. is it possible?
Hello and thank you for your purchase.
You can choose the language of the AM by editing the configuration but the UI only supports one at a time. https://inochiteam.altervista.org/documentation/avatarmaker/configuration/#app-languageThat said if you feel comfortable in editing the js source code, there is a function called “appInitLocal” that accepts an array with the locale data and updates the UI. You could use it to achieve your goal without much effort. If you decide to go down this route and you need assistance, drop us an email at inochiteam@gmail.com.
Best Regards MakeMake – InochiTeam
Would it be possible to add google adsense banner somewhere?
Hi, Altering the UI of the avatarMaker is extremely easy (many users changed it beyond recognition), you only need some knowledge of HTML and SCSS. I have never tried inserting the Adsense code into the AM but I don’t think it will interfere in any way with the AM logic. The only thing you have to take into account is that you shouldn’t put it in a location manipulated by JS as it may result in unexpected consequences and if the banner is not responsive it will break the UI on mobile devices ( this may not be an issue depending on your needs). If you decide to purchase the AM and the documentation is not enough, we will be happy to assist you.
Best Regards, MakeMake – InochiTeam
How to remove avatarmaker from title ?
You can change the text displayed in the title bar by editing the title tag in the ‘index.hml’ file. If you want to change the title displayed in the UI refer to this page in the documentation
https://inochiteam.altervista.org/documentation/avatarmaker/configuration/#app-brandingBest Regards, MakeMake – InochiTeam
Hi, when will it be possible to integrate this script into Wordpress? Thank you!
Hi, the avatarMaker is not a WordPress plugin, it can’t be included using a shortcode nor it can be configured using the administration panel. Anyway, you can install it on your server separately from WordPress and use an iframe to insert the UI into the pages. The AM could be modified to be a normal WordPress plugin and, for example, display the generated avatars as the user’s profile image around the site. We have already done it successfully for a client.
Best Regards, MakeMake – InochiTeam
Hi, I am interested in adding additional categories too. Can you add instructions to your documentation? Thanks.
Give us a day, we will update the online documentation. Anyway adding a category is an easy process.
Best Regards, MakeMake – InochiTeam
Hey guys, I am interested in buying your product, but I am not sure yet because I would like to know first, if it is possible to add my own categories to the Avatar Maker. I know that it is possible to add own images, but what if I want my users to also have an option of choosing body shapes and clothes? Is it possible to implement that by myself?
You can easily add a new category. You only need to edit a couple of rows in the HTML file of the UI and in the configuration. Adding clothes and body shapes will be simple and fast. Additionally, if you need help and the documentation is not enough you can always contact us and we will guide you in the process.
Best Regards, MakeMake – InochiTeam
Alright then, thank you very much for the quick respond!
Hello, i’ve uploaded the “Upload” folder to http://acceptdrgn.com/Upload to make a test. But it shows up an error. Can you kindly help me with it?
The server returns an error 500 when requesting the backend. Check if there is an .htaccess file that is interfering with the execution of the request. Double check also that your server supports PHP 5.X or 7.x with the GD library installed and configured.
Best Regards, MakeMake – InochiTeam
Thanks for the prompt reply. I contacted the server provider and they confirmed the following points:
Check if there is an .htaccess file that is interfering with the execution of the request. = CHECKED, NO PROBLEM
Double check also that your server supports PHP 5.X or 7.x = CHECKED, NO PROBLEM
GD library installed and configured = CHECKED, OK, READY
Please provide me other points)
you can verify this info here: http://acceptdrgn.com/phoinfo.php
To avoid any problem i also removed any info from the htaccess, leaving in it just the default wordpress instructions.
But is not yet solved
Thank you for the information, we’ll use them to recreate your environment to debug the issue. We’ll keep you updated.
Best Regards, MakeMake – InochiTeam
I solved the problem adding it to another server, http://ddss.store/takarians, where it works fine, please compare the two and let me know the difference.
We suspect it’s something related to the CGI/FastCGI version of PHP. Are you able to provide the phpinfo of the second server where the AM is working?
I managed to reproduce the issue.
It is due to a misconfiguration of the PHP interpreter or to wrong file permissions. Your HTTP server (apache) and your PHP interpreter are probably running as two different users. Apache can read the PHP files and thus it activates the PHP interpreter. This one can’t read them and returns a 500. This explains why the interface is displayed (it is a plain HTML file) but the backend doesn’t work. To solve the issue you can either change the configuration of the PHP interpreter, setting it to run under the same user as the apache server or you can alter the permissions of all files and folders in the UPLOAD folder, giving read and write permissions to “others”.
There are other solutions to the issue and they all gravitate around changing users groups and permissions. This error doesn’t appear if PHP is running as an Apache module. We’ll update the documentation FAQs to cover this matter.
Best Regards, MakeMake – InochiTeam
when i set public $app_transparentBackground = true; it did not do this : ” the background options will be hidden and the user will not be able to select them. All the avatars generated through the UI will have a transparent background. ” as described in online manual. please help
After changing any value in the configuration remember to empty the cache folder or the UI will ignore the new settings. Also be sure to load a fresh copy of the UI (usually pressing F5) because your browser may be using a cached version.
Best Regards, MakeMake – InochiTeam
Small parts such as nose are hard to see with thumbnail images. I would be happy if there were functions to prepare thumbnail images separately or to enlarge and display thumbnail images.
You can enlarge the thumbnails in the UI by editing the scss file of the skin you are using. This is an easy and fast solution.
You could also manually create the thumbnails but this is quite time-consuming. If you open the cache folder, you’ll see an image for each layer. They are (Number of elements)*300×300px, each 300×300 square is an item. You can alter this images as you want but be sure to keep each element in the same position and pay attention never to delete the cacheData file or the images will be regenerated and your edits overwritten. You can follow this path but I don’t recommend it.
We are working on an update that will be ready soon, we will add a proper way to add custom images in the thumbnails.
Best Regards, MakeMake – InochiTeam
Thank you very much.
I am looking forward to it being added in the update.
Thank you for always wonderful system! 
when user clicks btn_download, i want the image to be saved on myserver instead of being downloaded. how can i do it? i tried modifying public $renderer_format = “png_saved”, and $savePath=”myserver/”.. it did not do the job.
Set $renderer_format to “png_saved” in the configuration as you did. Open “avatarmaker.php” and edit line 29 as follows:
Change this: $avatarMaker->renderAvatar(); Into $avatarMaker->renderAvatar( “myserver/” . md5( microtime(true) ) . ”.png” );
This is just an example, it will save the avatars to the “myserver/” folder using the md5 of the current time as a unique name.
You can find more info about why I suggested you edit the code this way by looking at the documentation for this method. https://inochiteam.altervista.org/documentation/avatarmaker/code-reference/#renderavatarWe will add this modification to the documentation.
Best Regards, MakeMake – InochiTeam
I have installed the files as instructed. Permissions are set at 755. I get the error msg “Ops Something Went Wrong. An error has occurred that prevents the app from loading. Reloading the page may resolve the issue. Configuration Error: Internal Server Error.”
I have tried both navigating to the file directly, and embedding it within a page on the site. I cannot find any further info in the documentation that could help me resolve it.
Open the backend directly into the browser by navigating to: yourdomain.tld/amfolder/avatarmaker.php. You should see the full PHP error message. Please copy it here or send it via email, that message will give us more information to help you.
Best Regards, MakeMake – InochiTeam
HTTP 500 error That’s odd… the website can’t display this page The site may be under maintenance or could have a programming error. Try this Go back to the last page Try contacting the website’s owner
I am able to access all other pages on the site without a problem.
Another user had this error before, it was not related to the avatar maker itself but rather to unsatisfied dependencies. Check your server is running at least PHP 5.x with the GD library and that it is working and properly configured.
Additionally, an error 500 can be triggered by a misconfigured .htaccess in that folder or in a parent one.
If you need to send us parts of your server configuration, send them via email as posting them publicly can harm the security of your environment.
Thanks for the quick response. I decided to try it on a different server, and it works with no problem.
My .htaccess files seem to be in order and we’ve got the latest version of PHP. Rather than chew up a bunch of time troubleshooting server configurations, it was more expedient just to install it on a different server.
If it makes no difference for you to install the AM on a different server the issue is resolved. Yes, troubleshooting configurations are quite time-consuming and in the end, it may not even be possible to alter them as other programs may stop working properly.
Anyway, we remain available for any other issue.
Best Regards, MakeMake – InochiTeam
Hello,
It is giving internal server error after installation.
Can you please look into it.
Installed at CreateYourCartoon.com
Thanks.
We have never had this issue before, it could be due to a misconfigured .htaccess file. This kind of error should be related to the server itself and not the PHP interpreter and thus the application. If you can’t solve the issue, please contact us via email (inochiteam@gmail.com) so that your server configuration and other potentially sensitive information is not revealed publicly.
Best Regards, MakeMake – InochiTeam
How do you scroll pallets side by side in Respon Design?
Keep your finger over the palettes and swipe to the side. They behave like standard android tabs.
Best Regards, MakeMake – InochiTeam
Thank you very much. In the responsive design, items such as faces are scrolled vertically. But I want to scroll horizontally. please tell me.
Right now there is no option to easily achieve this behavior, you need to manually edit the scss source file. We will consider adding this option in the next update.
Thank you very much. That’s excellent. I am looking forward to it.
I bought this and set it up on my server. I am getting a hung loading bar with a 404 error for all files in a cache folder. Is there something I was supposed to do before setting this up? I checked the documentation and don’t see this problem. I sent you an email.
Hi Rob, check your inbox, we answered your email.
Best Regards, MakeMake – InochiTeam
Yes, I replied with questions… thanks for getting back to me…
Is it possible to add transparent background option?
Also, when saving, I would like to post final bitmap to another PHP as base64 data… is this possible? Where would I find this in the code? If it is not possible then I want to add another button to the form to post the saved filename…
Also I would like to add more colors, for changing the color of background, or objects… Where would I need to make this change?
To add new colors you need to edit the configuration file. Scrolling through it, you will find a section called ”$avatar_palettes”, it is an array with the colors used by the interface, adding entries there will add colors in the UI.
https://inochiteam.altervista.org/documentation/avatarmaker/configuration/#color-palattesBest Regards, MakeMake – InochiTeam
Hi I just bought this , and it is very cool but one major thing I didn’t notice is that there is no female hair styles. Which causes a few problems for me.
You are right, we will work on it. It may require a couple of days.
We are open to any suggestion for new items.
Best Regards, MakeMake – InochiTeam
Great stuff. Going through it it is not too bad… but there is a lack of more female items like longer hair.
We have just released an update with 7 new hairstyles and 2 mouths, you will be able to download it as soon as the marketplace approves it (You should be notified when it happens). Check out our demo to see the additions in advance (You may need to clear your cache). We hope to have solved your issues.
Best Regards, MakeMake – InochiTeam
Hey there,
I am looking for an avatar creator which can be integrated with our web app.The current web app is based on front end- react and backend- java, spring. Can i integrate this avatar creator to my application to let the user to create their own avatar and save into our db?
Also can i customize the application and add our own images, items, etc.
The interface of the avatar maker requires jquery to work, if you want, you can insert it into any webpage. Anyway, I have never tested it in conjunction with React so I can’t tell you if they will work nicely or not.
The backend requires PHP with the GD library installed to render the avatars. For this reason, you will not be able to run it in a Java environment.
Aside from this, yes you can add your own images, all items are PHPfiles with transparent background.
Best Regards, MakeMake – InochiTeam
Hello,
I have trouble to install the code with wordpress, it keeps saying :
Something went wrong! Please reload the page
Any advice on how to integrate it in my wordpress website ? Thank you
We have not tested the AM in wordpress but it should work just fine.
Be sure to set the correct url for the backend, “render.php” should be changed to match its position in your environment.
If you send me the url of the page with the AM i can try to tell you what’s going wrong more precisely and how to fix it (Send it via email at inochiteam@gmail.com if you don’t want it to be public).
Best Regards, MakeMake – InochiTeam
Hi,
I think that my problem come from the fact within the WordPress environment, we have to use this :
<script type=’text/javascript’> jQuery(document).ready(function($){$( ”#avmContainer”).avatarMaker(‘render.php’);}); </script>
instead of :
<script> $( document ).ready(function() {$( ”#avmContainer” ).avatarMaker(‘render.php’);}); </script>
I stay stuck on the loading screen, is there a way to write the full path to render.php file ?
Thank you for your support.
We will definitely study an easy way to use the AM in wordpress for the next release.
The code can be rewritten like this: <script>jQuery(document).ready(function($){ $( ”#avmContainer” ).avatarMaker(‘render.php’); });</script>
But i suspect that the UI can’t load the configuration form the backend. Remeber to replace “render.php” with its url on your server? If you left it as it is the problem is that the UI will not find it as the server will respond with a 404 error.
It works fine when replaced “render.php” by the full url path of my server.
Thank you
Glad to hear that you can now enjoy our product. If you experience any other issue don’t hesitate to contact us again.
Best Regards, MakeMake – InochiTeam
The tool is amazing but some more documentation would have be great. All the code got comments which make it easier to understand.
If want to put all the files in the folder upload (so the page that calls the render is not in the same folder / in the previous folder), i have so troube to display the whole tool on the website. The page load the code but the avatar or any image are not display. When i click download, i only have an image with the background.
I would appreciate some help. Thanks alot.
I tested it. If the UI is not in the same folder as the rest of the app, all the avatar parts are empty. This is a bug and I’ll fix it today. As soon as I have a solution I’ll notify you here.
Just one thing, please check if in the cache folder there are 9 images. This will tell us that the backend is working properly on your server.
The bug should fixed. You can view the details on how to fix it manually here: http://inochiteam.altervista.org/bugs/V2101C.html By this evening i will release an update (2.2) with the correction and the documentation updated.
For the error in the downloaded image i was unable to reproduce it, if you can give me more details about your implementation (especially the structure of the folders in witch you have installed the AM) i’ll try to help you.
Wow, thank you for a such great technical support. Good job to all your team for being so quickly responsive.
I will try to manually fix the bug that made all items previews are empty with tthe details you provide to me. (the backend works properly as i have the 9 png files in the cache folder)
For the error in the downloaded image, I fix it by pasting the whole code (i guess i had an error in my previous code).
Dear InochiTeam,
your Avatar-Maker is wonderful! But I find one thing: “The random-function don’t work with all avatar-traits…” Only the 2 first avatar-traits (e.g. head_1 & head_2 or mouth_1 & mouth_2) change in the random function, but if you got for example 15 “hair-traits”, then you need a random-function what changed the traits of the 15 different hair-traits and not only the 2 first.
Can you please help me to create a random-function what work with all traits?
Yours faithfully, Te_Melko
Thank you for the bug report! I’ll fix it right now and i’ll let you know as soon as it has been corrected.
Best Regards, MakeMake – InochiTeam
A new update (2.1) has been released with the correction.
Best Regards, MakeMake – InochiTeam
Thank you! Now it works perfect! Very good job! 
Hi, we are interest in buying the avatar maker, we have the following question:
- We need to add our own images for noses, heads, ears and others. Is this possible? In which extension we need to save the images to put in the system?
Not only it is possible but it is really easy. You need to export your images following these specifications:
- PNG format
- 250×250 pixel sizes
- heads/ears/eyebrows/mouths/hair must be grayscale or the colors will interfere with the tinting made by the avatarmaker
- Each item in a different image
If you decide to buy our product and you experience any issue inserting your images we will be happy to help you sort them out.
Best Regards, MakeMake – InochiTeam