Forum Activity for @madc

MAD
@madc
03/30/14 08:32:16AM
600 posts

Jamroom Forum New Posts?


Jamroom Help

I updated the above @chorton581.
Forgot about the images :)
MAD
@madc
03/30/14 08:15:53AM
600 posts

Jamroom Forum New Posts?


Jamroom Help

That is just simple edit I added from support here calling in form designer fields I created.

First I added fields to the artists form designer like

profile_homepage
profile_facebook
profile_twitter
etc etc

then I called on them in my profile_header.tpl

I am using a cloned Nova skin so I edited them direct.
if you are using a default skin you will have to edit them in the ACP. Then you will have to compare your files after any skin update


I created a div for them in the section ( social )
You can style it any way you want

I made it so only anyone above members could use it ( ignores quota id = 3 which is members )

Also in the form designer I only allowed certain groups ( quotas ) to see or use that field
So when I created a field eg. profile_facebook
I only selected the quotas I wanted to be able to use them.
If you want everyone to use the field , just highlight Normal Users before saving and remove the if statement below and closing if
It won't show on everyones page even if they fill it out unless you remove that.


My code in profile_header.tpl

{if $profile_quota_id != '3'}
              <div class="block social"> {* my div *}

                 {if strlen($profile_homepage) > 1}
                    <a href="{$profile_homepage}" target="_blank" title="Visit {$profile_name} on their Home Page">{jrCore_image image="homepage.png"}</a>
                  {/if}
                  {if strlen($profile_facebook) > 1}
                    <a href="{$profile_facebook}" target="_blank" title="Visit {$profile_name} on Facebook">{jrCore_image image="facebook.png"}</a>
                  {/if}
                  {if strlen($profile_twitter) > 1}
                    <a href="{$profile_twitter}" target="_blank" title="Visit {$profile_name} on Twitter">{jrCore_image image="twitter.png"}</a>
                  {/if}
                  {if strlen($profile_googleplus) > 1}
                    <a href="{$profile_googleplus}" target="_blank" title="Visit {$profile_name} on Google+">{jrCore_image image="googleplus.png"}</a>
                  {/if}
                  {if strlen($profile_youtube) > 1}
                    <a href="{$profile_youtube}" target="_blank" title="Visit {$profile_name} on Youtube">{jrCore_image image="youtube.png"}</a>
                  {/if}
                  {if strlen($profile_myspace) > 1}
                    <a href="{$profile_myspace}" target="_blank" title="Visit {$profile_name} on MySpace">{jrCore_image image="myspace.png"}</a>
                  {/if}
                  {if strlen($profile_bandcamp) > 1}
                    <a href="{$profile_bandcamp}" target="_blank" title="Visit {$profile_name} on Bandcamp">{jrCore_image image="bandcamp.png"}</a>
                  {/if}
                  {if strlen($profile_lastfm) > 1}
                    <a href="{$profile_lastfm}" target="_blank" title="Visit {$profile_name} on LastFM">{jrCore_image image="lastfm.png"}</a>
                  {/if}
                  {if strlen($profile_reverbnation) > 1}
                    <a href="{$profile_reverbnation}" target="_blank" title="Visit {$profile_name} on Reverbnation">{jrCore_image image="reverbnation.png"}</a>
                  {/if}
                  {if strlen($profile_soundcloud) > 1}
                    <a href="{$profile_soundcloud}" target="_blank" title="Visit {$profile_name} on Soundcloud">{jrCore_image image="soundcloud.png"}</a>
                  {/if}
                  {if strlen($profile_bandpage) > 1}
                    <a href="{$profile_bandpage}" target="_blank" title="Visit {$profile_name} on Bandpage">{jrCore_image image="bandpage.png"}</a>
                  {/if}
                  {if strlen($profile_bandzone) > 1}
                    <a href="{$profile_bandzone}" target="_blank" title="Visit {$profile_name} on Bandzone">{jrCore_image image="bandzone.png"}</a>
                  {/if}
                  {if strlen($profile_bigcartel) > 1}
                    <a href="{$profile_bigcartel}" target="_blank" title="Visit {$profile_name} on Bigcartel">{jrCore_image image="bigcartel.png"}</a>
                  {/if}
                  {if strlen($profile_purevolume) > 1}
                    <a href="{$profile_purevolume}" target="_blank" title="Visit {$profile_name} on Purevolume">{jrCore_image image="purevolume.png"}</a>
                  {/if}
                  {if strlen($profile_rhapsody) > 1}
                    <a href="{$profile_rhapsody}" target="_blank" title="Visit {$profile_name} on Rhapsody">{jrCore_image image="rhapsody.png"}</a>
                  {/if}
                  {if strlen($profile_spotify) > 1}
                    <a href="{$profile_spotify}" target="_blank" title="Visit {$profile_name} on Spotify">{jrCore_image image="spotify.png"}</a>
                  {/if}
                  {if strlen($profile_tumblr) > 1}
                    <a href="{$profile_tumblr}" target="_blank" title="Visit {$profile_name} on Tumblr">{jrCore_image image="tumblr.png"}</a>
                  {/if}
                  {if strlen($profile_instagram) > 1}
                    <a href="{$profile_instagram}" target="_blank" title="Visit {$profile_name} on Instagram">{jrCore_image image="instagram.png"}</a>
                  {/if}

              </div>
{/if}


I have since found a better way to do the above but haven't implemented it yet.
But that will get what you want

Then I created equally sized icons for each field and added them to the root img directory so they could be called
by the jrCore-image
eg

homepage.png
facebook.png etc

So now when a field gets filled in it will automatically add the social icons.
Also the facebook field is used at our site to populate the facebook feed box.
but that takes a little bit more to get that to work but is easy enough


1. Create the fields you want to add in the form designer
2. Add the above using YOUR field names
3. Create your icons for them and add them to your main img directory
4. Run integrity check and clear caches just to make sure
5. Done

any more help just holler

cheers
MAD©
updated by @madc: 04/01/14 05:14:39AM
MAD
@madc
03/30/14 07:59:16AM
600 posts

Admins Need to upload files of up to 250mb


Installation and Configuration

Thanks @brian!

That worked after 3 tries.
The edits weren't sticking for some reason. ( stoopid webmin )
Seems the memory limit was stuck at 256mb. I did an upload of the php.ini file and it stuck.

I read the util.php and saw all the different conversions and was wondering why ours was still showing 64 max.
Anyway all good now.

I had some concern as we host two large sites on two different accounts/ip's on our dedicated server .
I was making sure the other site had control over the uploads in it's code.
It does so it was safe to do it server wide.
Thanks again mate. I will get onto that email you sent me shortly.
Trying to tie up loose ends here. After that I will submit all the info you need :)
MAD
@madc
03/30/14 06:52:29AM
600 posts

Admins Need to upload files of up to 250mb


Installation and Configuration

Is there any reason why an Admin can't do what he wants? Like upload anything...After all it is his server?
We only need admins to be able to add larger files...But in the quota config it says 64MB - Max Allowed.
Thats not ok for an admin...he should have full reign.
How do we fix.

ps. Looked at this and our php.ini file is set to min 500mb and it still won't work
https://www.jamroom.net/brian/documentation/guides/1206/configuring-and-optimizing-php-5
updated by @madc: 03/30/14 06:53:59AM
MAD
@madc
03/30/14 06:22:20AM
600 posts

Admins Need to upload files of up to 250mb


Installation and Configuration

Jamroom doesn't allow this?
I have set up a php.ini file in my webroot and added
memory_limit = 1300M
post_max_size = 1300M
upload_max_filesize = 1300M
Just in case as i read in the docs it has to be at least a quarter of the size.
Our main php.ini file is set to 600mb. But we cant upload anything bigger than 32mb
How do I fix this in JR?

updated by @madc: 05/23/14 05:42:20AM
MAD
@madc
03/24/14 06:45:44PM
600 posts

mp3 importer


Design and Skin Customization

Great to hear about the ogg converter @brian !
MAD
@madc
03/24/14 10:13:44AM
600 posts

Scheduled Integrity check of YouTube, SoundCloud, Vimeo


Suggestions

ok cheers @brian...Love the support here ;D
MAD
@madc
03/24/14 10:01:33AM
600 posts

Scheduled Integrity check of YouTube, SoundCloud, Vimeo


Suggestions

Hmmm... How did you work out that?
We haven't changed much on the front page instead of bringing in new tpl files which have been weak

Just wondering how you got to 5.8mb in size???
MAD
@madc
03/24/14 09:50:40AM
600 posts

mp3 importer


Design and Skin Customization

You know @izhmel

You can use a html5 responsive player in the same sections which can be linked by a generated xml file?
That is what we are doing as we have a podcast section of almost 60gb uncompessed
We cant afford the double files space as they are already mp3 ( and we are on a huge dedi but if it was going to work everwhere we wouldn't mind the ogg size)

So we would rather bring them in via an external player that suits both areas.....mp3 and Ogg
As they are both used, know, and if you have a iP#### you can still hear the tunes
Not IOS etc rather android,than your songs will play if you have Ogg files attached.


So my opinion would be to add a player that imports, converts to each item, and plays in all players.

Because unfortunately, the jr player only caters for mp3's which doesn't work on about 30% of phones.
So forget the datastore in a way and bring in a html5 Responsive Player that works for you
updated by @madc: 03/24/14 09:57:16AM
MAD
@madc
03/24/14 09:31:19AM
600 posts

Scheduled Integrity check of YouTube, SoundCloud, Vimeo


Suggestions

MAD©:
Because when I run this link in the ACP
https://www.mysite.com/youtube/integrity_check,
It hangs after checkin 90 videos and never completes

Since that happened we haven't ran it again
We have at the moment 1879 YT Videos
So we would need this fixed first otherwise......won't it just hang every time?

Did you fix if we set them to int check they don't hang like the module?
Or is it just me
You've got log in's still @brian. you will see what happens?

Cheers
updated by @madc: 03/24/14 09:33:31AM
  17