Forum Activity for @paul

paul
@paul
04/09/14 02:15:32AM
4,335 posts

Transferring content to Jamroom


Installation and Configuration

There's nothing off the shelf to do it, so a custom module would be required.
Is it just data or media files as well?
It would be a big job, and with media files, even bigger.
The reason I ask is that I've recently wanted to transfer one JR5 site to another so have started a 'MergeSite' module. Very early days and it still might not come to anything, so don't get excited, but interested if it could be made more 'general purpose' for situations like yours.
paul
@paul
04/09/14 01:56:47AM
4,335 posts

Transferring content to Jamroom


Installation and Configuration

What is your current website running?
paul
@paul
04/08/14 09:35:11AM
4,335 posts

JrSeamless will not work


Installation and Configuration

OK - Check it out now and see what I've done with your index_audio.tpl and index_video.tpl templates in order to make them work with jrSeamless.
Cheers
Pa
paul
@paul
04/08/14 01:25:15AM
4,335 posts

JrSeamless will not work


Installation and Configuration

Sorry for the delay.
Maestro is a third party skin that we don't support so I cannot tell you off hand which templates would need modifying.
Email your Admin and FTP logins to me at paul [at] motagator [det] net and I'll take a look and try to point you in the right direction.
Pa
paul
@paul
04/07/14 01:40:29PM
4,335 posts

run the Genosis from a subdirectory in a site I already have up to test it out.


Genosis

Yes. Copy the free Jamroom5 Core folders/files into a sub-folder, then copy the Genosis folders/files to the same sub-folder.
Create a new database then run the install allocating the new database to this Jamroom5.
It all should then be good for you to try out.
hth
Pa
updated by @paul: 12/29/14 09:23:55AM
paul
@paul
04/07/14 08:13:11AM
4,335 posts

JrSeamless will not work


Installation and Configuration

That code is for displaying audio items. I thought you were after videos and youtubes?
With respect, from all your previous posts, I don't think you are understanding how Jamroom templates work and how you need to modify them to use jrSeamless.
Please explain exactly what you are trying to do, and what skin you are using.
Thanks
paul
@paul
04/06/14 06:36:58AM
4,335 posts

Latest profile youtube added used in a profile


Design and Skin Customization

MAD©:
One last question, Does the jrYoutube module have any code to

hide suggested videos when the video finishes https://developers.google.com/youtube/player_parameters#rel

and

also to loop? https://developers.google.com/youtube/player_parameters#loop

Tricky one that. In short, no. Something would have to detect when the video had finished, but how would it know? If the streaming stopped, it might be just because it stuttered because of a slow connection.
I did once, for a client, do a YT playlist and start a timer based on the YT length in its data, then move on to the next one when timeout occurred. Again, not ideal as the timer may not be totally accurate, or the video may have took a bit of time to start, to have stuttered, so it'll get truncated.

Unless there's are easier trick to this that I'm missing?
paul
@paul
04/06/14 06:29:58AM
4,335 posts

JrSeamless will not work


Installation and Configuration

Create a skin template file called seamless_test.tpl and put this code in it -
{jrCore_include template="header.tpl"}

{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created DESC"}

{jrCore_include template="footer.tpl"}

Run http://www.jamron.sofsweden.com/seamless_test

What do you get? A list of 10 videos? If so, jrSeamless is installed ok and you then need to progress with installing the code snippets given above into your templates to make Youtube/Video items display as you want them to.
hth
Pa
paul
@paul
04/05/14 10:11:53AM
4,335 posts

Latest profile youtube added used in a profile


Design and Skin Customization

The URL you give is the URL to list ALL of a profile's youtubes. I thought this was sometime in the header?
I don't think my code is being run, or its erroring. assigning to 'htp_youtube.tpl' will not work as smarty will think that is an array. There's no reason why my assign to 'youtube_tpl' will not work, I do things like that all the time.
paul
@paul
04/05/14 08:01:21AM
4,335 posts

Latest profile youtube added used in a profile


Design and Skin Customization

    {capture name="template" assign="youtube_tpl"}
        {literal}
            {foreach $_items as $title => $item}
                {jrYouTube_embed type="iframe" width="100%" item=$item auto_play=true}
            {/foreach}
        {/literal}
    {/capture}
    {jrCore_list module="jrYouTube" order_by="_created numerical_desc" limit=1 search="_profile_id = `$_profile_id`" template=$youtube_tpl}
  399