Unable to access mysql database
looks like you added a charset setting to the definition and then removed it, yes? Unfortunately there's a bug we just found where those types of service settings don't get unset when you remove them...
View ArticleRole Access tab does not show components for a service
Can you check which version of dreamfactory/df-admin-app you're running?There was a known bug in a recent release, related to Roles.You can see this info in the Main Config tab.
View ArticleTypical DF 2.x setup for application access
One thing I would clarify here is that guest access can be added without creating a guest user.See: http://wiki.dreamfactory.com/DreamFactory/Tutorials/Access_Using_API_Key Additionally, these bits of...
View ArticleAdd new items to a list in mongodb
You would use a PUT instead of a PATCH.Which means you would have to get the whole existing record, add your new followers to it, and then PUT the whole new record back into the DB. MongoDB Patch...
View ArticleAPP_KEY encryption key issue, intermittent GET error 500
I don't have any experience with the laravel bug you referenced, however if you wish to change your app key, you will get MAC is invalid errors because items that are stored in the system database...
View ArticleRole Access tab does not show components for a service
If I'm seeing this correctly, it's "Admin Application Version: 2.2.0"
View ArticleForgot password API?
To initiate a password reset request POST user/password?reset=true{"email":"youremail@yourdomain.com"} ORPOST user/password{"email":"youremail@yourdomain.com","reset":true} This will email you a...
View ArticleSending Email with No Encryption
Currently DreamFactory does not support SMTP without encryption, however, there is a feature request filed for this.
View ArticleNo valid fields exist in the received table schema (MongoDB)
This bug results from DreamFactory schema editor requiring at least one field to be given in the request, even though MongoDB doesn't have defined fields. Until the bug is resolved, you can work...
View ArticleHow to set Permanent Session for Token in Dreamfactory 2.2.0?
I would recommend against changing df.phpSystem settings should be changed in the .env fileSee http://wiki.dreamfactory.com/DreamFactory/Tutorials/Forever_sessions After you make those changes, you...
View ArticleHow to send and save status(Success/Failure) back to user after performed any...
All successful requests return some data. For example, a successful GET will return the data requested. A successful POST for inserting a record returns the ID of the newly inserted record.You can use...
View ArticleDevelopment to production process
How are people handling the common situation of having a development server and a production server using dreamfactory? IE, I can of course clone my server to get a duplicate envirionment for dev and...
View ArticleDevelopment to production process
Check out the packages feature. You can administer packages from the Admin Console and it has a full API. http://blog.dreamfactory.com/deploying-apps-with-dreamfactory-packages...
View ArticlePosting data to multiple tables with joins is not working
I am trying to post a new record, along with a new child record neither have a primary since this is generated by my database, and is explained on this page that it is not necessary:...
View ArticleRole Access tab does not show components for a service
That was a bug in df-admin app. Thanks, for a hint, Drew Pearce. After updating that component to 2.2.1, it's working. You have saved my sanity
View ArticleJSON JWT Tokens not working
Thanks Drew. I suppose that if I remove API option from the roles-access-requester then it will force JWT on each call. How will we put the JWT logic etc into each request, as of now the calls have...
View ArticleJSON JWT Tokens not working
Check out this info in the docs: http://wiki.dreamfactory.com/DreamFactory/Tutorials/Authentication_and_Authorizationhttp://wiki.dreamfactory.com/DreamFactory/Features/Auth
View ArticleHow to use DreamFactory API service with Laravel Eloquent?
Hello everyone,I'm new to Larave and DreamFactory and I've been learning them for a while and I'm very impressed by this amazing product which is built upon laravel. I want to build an online store...
View ArticleHow to create a temporary table, and discard it afterwards?
The thing I need to do is rather simple. Retrieve updated|new records from the application server.Updates propagate strictly from server to client.GET on scripted endpoint have an additional parameter...
View ArticleHow to verify Users Account by sending email confirmation?
I want to verify Users Account by sending email confirmation . The email must contains the Username and Password. Which he/she entered at registration time.After that, email sent to it's registered Id...
View Article