Forum Activity for @nate

nate
@nate
01/04/15 08:52:06AM
917 posts

User Also Bought


Jamroom Developers

Does jamroom have a "users also bought" function? Seems I saw one once. I'm thinking of adding that to the mobile app. But only if it's already done on the server side.
updated by @nate: 02/13/15 08:16:10PM
nate
@nate
01/02/15 02:41:40PM
917 posts

Jamroom New User


Jamroom Developers

Perfect.
nate
@nate
01/02/15 02:35:19PM
917 posts

Jamroom New User


Jamroom Developers

Also I have a push notifications id from GCM I need to store for each device.
updated by @nate: 01/02/15 02:36:17PM
nate
@nate
01/02/15 02:33:49PM
917 posts

Jamroom New User


Jamroom Developers

I did look at Proxima and meant to mention it in my question. Can I use it solely for authentication? I need to use my own module for building lists and transactions. Does it have docs?
updated by @nate: 01/02/15 02:37:16PM
nate
@nate
01/02/15 01:47:40PM
917 posts

Jamroom New User


Jamroom Developers

I'm just about done with an Android app for selling music. I just got stripe tested and set up. I need to create user account now. Doing this with an app is gonna be brand new to me. I thought I'd start here.

I have the user email and password. What else would I need to properly create a user account?

What authentication would you recommend or jamroom require?

That's the end of the question. I wanna answer a question now that Brian asked me long ago and I couldn't really answer.

What's the benefits of an app vs browser? The answer is.... The UI. It's more intuitive. Plus the app only does one thing. Promote music. They know how apps work. All apps pretty much work the same. lol

updated by @nate: 02/10/15 04:12:02PM
nate
@nate
12/18/14 09:54:01AM
917 posts

Email Templates


Jamroom Developers

I have a client that want to customize his email templates with some HTML.

Is there a master templates or do I need to edit each one?
updated by @nate: 03/23/15 02:12:33PM
nate
@nate
12/11/14 02:24:02PM
917 posts

Push Notifications


Jamroom Developers

Yeah I am gonna change it to work off a queried ID. I was just curious that the curl_script would work.

Thanks.
nate
@nate
12/11/14 02:17:19PM
917 posts

Push Notifications


Jamroom Developers

I am about to use this script but I wanted to ask you guys if it's worth trying. Though I just started taking some formal php training I have no idea what curl_scrpt requires to run.

So, would the below curl functions work?

<?php

define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array( $_GET['id'] );
// prep the bundle
$msg = array
(
    'message' => 'here is a message. message',
    'title'	=> 'This is a title. title',
    'subtitle'	=> 'This is a subtitle. subtitle',
    'tickerText'	=> 'Ticker text here...Ticker text here...Ticker text here',
    'vibrate'	=> 1,
    'sound'	=> 1,
    'largeIcon'	=> 'large_icon',
    'smallIcon'	=> 'small_icon'
);
$fields = array (
    'registration_ids' => $registrationIds,
    'data'	=> $msg
);
$headers = array (
    'Authorization: key=' . API_ACCESS_KEY,
    'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send' );
curl_setopt( $ch,CURLOPT_POST, true );
curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch );
curl_close( $ch );
echo $result; 

?>

updated by @nate: 01/13/15 05:41:14AM
nate
@nate
12/02/14 07:51:53AM
917 posts

PHP CHarts


Jamroom Developers

Alrighty. I'll give a whirl and see how it works out.

Thanks x3.
nate
@nate
12/02/14 07:35:37AM
917 posts

PHP CHarts


Jamroom Developers

So basically just a jrCore_db_search() function with the chart_days parameters added to the order_by audio_file_stream_count and limit?

Thanks again.
  74