Moving everything using Packages messes up my Data
@Julian_Kallidat You can export the system database from dev instance and import in to prod db server. Before import edit the 'create' statement in the .sql file to use another database name and save...
View ArticleUnicode results in custom scripts
I can't seem to get unicode characters to return in custom scripts. For example, a simple Python script like the following has a response body of "San Francisco": cityName = "San Francisco" return...
View Article"POST requests without a resource are not currently supported by the...
Hello!! i am trying to create a page in angularJS that will accept the confirmation code and confirm a user. I have been at this for hours, finished lots of wine trying to wrap my head around this and...
View ArticleFor security reasons, this URL is only accessible using localhost (127.0.0.1)...
Hi, I have installed DreamFactory on the server. When i am opening following URL : http://server_ip/phpmyadmin here i am not able to see phpmyadmin, it is showing "For security reasons, this URL is...
View ArticleInserting usable timestamps in PostgreSQL
Sorry for the late reply.I found the error, it was on the configuration of the database.I delete the db and create a new one and the problem was solved.
View ArticleDF 2.4.1 Add extra information upon open registration
Hi, I have written a little server side script for user.register.post.post_process event that supposedly has to add some extra information that exists in the payload for this particular user in...
View ArticleBest practice to consume REST API from multi-Dreamfactory
I am designing a system that will have several (30) dreamfactory instances on different computers to server data from a mix of SQL databases (mySQL and Postgress) . What would be my best option to...
View ArticleScript for length validation
payload = event.request.payload if payload: if 'name' not in payload: raise ValueError('User name field missing') user_name = payload.first_name if user_name == '': raise ValueError('User name field...
View ArticleScript for length validation
I have also user this:- var lodash = require("lodash.min.js"); if (event.request.payload.resource) { lodash._.each(event.request.payload.resource, function( record ) { if (record.name.length > 15)...
View ArticleFor security reasons, this URL is only accessible using localhost (127.0.0.1)...
@Nishant_Soni this is specific to the PHPmyAdmin app and a scenario I was faced with recently. The best way to access is using SSH tunnel. Bitnami has some steps for this here. Hope that helps!
View ArticleDF 2.4.1 Add extra information upon open registration
I have the same problem here: http://community.dreamfactory.com/t/script-only-working-from-api-docs/3453 I even made an entire API key with specific access to system/user and my GET call uses that...
View ArticleScript for length validation
Are you trying to do this when a user registers? What event triggers this script? The python code you have is from my other post that has never worked, so I don't recommend making calls to system/user...
View ArticleCreating a schema with tables within tables?
Our group is attempting to create a schema that would result in something similar to the the table the image shows, but we're not sure if this is possible without creating multiple tables and just...
View ArticleOpenShift v3 Docker Installation Error
I have the same problem, have you resolved this problem?
View ArticleAccess Control Lists for File Storage?
Hi all! Does anybody know, has DF the ability to create lists of access in local file storage? Example: for user1 is allowed read access on the file /storage/app/images/abc.jpg. But is denied access...
View ArticleDF 2.4.1 Add extra information upon open registration
After having spent more than 20 hours on trying to solve the issue (oh my gosh I don't believe that!) I think I have come with a what it seems that it works, My case is that I want to support open...
View ArticleDF 2.4.1 Add extra information upon open registration
UPDATE!! Sometimes I feel like "Lucky Luke" the European cowboy known as the "man who shoots faster than his shadow!" especially when I'm able to answer my own questions before somebody that I believe...
View ArticleDF 2.4.1 Add extra information upon open registration
Please see below my latest suggested solution and I think it will help you solve the problem!
View Article