Forum Activity for @ultrajam

SteveX
@ultrajam
02/03/14 05:36:18AM
2,589 posts

Modify Channel validation error


Using Jamroom

When modifying a channel name in the marketplace licenses (here on jamroom.net) I get a validation error, although only letters have been changed. So I can create it as "ultrajam - ultrajam - temporary license" but I can't update it to "Ultrajam - beta - temporary license"
modify-channel.png modify-channel.png - 36KB

updated by @ultrajam: 03/10/14 09:01:16AM
SteveX
@ultrajam
02/03/14 01:18:32AM
2,589 posts

License browser with ip address: invalid domain


Using Jamroom

When clicking on the "view license" button in the license browser here on jamroom.net, it seems that if the user is using an ip address as the domain I cannot view the license. I get the error message "invalid domain" and an returned to the table of licenses.

https://www.jamroom.net/ultrajam/networkmarket/license_browser
updated by @ultrajam: 03/07/14 06:41:06AM
SteveX
@ultrajam
02/03/14 01:12:57AM
2,589 posts

Where can I download ujCategories ?


General

The reason is that it is still in a Private Release channel. I still have a few things to finish off on it, and I haven't decided a price yet.

If you need to use it/want to buy it let me know and I'll get something sorted to get you access to it. If you do want to do that, make sure you have installed one of the free modules so that you already exist within the license system and I should be able to get that into another channel and available to you via invite.
updated by @ultrajam: 02/03/14 01:23:47AM
SteveX
@ultrajam
02/02/14 02:33:13AM
2,589 posts

FB Share Wrong meta


Using Jamroom

Meta tags must be in the head of the document, you cannot put them in your item_list template.
http://developers.facebook.com/tools/debug
SteveX
@ultrajam
01/31/14 09:37:31AM
2,589 posts

Aparna module with audio or uploaded files that are marked required


Jamroom Developers

Quote: It defaults to the update page instead of the create
That could be some problem with modules made with aparna then, I don't know, I haven't used it.

Apart from registering the forms as designerable a module doesn't have much to do.
If you have something similar to these lines in your module's init function in include.php everything is handed over to the core, even the adding of the form designer buttons.
   jrCore_register_module_feature('jrCore','designer_form','myModule','create');
jrCore_register_module_feature('jrCore','designer_form','myModule','update');

Form designer works as a magic view for each module: /mymodule/form_designer. The designer forms and fields, editing them, storing and retrieving from the db, are all managed by the core as well.
SteveX
@ultrajam
01/31/14 09:12:05AM
2,589 posts

Aparna module with audio or uploaded files that are marked required


Jamroom Developers

Quote: edit: hmmm in the Aparna module the only option I have is ADD TO CREATE FORM
Then you are looking at the update form. On the create form it will say "add to update form"

From your screenshot, click the Form Designer button, you will be on the Create form page. You should be able to jump between the forms using the select menu top right.

Switch to the Update form, then click the Modify button for the "audio file" field. At the bottom uncheck Required and save.
create-update.png create-update.png - 18KB

updated by @ultrajam: 01/31/14 09:12:26AM
SteveX
@ultrajam
01/31/14 08:49:07AM
2,589 posts

Aparna module with audio or uploaded files that are marked required


Jamroom Developers

If you click the Form Designer button on a create form you edit the create fields, and click it on an update form to edit the update fields.

Create and update are separate forms in the form designer.
SteveX
@ultrajam
01/31/14 08:26:49AM
2,589 posts

Aparna module with audio or uploaded files that are marked required


Jamroom Developers

It is because you are requiring an upload in the update form.

If you require in the create form, and then NOT require in the update form that will give you exactly what you are looking for.

The require isn't a requirement for the file to exist, it's a requirement for an upload in the current form.
SteveX
@ultrajam
01/31/14 03:33:12AM
2,589 posts

Aparna module with audio or uploaded files that are marked required


Jamroom Developers

If you require the file upload in the create form and don't require it in the update form that should give you something close to what you want. The file can't be deleted in the update form, but it can be replaced with a new file. Or is it that you wnat the file to not be changeable after the initial upload?
  208