How to check if user email/name is taken
Here is how I would address this:Create another app (api key) that is not shared publicly.Create a role with GET access via SCRIPT on system/user and system/user/*Create an event script on...
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
@tunde in your actual sql filters, for start with and contain you should be using LIKE and wildcards (%). See documentation here: Querying Records with Filters @Elvis_Fernandes I have confirmed the...
View ArticleMultiple CORS Origins to Paths *
In your CORS setting you can put multiple origins in one entry. They just need to be comma separated.For example: http://localhost:8080,https://dreamfactory.com
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
@drewpearce Thanks.Can you confirm if lookups can be used as input parameters for stored procedures? @Elvis_Fernandes Can you share the work around experience you have with server side scripts to...
View ArticleSQL database connection error
I followed this guide: http://wiki.dreamfactory.com/DreamFactory/Installation : $ git stash$ git checkout master$ git pull origin master//self-update is optional, try it if you get an error without...
View ArticleSQL database connection error
Yes. The error indicates that your system db migrations did not complete successfully. You can start at the the line $ ../../../php/bin/php artisan migrate --seed and continue to the end
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
@tundeActually I didn't use server side scripts to filter data, I just thought of a temporary solution for this problem. I understand that using server side scripts to filter data maybe a wrong use of...
View ArticleSQL database connection error
If everything was that easy I did the steps and it's working now. Not sure what I did wrong last time.
View ArticleUpdate custom field when updating role?
@drewpearce Is this API GET http://yourbaseurl/rest/system/role/3?related=lookup_keys to get lookup keys for a role still a feature of V2 ?
View ArticleShow and download image from fileserver
Hey, i had uploaded some images withe the rest api on the file server. The files are stored on my own server under /opt/df2/storage/app/upload/12. For my project i want to show an image inside the...
View Articlev2.0 Remote Web Service - headers not passed across
Hi, I am trying to connect to an external REST service which uses Basic Authentication. I have followed the tutorial on adding Remote Web Service, including ticking the "Pass from Client" box in the...
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
@drewpearce I tried what you recommended with DF 2.0.4 and was not successful. Incidentally, I used to get this working with filters with DF 2.0.2 but noticed that now the params sent as date for...
View ArticleUpdate custom field when updating role?
you'll want to use related=role_lookup_by_role_id in DF 2.0
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
Can you provide the original query that generated this error? It will help troubleshoot and/or file a bug report.
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
@drewpearce Thanks. Kindly find below. [2016-01-14 19:42:40] local.INFO: * Script "POSVASDB.table.chnotifications.get.pre_process" output:object(Object)#1175175130 (5) { ["filter"] => string(46)...
View ArticleNeed Additional Support?
Hey guys, just wanted to make sure everyone here knows about our support subscriptions. These plans are geared toward customers who need responsive email, chat, and phone support for DreamFactory. If...
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
tunde: string(46) "ins_ts >= 2016-01-01 and ins_ts <= 2016-01-13" Try this instead: string(46) "(ins_ts >= 2016-01-01) and (ins_ts <= 2016-01-13)"
View ArticleServer-side filter returns SQL error when using "contains" or "starts with"...
@drewpearce Thanks a lot, that fix it. Great platform! Looking forward to getting lookup keys defined for roles working for tables and stored procedures for use with Server Side Filters in the next...
View Article