Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. Joseph Benguira
    • Profile
    • Following 1
    • Followers 18
    • Topics 5
    • Posts 892
    • Best 132
    • Groups 1

    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.

    159
    Reputation
    154
    Profile views
    892
    Posts
    18
    Followers
    1
    Following
    Joined Last Online
    Website appdrag.com

    Joseph Benguira Unfollow Follow
    administrators

    Best posts made by Joseph Benguira

    • Parametrized SQL queries are now supported in appdrag-cloudbackend

      Hey dear community,

      We have updated our appdrag-cloudbackend NPM package to allow parametrized SQL queries.

      If you want to compose the SQL query by yourself with input parameters you must escape the user inputs to avoid SQL injection with cloudbackend.escape() like this:

      cloudbackend.sqlSelect("SELECT * FROM Products WHERE category = '" + cloudbackend.escape( event.POST.category ) + "'")
      .then( function(response) {
      	console.log(response);
      });
      

      But there is now a better way with parametrized queries, You can use ? characters as placeholders for values you would like to have escaped. Multiple placeholders are mapped to values in the same order as passed.

      cloudbackend.sqlSelect('SELECT * FROM Products WHERE category = ? and id > ?', ["Software", 500])
      .then( function(response) {
      	console.log(response);
      });
      

      You can check the full documentation on NPM:
      https://www.npmjs.com/package/appdrag-cloudbackend

      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
    • 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
    • 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: Node v.14 and/or ES2020

      Hey Daniel,

      since we use AWS Lambda under the hood, we are waiting for AWS to add it and we will get it the same day on AppDrag Cloudbackend 🙂

      You can check this page for more details about supported Node.js versions:
      https://docs.aws.amazon.com/lambda/latest/dg/lambda-nodejs.html

      Based on the latest update for Node 12, (https://aws.amazon.com/blogs/compute/node-js-12-x-runtime-now-available-in-aws-lambda/)
      There is a 6-7 months delay between on official LTS release of node and it's availability on AWS Lambda

      posted in Cloud Backend (Cloud DB
      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: Scheduling API calls based on day of the week

      Hey Franck,
      yes it's possible, when you configure your scheduling select "Every-week" in the recurrence type dropdown
      you can then indicate the days of the week and hour

      dc4a523b-ac9f-4b9b-a1de-1e6aad92c7ae-image.png

      posted in Cloud Backend (Cloud DB
      Joseph Benguira
      Joseph Benguira

    Latest posts made by Joseph Benguira

    • RE: Associated email not working

      @bianca-duboisset-0 please try to configure the email forwarding to point to something else than gmail (just to try and check if that's the source of your issue)

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira
    • RE: Need help resolving hreflang conflicts

      @kirk-brown seems on your side filtering to display spanish links is not working

      you can check here:
      https://www.google.com/advanced_search?q=https://www.outdoorsplendor.com/&num=10&lr=lang_es&sca_esv=954ba678d3f37bee&as_qdr=all

      and ensure spanish is selected

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: Need help resolving hreflang conflicts

      @kirk-brown In the spanish link I provided I see 2350 indexed links in spanish, not 3 ...

      6a61bcfe-a48f-462a-a139-23756ce82f45-image.png

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: Need help resolving hreflang conflicts

      Hi @kirk-brown,

      if you check what is returned for your home page for example:

      <link rel="alternate" hreflang="en" href="https://www.outdoorsplendor.com/?lng=en">
      <link rel="alternate" hreflang="x-default" href="https://www.outdoorsplendor.com/?lng=en">
      <link rel="alternate" hreflang="es" href="https://www.outdoorsplendor.com/?lng=es">
      

      it's defining the default language (en) and and alternate language es & en

      So this is not preventing your website to be indexed by google:
      https://www.google.com/search?q=site%3Ahttps%3A%2F%2Fwww.outdoorsplendor.com

      and here is spanish:
      https://www.google.com/search?q=https%3A%2F%2Fwww.outdoorsplendor.com%2F&num=10&lr=lang_es&sca_esv=954ba678d3f37bee&as_qdr=all&tbs=lr%3Alang_1es

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: Associated email not working

      @bianca-duboisset-0 no in fact I asked because it's incompatible with the forward service if you do it

      I see 2 domains on your screenshot, can you please confirm on which one you have the issue?

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira
    • RE: PHONE LINK

      @katya-nakache indeed sorry

      78525c34-8c1e-47fe-ae01-958a6d6e5c6d-image.png

      instead use "tel:+972xxxxxx" in the url field

      not "tél:" but "tel:"

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: Associated email not working

      Hello, @bianca-duboisset-0
      have you configured a third part email system? (Google, Microsoft, ...)

      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira
    • RE: PHONE LINK

      Hey @katya-nakache
      select the element and open the configuration brush > Links > Phone

      posted in Cloud CMS (Pagebuilder
      Joseph Benguira
      Joseph Benguira
    • RE: Cannot find table 0

      Bonjour @julien-listing
      passez vous les bon parametres pour votre API?

      merci d'indiquer l'url de la fonction

      posted in General Discussion
      Joseph Benguira
      Joseph Benguira
    • RE: Changer de domaine

      Bonjour @pierre-sohoue

      vous devez:

      1. aller dans la page du projet
      2. cliquez sur domaine principal et SSL
      3. desactiver le SSL sur l'ancien domaine
      4. reactiver le SSL sur le nouveau domaine
      posted in Domains & Emails
      Joseph Benguira
      Joseph Benguira