Forum Activity for @michael

michael
@michael
08/18/15 08:05:27PM
7,832 posts

Notification problem


Using Jamroom

Its just waiting for some eyes on it by the other guys, then it can be released. My concern is that its a setting by the site administrator, rather than the users themselves choosing how many emails they receive.

That's a system level design decision, so need to check its what we are going with.
michael
@michael
08/18/15 08:02:40PM
7,832 posts

Adding A Title To Home Page


Using Jamroom

you can use this function in a template if you want to set it dynamically:
{jrCore_page_title title="whatever you want as the page title here"}
michael
@michael
08/17/15 09:06:54PM
7,832 posts

how can we view influences on a profile????


Using Jamroom

Put a {debug} in the template where you want to use them, see if they are there already.

"{debug}"
http://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug

Look for something like profile_influences.
michael
@michael
08/17/15 09:04:39PM
7,832 posts

Forums in groups not like profile forum


Design and Skin Customization

:) I like it when things get solved.

For the second one, you'll need to adjust the item_detail.tpl file:
ACP -> PROFILE GROUPS -> GROUP DISCUSS -> TEMPLATES -> item_detail.tpl -> MODIFY

locate this piece of code:

{if jrGroup_member_has_access($item)}
   {* bring in the item details *}
   {jrCore_item_detail_features module="jrGroupDiscuss" item=$item exclude="jrShareThis~sharethis"}
{/if}

and change it to:
{if jrGroup_member_has_access($item)}
   {* bring in the item details *}
    {if $item.group_private == 'on'}
      {jrCore_item_detail_features module="jrGroupDiscuss" item=$item exclude="jrShareThis~sharethis"}
    {else}
      {jrCore_item_detail_features module="jrGroupDiscuss" item=$item}
    {/if}
{/if}

Save the modification and activate that template. Then save.
michael
@michael
08/17/15 07:58:25PM
7,832 posts

Forums in groups not like profile forum


Design and Skin Customization

Guesses:
* is the jrComments module turned on? yoursite.com/comment/admin/info
* is the user in a quota allowed to use Comments? yoursite.com/comment/admin/quota

Try those for starters.
michael
@michael
08/17/15 07:20:27PM
7,832 posts

Admin Account


Installation and Configuration

I've managed to create an admin account on your server by disabling javascript. Its not a solution though, but I can see that there is nothing in the error logs to indicate anything wrong.

The next place to look is the servers error logs. Does your server have a control panel that shows the servers errors.

I think you might be right in looking for something permissioned wrongly.

Could you send me the FTP details to support at jamroom dot net.

I'd like to look at the config.php at:
/data/config/config.php

and see if adding www or non-www makes any difference.
michael
@michael
08/17/15 06:28:44PM
7,832 posts

How do i embed iframes?


Using Jamroom

Zero issue with that code here.

added: mixcloud.com

as the iframe tag and posted the code in a blog post. You are posting the code into the < > button in the code section right?
screenshot_iframe_working.jpg screenshot_iframe_working.jpg - 79KB
michael
@michael
08/17/15 06:16:58PM
7,832 posts

Admin Account


Installation and Configuration

Shouldn't need to chmod anything, I never do. But you might if your server is setup differently.

This is the guide I use to setup my server:
https://www.jamroom.net/the-jamroom-network/blog/23/high-performance-jamroom-on-digitalocean

Its looking better though, the failing response at least retuns some json:
http://insert24.de/jr/core/form_validate/__ajax=1?jr_html_form_token=e73b7c06fdfadsf383f578b43d8efdeb0f4ff6&quota_id=1&user_email=0%40saba.com&user_name=admin&user_passwd1=hello&user_passwd2=world

returns:
{"notices":[{"type":"error","text":"Form Validation missing - please refresh and try again."}]}

which is good. Its just the CREATE success that doesnt return any.

Can you look via FTP at:

the error log at:
/data/logs/error_log

and the activity log at:
/data/logs/activity_log

To see if there are any hints at what it could be.
michael
@michael
08/17/15 06:09:00PM
7,832 posts

Add To Cart Button Appearing For All Items On List


Design and Skin Customization

Try removing your code. Seams like your adding code when its not needed if your getting 2 add to cart buttons.
michael
@michael
08/17/15 05:58:22PM
7,832 posts

When we set the "display" setting in form designer, who are we displaying to?


Using Jamroom

Think I answered that in the other thread:
https://www.jamroom.net/the-jamroom-network/forum/new_posts/32338/shifted-profile-from-one-quota-to-another-and-it-disappeared

But I'll put it here too for completeness.

The Form Designer "display groups" the selections you choose are the people or profiles those settings will display for.

eg:
* profile "indexing" is owned by @someuser who is a 'Master Admin'. The "indexing" profile is in the "Quota A" quota.

If the 'display group' has (quota) Quota A selected, then the form field will show.
If the 'display group' has (group) Master Admin selected, then the form field will show.

Quote: ....Are we displaying only to people who can add data? If so, why are there no comparable controls for displaying to let people see the data after it has been entered?....

The Form Designer is for the FORM. It has zero, none at all, control over the output of the data to wherever the data is displayed.

Just because you can put data into the datastore, does not automatically mean that that data is output anywhere at all.

The templates are for outputting data to the user in whatever way you desire.

Form Designer = data into the datstore
Templates = data out of the datastore formatted as desired

Quote: ...The present so-called "form designer" is actually a "form field designer", and there is no obvious process for building a whole form and displaying the completed form (with entered data) to different user groups.....

Its a "form designer" the form fields are the individual entities on there, a select box, a check box, these are form fields. semantics,... I know. :)

In the templates you can have it however you want, your not restricted to how I think it should work, because you can make it however You want it to work. No limits.

A small bit of code like this is how you would check in the templates:
{if strlen($item.profile_name) > 0 }
{$item.profile_name}
{/if}

That reads "If the length of the profile name is longer than zero, then display it.".

Which I think is what your after. You can then extend that as much as you like, eg:
{if strlen($item.profile_name) > 0 }
<h1>{$item.profile_name}</h1>
{/if}
That reads "If the length of the profile name is longer than zero, then display it as a main heading".

or
{if strlen($item.profile_name) > 0 }
Hello my name is {$item.profile_name}, nice to meet you!
{/if}
That reads "If the length of the profile name is longer than zero, then display 'hello my name is _____(profile name)________ ' nice to meet you!".
updated by @michael: 08/17/15 05:59:33PM
  497