Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Joseph Benguira
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Joseph Benguira

    @Joseph Benguira

    I'm a passionate developer, particularly interested in R&D and optimization/scaling topics. I'm also the founder of AppDrag.

    116
    Reputation
    337
    Posts
    62
    Profile views
    10
    Followers
    1
    Following
    Joined Last Online
    Website appdrag.com

    Joseph Benguira Follow
    administrators

    Best posts made by Joseph Benguira

    • Hello Community!

      Hello,

      AppDrag migrates its one to one support to a general community. We aim to provide high-quality answers available to everyone. After some time we would have a strong questions/answers database bringing a lot of value to our users to build their web applications with confidence. We also want to create a dynamic community to improve the platform and our reactivity to build and fix things based on what you as website builders really need.

      Here are the 3 main rules to respect when asking a support question on the board:

      • Don’t post until you’ve searched the Community for the answer first

      • When posting, provide as much information as possible so that your problem can be fully and clearly understood. You can include an appID, link, screenshot, detailed description, etc.

      • Be respectful of all AppDragers! Keep it really civil so that we can make the AppDrag community of builders as embracing, positive and inspiring as possible.

      Don’t forget that if you want somebody else to consult on or develop your AppDrag solution for you, we can provide you with paid support or connect you with one of our certified partners.

      posted in Announcements
      Joseph Benguira
      Joseph Benguira
    • RE: [TM] Broken Database

      Hey Pierre,

      your issue is coming from "-" in table name ... it's a forbidden character with MySQL ...
      Internally we do have a trick to be able to use it but it's really not recommended ... you will have to backtick the table name everywhere in your queries because of this...

      My advice, follow best pratices a just don't use forbidden characters in your table names πŸ˜‰

      posted in Cloud Backend (Cloud DB
      Joseph Benguira
      Joseph Benguira
    • Improved support documentation

      Hey dear community,
      We worked hard to improve appdrag documentation with more content, use cases and a better search engine (full-text with scoring)
      There is now 147 articles including 14 use cases tutorials

      You can check it here: https://support.appdrag.com/

      πŸ™‚

      posted in Announcements
      Joseph Benguira
      Joseph Benguira
    • RE: How-to section in the forums

      Hey Thomas, indeed great idea!
      I have just added the new section "How-to, Tutorials" πŸ™‚

      posted in Features requests
      Joseph Benguira
      Joseph Benguira
    • RE: Homepage not displaying correctly.

      I can see you have a script on the page that is crashing ...
      and it's making crash the render of the page

      Please try to remove your custom script (or fix it)

      Also, instead of placing scripts directly in the source code of your page or in the head of the page, place it in a block of code, this way it will be safe πŸ™‚

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • AppDrag CLI tool is now available!

      Hey Community, we are happy to announce that our CLI tool is now available on NPM
      https://www.npmjs.com/package/appdrag

      deploy your full-stack apps to the cloud. Work with your local tools (VS Code, Atom, ...) and build process, then push your compiled code to your app in appdrag

      This tool is recommended for:

      • Develop locally with your usual tools (VS Code, Atom, ...) and build process (Webpack, ...)
      • Setup a CI/CD pipeline
      • Setup an external backup of your app
      • Export/Import full-stack projects
      posted in Announcements
      Joseph Benguira
      Joseph Benguira
    • RE: Alternative error pages

      In that case DO NOT USE the option 404 if no result because this is linked to 404 page (as it name says :p)
      and then handle in JS the situation with few 2 lines of JS, like if the fields are empty ... redirect to page X ...

      posted in Features requests
      Joseph Benguira
      Joseph Benguira
    • RE: Most of the text elements are default set to h1

      Hey Daya

      In our SEO assistant there is a button to Fix all duplicated H1 and replace them by H2
      This should save you tons of times πŸ™‚

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: Enable/Disable Documentation for certain functions

      Hey Daniel, we do have this option πŸ™‚

      When you edit a cloud function, there is a checkbox to tell if you want to include it in the documentation or not πŸ˜‰

      421d104b-f97b-4f8e-a5a0-f64434fea026-image.png

      posted in Features requests
      Joseph Benguira
      Joseph Benguira
    • RE: How to re-initialize button events/triggers?

      Hey Thomas,

      after adding new elements with Ajax add this to init buttons and links:

      setupButtons();
      handleLinks();
      
      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira

    Latest posts made by Joseph Benguira

    • RE: Connecting a Domain / Transfering a domain

      Hey Lea,
      this community is exclusively in english, please ask your question in english

      You can configure your external domain with this tutorial:
      https://support.appdrag.com/doc/Connecting-a-Domain

      Then you can start a domain transfer (can take up to 8 days depending on your previous registrar):
      https://support.appdrag.com/doc/Transferring-a-Domain

      posted in How-to
      Joseph Benguira
      Joseph Benguira
    • RE: is our ssl cert. not tied to our primary domain?

      Hey Linda,

      Indeed, SSL is activated for www of your domain, and your root domain (without www) will simply redirect to the www version.

      If you still want to serve your site on the root domain (without www) it's possible by following this tutorial:
      https://support.appdrag.com/doc/Use-CloudFlare-and-Activate-SSL

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira
    • RE: save as pdf

      Hey Henrik,

      If I understand your need correctly, I believe you want to generate the PDF on the client side, so yes you can still use the same library "jsPDF".

      From their documentation I can see you can load it from a CDN, so just drop a block of HTML source code on your page, then paste this in it

      <script src="https://unpkg.com/jspdf@latest/dist/jspdf.umd.min.js"></script>
      
      <script>
          window.jsPDF = window.jspdf.jsPDF;
          const doc = new jsPDF();
          doc.text("Hello world!", 10, 10);
          doc.save("a4.pdf");
      </script>
      

      This code will download a generated PDF containing Hello world! when you load the page πŸ™‚

      posted in How-to
      Joseph Benguira
      Joseph Benguira
    • RE: duplicate project on 2 domains

      Each project must have a subscription, so if you have 2 projects each one with a domain you need 2 subscriptions

      posted in How-to
      Joseph Benguira
      Joseph Benguira
    • RE: does the page-builder optimize images upon upload?

      Hey Linda,

      We do auto-optimize images on upload

      c7870960-de22-4802-822b-96c5d800aff8-image.png

      You can notice the checkbox that is checked by default when you upload any files.
      FYI this system optimize files but don't resize them.

      If you need to resize pictures, we made a simple but great tool here to resize images:
      https://tools.appdrag.com/resize-image.html

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: duplicate project on 2 domains

      Hey Rebecca,
      if your goal is to have 2 different sites each with it's own domain here is what you have to do

      1. Open your first project settings
      2. Click on "More" button, and click on Duplicate and give it a new name

      8214c145-5b2d-419d-980b-e81bed333518-image.png

      Once your projet is duplicated, go to your domains (click on Domains in the top menu of the dashboard)
      there open the options of your domain and click on "Move this domain to another project", then select your new project

      Done πŸ™‚

      posted in How-to
      Joseph Benguira
      Joseph Benguira
    • RE: issue with domain bought with appdrag

      Hey Rebecca, please open a new topic if you have another question, it's more manageable that way πŸ˜‰

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira
    • RE: SSL purchased with AppDrag but after CNAME config on domain registrar, site is still not secured.

      Hey Nicolas,

      it seems you forgot to follow the last step of the tutorial (step 4 where you have to change the dns for www)
      https://support.appdrag.com/doc/Activate-SSL

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira
    • RE: Change owner domain name

      Hey Pierre,
      Yes you can transfer a domain to another appdrag user and this is instant!

      just open your domain options and click on "Transfer domain to another user", then indicate the email address of the target user (must already have an account on appdrag)

      7853cb9a-fd4a-4419-9574-c451e44b158d-image.png

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira