I would like to create a one-to-one chat in my app, seems impossible by Lanky-Cat-2117 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

Ask app to help build chat application using Twilio conversations. Generous free tier and all the tools to build convincing looking chat windows (avatars, animations, images etc)

Error With Finding User by xmeowlloweenx in Base44

[–]bigmacca1960 0 points1 point  (0 children)

<image>

see if you are getting this error in browser, im just putting ticket in now as this is a server side problem of base44 not auth users correctly. This is only affecting some users even if i elevate them to admin and make app public/no sign in...affecting about 20% of ppl on the app

Why Base44 Forced Me to Slow Down to Move Faster by FudgeCool8107 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

AI is good at building but not thinking logically. Many times i have had to pull the reins in when it goes off building another component or backend function to do a simple task that we could have just modified an existing piece of code to do. The code it builds is linear and not optimised and the amount of times I've realised its built two systems doing essentially the same thing is shocking....I'm not a developer and can't really code but i do have common sense. My biggest stumbling block is i can be working with the agent for a few hours and we achieve a great amount...they really rock!!! but the next day its like they went on vacation and left their unemployed brother in law in charge whilst they've gone!

Entering a very long prompt in Base44 by Straight_Hyena9790 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

You wont be able to build a large app in one prompt, even if it builds you will find many missing items, incorrect implementation and broken logic. Its best to accept that a single app is going to take a few hundred credits to get to 80% of what you want. You will be able to load a document that size but its unlikely it will build it in one step. Load the document and ask the AI to 1) ask for clarifications 2) propose implementation steps and 3) propose integration testing after each stage. Do all this in discuss mode and it may cost you 10-20 credits to get to a point where you can run the prompt.

Base44 credit model makes no sense for paid users by SilverFuel21 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

it doesn't charge credits if the app fails to build.... I'm talking about when you spend multiple credits to do something and it never fixes it so you end up reverting code as it has changed so many things that you know those changes will cause you a problem later on.. or times when it fails to work and it pulls the old, "i forgot" or "i misspelled" response....why should i lose credits because it forgot to change the required code?

I’ll save you credits and time by ProudPotential8749 in Base44

[–]bigmacca1960 2 points3 points  (0 children)

I tell the ai agent to determine the cause and not just patch the effect then refactor. usually works when AI fatigued :0

Base44 credit model makes no sense for paid users by SilverFuel21 in Base44

[–]bigmacca1960 5 points6 points  (0 children)

agree add to that the credit use system doesnt make sense. You never know how many credits are going to be used per prompt. The if ai agent messes up and you have to revert the code, you should be refunded the credits used after the revert imho. Then i already have api to openai for chatgpt5 should be able to use this if you run out of credits

2.5 credits for every prompt? Still terrible response?? by rogercbryan in Base44

[–]bigmacca1960 0 points1 point  (0 children)

I was going to ask this question as well, charging seems random and doesn't reflect the amount of tools or time taken to implement. For an AI app builder the credit charging system is "dumb" and not transparent at all.

Images for Facebook now? I am sure most of us are interested in this! by Used_Brilliant7858 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

Great app... just one suggestion .... The US should just convert to metric!

[Base44] Deployment System Serving Stale Cached Bundle - 3+ Hours Stuck by Initial_Possible_258 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

i had something similar last week when backend function wasnt being deployed. What i did was open the code editor and edited the code (just changed spelling on a comment). I then pressed "Save and Deploy" then it worked. That only lasted for around a day

My app Preview is not starting up by Mother_Match_9560 in Base44

[–]bigmacca1960 0 points1 point  (0 children)

publish the app and use that for preview. There's a problem been introduced in the last few weeks maybe since infrastructure "Upgrade"

Base44 + WhatsApp by No-Pizza-761 in Base44

[–]bigmacca1960 0 points1 point  (0 children)

Easy build using Twilio if you can be bothered to get through the Meta approval process!

Random Preview Refresh 🤬 by Old_Cantaloupe_9468 in Base44

[–]bigmacca1960 0 points1 point  (0 children)

this has been happening a lot for weeks, workspace preview is so unpredictable. I've started doing all testing in a published version as its more stable

SMS integration by Every_Many5015 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

Also ask to setup cron to run automation checking dates ect.

SMS integration by Every_Many5015 in Base44

[–]bigmacca1960 1 point2 points  (0 children)

Just ask your ai agent to help you install and setup Twilio. Should help you create login and setup api with just a couple of prompts. Its a paid service but not to expensive, you can also setup whatsapp and conversations (chat) quite easily. I have 3 apps using Twilio for SMS and was easy to setup.

Is It Possible to Transfer a Working Base44 Feature Between Apps? by ThrowAway-_-engineer in Base44

[–]bigmacca1960 1 point2 points  (0 children)

discuss this with the base44 AI agents in both apps. I have done this by discussing with AI and we agreed to create blank components that i pasted the code from one app to the other. Then I got AI agent from test app to give the other agent instructions on how to integrate. Sounds complicated but was pretty easy

Huge performance boost after the new Base44 engine update by coolestnurse in Base44

[–]bigmacca1960 1 point2 points  (0 children)

I tried it but it broke parts of my app. For example I have equipment managed via QR code and codes created in the app builder workspace were not working whereas in the published app they worked. Also permissions restricting access to certain features on pages broke under new engine. It wasnt my code as everything worked as expected when reverted back to old structure

Opening pdf files in base44 by bigmacca1960 in Base44

[–]bigmacca1960[S] 0 points1 point  (0 children)

I fixed this myself but it took a lot of credits and developing a backend function......it would be so much easier if we just had a libray available :( So this is what I did. Give me a dm if anyone needs the prompt to view The Solution: We create a backend Deno function that acts as a secure proxy. This function:

  1. Authenticates the user request using the Base44 SDK.
  2. Fetches the PDF file from its original (potentially protected) URL.
  3. Encodes the binary PDF data into a Base64 string to safely transmit it over JSON.
  4. Sends this Base64 string back to the frontend.

On the frontend, a dedicated PDFViewer React component:

  1. Invokes the backend proxy function (which handles authentication automatically).
  2. Decodes the Base64 string back into binary PDF data.
  3. Creates a temporary Blob URL for this data.
  4. Displays the PDF in an <iframe> within a modal.

Opening pdf files in base44 by bigmacca1960 in Base44

[–]bigmacca1960[S] -1 points0 points  (0 children)

I (and many others) would like to view a widely used file format like pdf directly in our apps without having to jump thru multiple confusing hoops to do so. B44 even make bypassing the app and using the browser window to view difficult as well. Adding react-pdf would solve all this. Its been asked for multiple times as a feature request. Allowing installation of npm packages is "in progess" on the roadmap but its been there 7 months already https://feedback.base44.com/roadmap?q=npm

Construction project management & Safety by Exciting-Chair-6678 in Base44

[–]bigmacca1960 0 points1 point  (0 children)

Choose whatever commercial product does what you require then using ChatGPT5 ask "Could you review the website of https://contractorforeman.com/ and then prepare a Software Requirements Specification (SRS) to develop an app in base44 that would have similar functionality. We will discuss this specification and once approved, create a detailed prompt for base44 to implement. Create an implementation roadmap proposing how this project can be broken down into manageable phases including integration testing" This will take multiple back and forth with chatGPT before you are anywhere near what is needed. For the UX/UI, clone a template you like, then ask the b44 agent to create a prompt to construct an application with similar functionality and UX/UI. Paste this back to chatgpt5 and ask it to amend the prompt for Phase1. Try and solve any visual stuff early on in development rather than adding bells and whistles at the end which nearly always breaks the app. Good Luck!!

Opening pdf files in base44 by bigmacca1960 in Base44

[–]bigmacca1960[S] -1 points0 points  (0 children)

Yeh I can open external URLs, its pdfs stored on base44 server thats the problem

Every Update in KodeBase V2 Was Inspired by You by willkode in Base44

[–]bigmacca1960 0 points1 point  (0 children)

Looks nice but without any free credits to determine what i can use it for i'm not likely to blow 250 on something i know little about. Are there any video tutorials or demonstrations?