Adding Javascript libraries to Bitnami DF 2
hi, Say I want to include some JS libraries like momentjs, parsley etc, what would be the ideal location to put them keeping in mind future upgrades too. I am using V8js. I want to be able to use them...
View ArticleHow to display all users in the Admin > Users tab?
Hey Allen. Sorry you had a hard time with your upgrade previously. Those instructions are the correct instructions. I'm going to add some notes today about potential problems people run into.However,...
View ArticlePost to DF mongoDB from custom v8js script
I have given a guest role access to one of the custom v8js server side script. From inside the script I want to be able to post data to the DF included MongoDB instance. When I execute the post...
View ArticleHosted website css stylesheet problem
Further investigations. The Response Headers tells me X-Powered-By: PHP/5.5.31. So the Problem comes not from the apache but a PHP configuration - I guess. But I still couldn't solve it.
View ArticleHosted website css stylesheet problem
Fix for this is coming in the next release.May already be available in the develop branch of the repo -- just know that the dev branch is not fully tested for stability (hence why it's not released...
View ArticleInstall DreamFactory on WAMP
I have setup DF on my windows server 2008 and SQL Server 2012 and apache (WAMP) on this URL http://df.i-bitz.co.th/setup_db. And i found error like this Installation failed. Please run the migration...
View ArticleHow Can I Use Emojis in Dreamfactory?
Emojis are not "stored" in the database, but a text representation of them. Probably you've noticed that in order to include emojis in your message you saw the word "grinning" between two semicolons....
View ArticleAdding Javascript libraries to Bitnami DF 2
For V8js server side scripting you can store javascript files to be included in [DF Installation]/htdocs/storage/scripting. Then just require them the same way you mentioned in the OP.
View ArticleInfo regarding default database services
Hi! All depends on the demand for your application. If you were not using DreamFactory would you setup a local MySQL/MongoDB installation to store your data? Or would you go for RDS from start? If you...
View ArticleCustom script - Insert query parameters into MongoDB - write to log
Are you able to insert the records you want via API Docs? If so, all you have to do is replicate the same proccess using your script, i.e.: platform.api.post('/yourmongodfservice/_table/yourtable',...
View ArticleQuery filter in javascript sdk
if this is 1.x, try'filter=userid%3D' + id + ' AND batch%3D' + 1 in 2.x the conditions need to be in parentheses'filter=(userid%3D' + id + ') AND (batch%3D' + 1 + ')'
View ArticleQuery filter in javascript sdk
@Mathieu_Gauthier, the response from @drewpearce is concise and precise, and you can find more information in the docs:...
View ArticleNode custom scripting error
It looks like there is some problem in your script. Please share your code so we can have a better idea of what is going on.
View ArticleCustom script - Insert query parameters into MongoDB - write to log
Alright, thanks a lot for the info and links. Btw the custom script is being called by a guest role. I guess I wouldn't need to pass additional credentials or authorization when calling the api.post...
View ArticleNode custom scripting error
There were some significant bugs with Node in 2.1.0 -- resolved in 2.1.1.I don't know off the top of my head if this was one of them, but it might be worth upgrading to see.
View ArticlePOST to Remote Web Webservice
Hi, My dropwizard server cant parse any json sent by DF(2.1)I dont know what is wrong with this call... Sending the same data using Postman, works like a charm. var options = { "CURLOPT_HTTPHEADER": [...
View ArticleHow Can I Use Emojis in Dreamfactory?
Hi Elvis, Thanks for Your Response, I use my post data like $post_method= $platform['api']->post;$postbody='{ "resource": [ '.json_encode($resource).' ] }';$payload = json_decode($postbody,...
View ArticlePOST to Remote Web Webservice
Not sure though but can you try passing the payload this way var payload = { "resource": [ { "deviceId": "d7d8ede787de78d7" } ] };
View ArticleDreamFactory Enterprise: Public Beta
Thanks @drewpearce . Where can I get support and pricing info for DF Enterprise ?
View Article