Forum Activity for @developer-networks

Developer Networks
@developer-networks
08/28/14 04:01:36PM
566 posts

Installing the Proxima Beta


Proxima

Im very excited to play with this. I have had a game put on hold the last 2 years yet always planned on using Jamroom to power the user accounts! Tried installing Proxima today to give it a run and it says invalid marketplace license.
Invalid.jpg Invalid.jpg - 120KB

updated by @developer-networks: 12/29/14 09:23:55AM
Developer Networks
@developer-networks
08/21/14 01:32:50AM
566 posts

Mobile Audio Not Playing in Android


Using Jamroom

Dazed:
Yeah do not want to go down that road. I am using a note 3 (these are new) which worked a month ago so something has changed.


Heres a chart http://mobilehtml5.org/

My best advice would be to try running chrome as your browser on your android device and see if you can play audio.
Developer Networks
@developer-networks
08/20/14 07:57:49AM
566 posts

Mobile Audio Not Playing in Android


Using Jamroom

Try setting the jrAudio module to "mp3 + ogg" in your global config.


then go to the tools and convert audio to clean it up with the right format.

I believe the ogg format is the android native format they were using before html5 mp3 came along. The older android devices are troubled playing audio on the web.
Developer Networks
@developer-networks
08/18/14 04:49:57AM
566 posts

New Artist


Using Jamroom

The above code will work if you want to show a user that is logged in he/she is a veteran on the profile menu lets say. However if your needing to populate a charts row with that data to a bunch of members you would have to spin off of what I have created by making a module that saves the membership days and then youll be able to call {$profile_memberdays} or something
Developer Networks
@developer-networks
08/18/14 04:22:01AM
566 posts

New Artist


Using Jamroom

               {$xxa = $smarty.now}
               {$xxb = $_user._created}
               {$myTime = $xxa - $xxb}
                you signed up:   {$myTime|date_format:"%j"|round:"2"} days ago!
                {if $myTime|date_format:"%j" < '030'}
                 your a rookie!
                {elseif $myTime|date_format:"%j" > '030'}
                    your a veteran!
                {else}
                    Can not verify time!
                {/if}

signup.jpg signup.jpg - 37KB

updated by @developer-networks: 08/18/14 04:40:35AM
Developer Networks
@developer-networks
08/17/14 03:18:47PM
566 posts

New Artist


Using Jamroom

               {$xxa = $smarty.now}
               {$xxb = $_user._created}

                 {$myTime = $xxa - $xxb}

                you signed up: &nbsp; {$myTime|date_format:"%j"} days ago!
Developer Networks
@developer-networks
08/17/14 11:48:24AM
566 posts

The message contact form not working


Using Jamroom

Its in the language file for the skin your working in.
Developer Networks
@developer-networks
08/17/14 03:11:58AM
566 posts

Stream length not working


Using Jamroom

Also i noticed when visiting your site

you had a lot of mixed sample rates... 30 sec., 45 sec, ect.

go to your jrAudio global configuration and set the sample rate to something standard for your site.

Then go to jrAudio -> tools -> convert audio tab.

let it run its course and when its done clear the data/cache folders.
Integrity check.

If its still not converting the audio on your site see step #1 above.
Developer Networks
@developer-networks
08/17/14 02:57:08AM
566 posts

Stream length not working


Using Jamroom

Couple things could naturally cause this.

- Permissions on the sox folder. Make sure its executable.
- Permissions on your data folder, make sure its writable.
* run a system & integrity check make sure everything is in order.

What makes Jamroom create the sample?
Well you need to have a ecommerce module installed and set up like jrFoxyCart.

If the song has a price on creation it also creates a sample based on your module configuration settings.

If your all set up properly and its receiving the error still as stated above I would guess its something like youve updated and need to make the sox file executable or a permission somewhere in your server administration is wrong.

Also make sure your running the latest version of the files. I would even go as far as reloading them if it sounds they are corrupted on your system.

- back up your work before doing anything.
updated by @developer-networks: 08/17/14 03:14:07AM
Developer Networks
@developer-networks
08/13/14 08:37:22PM
566 posts

Paypal Button


Design and Skin Customization

wow thanks Douglas! I was able to use:
{if jrCore_module_is_active('jrPayPal')}
{jrPayPal_buy_now_button module="jrAudio" item=$item}
{/if}


and it worked perfectly!
  25