Forum Activity for @michael

michael
@michael
02/25/19 06:27:37PM
7,828 posts

Filesize issues.


Using Jamroom

Thats it though, change it and you'll see the warning message size change.

How big do you need it to go up to?
michael
@michael
02/25/19 05:45:10PM
7,828 posts

New Custom Account Tab


Jamroom Developers

This is how the jrAudio module registers with the form designer in its _init() funtion in include.php

    // Allow admin to customize our forms
    jrCore_register_module_feature('jrCore', 'designer_form', 'jrAudio', 'create');
    jrCore_register_module_feature('jrCore', 'designer_form', 'jrAudio', 'update');
    jrCore_register_module_feature('jrCore', 'designer_form', 'jrAudio', 'create_album');
    jrCore_register_module_feature('jrCore', 'designer_form', 'jrAudio', 'update_album');
The last parameter is the name of the form, the same as the URL its on, so for you that looks like 'custom'.

Maybe if you have the $_profile_id you can store your info in your datastore on that, then look up to see if it exists when the form is visited.
michael
@michael
02/25/19 05:36:53PM
7,828 posts

New Custom Account Tab


Jamroom Developers

This code that you have in your _init() should be making the title appear:
jrCore_register_module_feature('jrUser', 'account_tab', 'myCustomModule', 'custom', 1);
What is the language string for 1? that should be the title. Maybe hard code it
jrCore_register_module_feature('jrUser', 'account_tab', 'myCustomModule', 'custom', "your title");
michael
@michael
02/25/19 05:32:20PM
7,828 posts

Filesize issues.


Using Jamroom

try
ACP -> MODULES -> CORE -> IMAGE SUPPORT -> QUOTA CONFIG -> MAX IMAGE FILE SIZE
img_size.jpg img_size.jpg - 274KB
michael
@michael
02/25/19 05:24:03PM
7,828 posts

Filesize issues.


Using Jamroom

Its not clear where the upload is being uploaded to. Is it album art, or a comment attachment. Could be its governed by a different setting. Its not a server issue though, its a jamroom setting.
michael
@michael
02/25/19 05:01:00PM
7,828 posts

Filesize issues.


Using Jamroom

There is a Quota setting in the ACP at:
ACP -> SYSTEM CORE -> CORE -> QUOTA CONFIG -> MAX UPLOAD SIZE

Its probably that.
quota_file_size.jpg quota_file_size.jpg - 339KB
michael
@michael
02/24/19 06:33:33PM
7,828 posts

new question on re-ordering gallery images


Using Jamroom

Its really interesting that the pen works to drag-n-drop, but it doesnt fire the save function for whatever reason.

It could be an issue with the under-lying javascript system we use (called jQuery) that a future update to that system will fix. So there is a possibility it could come right on its own.
michael
@michael
02/24/19 06:16:05PM
7,828 posts

new question on re-ordering gallery images


Using Jamroom

There are javascript 'things' we can use to trigger 'stuff' ;) eg, one of them is:
onClick
so the issue probably is the javascript that is sending a different code that we'd need to setup the system to listen for. Not impossible, but not high priority and I dont have a drawing pen, so hard for me to build.
michael
@michael
02/23/19 04:40:47PM
7,828 posts

Audio cover art


Using Jamroom

The ID3 settings of the uploaded .mp3 file do not get altered. If you uploaded the file and it had cover-art embedded, then it should still be there when you download the .mp3 file.

The placeholder image that is uploaded to the jamroom site to represent the audio file does not get added to the .mp3 file.

--edit--
There are some other threads about this same issue, maybe some useful info in there:

https://www.jamroom.net/the-jamroom-network/forum/using-jamroom/56426/audio-module-id3-meta-album-art

https://www.jamroom.net/the-jamroom-network/forum/jamroom-developers/33159/how-to-add-cover-image-in-mp3-files

https://www.jamroom.net/the-jamroom-network/forum/using-jamroom/10227/mp3-metadata
updated by @michael: 02/23/19 04:44:48PM
michael
@michael
02/20/19 07:46:17PM
7,828 posts

New Custom Account Tab


Jamroom Developers

If you want the output on the users profile, then not index.php, use profile.php. Very similar to index.php except the views come out on the users profile.

Take a look at one of the modules that has a profile.php file, maybe jrDocs perhaps. in it you will see a function:
profile_view_jrDocs_default()

Which will show at:
yoursite.com/(users profile url)/docs

for that user.
  95