Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. khemry
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    khemry

    @khemry

    Monaca

    After coming to Japan since September 2011 to pursue her graduate studies, Khemry had been working with Asial from September 2012 till March 2017 as a part-timer. Then, she decides to join the company as a full-time employee from April 2017.

    She maintains Monaca Documentation, provide technical supports, acts as Monaca developer advocate and various tasks.

    She can’t live without rice, coffee and meat. She loves snowboarding, Naruto (Minato is <3), Attack of Titan (Levi!!!) LoL (Adc main) and Sheldon (The Big Bang Theory).

    8
    Reputation
    191
    Posts
    2222
    Profile views
    6
    Followers
    0
    Following
    Joined Last Online
    Location Tokyo, Japan

    khemry Follow
    publishers Monaca administrators

    Posts made by khemry

    • RE: All plugins lost

      @rajdevwilson0991 Are you the same user who sent us a support ticket regarding the same issue under Frank De Smedt name? If so, we have replied back to your ticket since October 17th with a backup version of your project as well. Please check it out. I’ve just replied back to you again today. Sorry for the inconveniences.

      posted in Monaca Tools
      khemry
    • RE: Lost all plugins suddenly!

      @rajdevwilson0991 Are you the same user who sent us a support ticket regarding the same issue under Frank De Smedt name? If so, we have replied back to your ticket since October 17th with a backup version of your project as well. Please check it out. I’ve just replied back to you again today. Sorry for the inconveniences.

      posted in Monaca Tools
      khemry
    • RE: Monaca Cloud IDE not running any projects (including sample projects)

      @bethewater Based on your email here, I found your Monaca account. I tested two of your projects and they are all working fine including the debugger panel.

      2_1539839621739_Screen Shot 2018-10-18 at 18.12.35.png 1_1539839621739_Screen Shot 2018-10-18 at 18.07.18.png 0_1539839621737_Screen Shot 2018-10-18 at 18.07.10.png

      posted in Monaca Tools
      khemry
    • RE: Monaca IDE issues

      @jamal

      • Can’t preview apps: usually when this case happens, you can just reload the browser as shown in the Preview Log panel. If that is still not working, there might something wrong with your project, especially if it is a transpilable project. You might need to remove the node_modules folder and run npm install in a new terminal window to fix this issue.

      • Duplicated display of newly added plugin: This has been fixed. I’ve just tried adding a plugin again, and it doesn’t show the duplication anymore.

      • Slow Settings dialog in Localkit: Whenever you opening Build/Setting Windows, your project will be uploaded/synced with Monaca Cloud. If it is the first time the project is synced, it will take some time. Later on, it should be much faster.

      • Misleading message: This case should only happen when there is something wrong with the Cordova configuration in your PC. In order to fix this issue, you can just remove .cordova folder. Please also make sure to use the latest version Monaca Localkit to ensure the best performance. Currently, the latest one is 3.0.1.

      Thanks for your feedback.

      posted in Monaca Tools
      khemry
    • RE: Monaca Cloud IDE not running any projects (including sample projects)

      @bethewater Based on the log, everything seems fine. When you said nothing was working, what did you mean by that? Was the Previewer not working? Or something else happened?

      If the Previewer is not working, you can try to restart the Preview Server Container by clicking on the refresh button at the Preview Log panel as shown below:

      0_1539826383193_Screen Shot 2018-10-18 at 14.30.12.png

      posted in Monaca Tools
      khemry
    • RE: ITSAppUsesNonExemptEncryption addition config.xml not working

      @jamal Yes, your configuration is correct. Make sure you have Cordova Custom Config plugin enabled in your project before using this configuration.

      posted in Monaca Tools
      khemry
    • RE: Monaca upload command extremely slow.

      @j4hangir I imported your project and tested the monaca upload command. The reason why it took so long to upload your project is because of your plugins’ files. You have 17 plugins in the plugins folder which are not even used in your project. You don’t need to store these plugins’ files in your project when you are importing them via their package names as configured in package.json file. Therefore, just remove them. Your project will be uploaded much faster without them. And yes your project will still be working as usual.

      posted in Monaca Tools
      khemry
    • RE: Monaca upload command extremely slow.

      @j4hangir I tested monaca upload command on Monaca CLI 3.0.2. I uploaded a new project (119MB) to Monaca Cloud and it took about 100 seconds. I made some changes to project files and uploaded again. It took about 30 seconds.

      How big is your project? Is it a normal Cordova or transpilable projects? We can help looking at your project and see what might be the causes.

      posted in Monaca Tools
      khemry
    • RE: Mailer Templates

      @rmoore Sorry for a late reply. Here is how to use the parameter with the email template. First, create a template as shown here:

      0_1538132510656_Screen Shot 2018-09-28 at 22.58.20.png

      Here is a sample code for SendMail function:

      monaca.cloud.Mailer.sendMail(UserOid, "DemoTemplate", {"name": "Khemry Khourn"})
      .done(function(result) {
          if (result == "OK") {
              console.log("The email is sent successfully.");
          }
      })
      .fail(function(err) {
          console.log("Error #" + err.code +": " + err.message);
      });
      
      posted in Monaca Tools
      khemry
    • RE: Adding `cordova.plugins.notification.local`

      @j4hangir How did you test the project? If you are using Monaca Debugger, please make sure to use custom built Monaca debugger (build from IDE). The store-version Monaca Debugger (from AppStore/Google Play) doesn’t contain any 3rd party Cordova plugins besides core Cordova plugin.

      posted in Monaca Tools
      khemry