Forum Activity for @michael

michael
@michael
10/16/16 06:51:21PM
7,826 posts

Using the old Ning profile data, and adding backup contact-address field in the user-account form


Ning To Jamroom

Your site, your choice. :)

Personally I would think exactly the same fields in both. Cant think of a situation where I want the user to be able to add info, then not be able to update it.

The profile create form is only going to be usable by users who you allow to create extra profiles, like "Power Users"

Docs: "User: Power User"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2982/user#power-user

For users who get their profile when they create their user account by signing up, they will only ever see the UPDATE form.
michael
@michael
10/16/16 06:43:59PM
7,826 posts

Simple Chat Permissions Denied to Site Admins


Installation and Configuration

try logging out and back in again. Could be something did something weird and kicked you out of the system.
michael
@michael
10/16/16 06:40:17PM
7,826 posts

cri mysql error in shops...only when logged out


Design and Skin Customization

The issue looks to me like the WHERE part
WHERE ORDER B........
There is no WHERE parameter. Same query with WHERE 1 would even work.

WHERE 1 ORDER B........

Whats the template code that generates that query?
michael
@michael
10/16/16 06:34:47PM
7,826 posts

Can de-activated members continue sending private notes if still logged in?


Using Jamroom

Your form designer work around is still valid, the block function just expands on that. It puts a BLOCK column in the "Data Browser" so with one click you can set user_active to 0 and adds a new user_blocked and sets that to 1.

In the profile form it sets profile_active to 0 too.

So the user account and the profile account are both inactive and cant be used. The users is forced logged out and their session is destroyed so they are outside and cant get back in. Their profile cache is reset so the profile is no longer visible and any cookies are deleted. They will appear to the system as a visitor.

The method of adding user_active to the user account is still a perfectly valid way of stopping them from logging in. They will not be able to login if they have user_login set to 0 BUT if they are already logged in and that is changed from 1 to 0 they will not be forcibly logged out.

Thats where the block button helps. It logs them out if they are logged in.
michael
@michael
10/16/16 06:19:28PM
7,826 posts

Can the skin global config section be more self-explanatory?


Using Jamroom

michael: Did you clone it?
strumelia: Yes
michael: then changes to the default skin wont effect you.
strumelia: :)
michael
@michael
10/16/16 06:15:49PM
7,826 posts

How to list upcoming events in a Widget from the Calendar. Problem skipping todays event.


Installation and Configuration

{$smarty.now} is a timestamp in seconds so you could try greater than yesterday to include todays stuff.

1 day in seconds = 86400

Try:
{jrCore_list module="jrEvent" search1="event_date >= `$smarty.now-86400`" limit="2"}
michael
@michael
10/16/16 06:10:34PM
7,826 posts

Understanding Server Load and when to upgrade


Using Jamroom

Its all a balancing act. If your server is at 90% diskspace, then you're going to need to upgrade to get more diskspace or delete stuff to make room.

If your site is starting to throw errors in your activity log about time taken to process stuff, you might need more CPU power, like many people uploading tons of audio. Even if you have space to fit it on the server, the conversion process continuously running while also having many visitors to your site may mean you need more CPU power.

If you had a Ton of content, but not very active, diskspace is your main issue. If you had a ton of visitors to your site, CPU. If your visitors main activity is streaming video, CPU, Memory and Bandwidth.

CPU Cores
Quote: Server CPU (Processor) Cores

This is the number of processors in the server

The higher the number of processors, the larger load the server can handle.
Memory
Quote: Server Memory (RAM)

The amount of memory (in Gigabytes) that the server has

The higher the amount of memory, the more simultaneuous users can be on your site at one time.
SSD Disk Space
Quote: Server SSD Disk Space

This is the amount of Disk Space (in Gigabytes) on the server.

All Jamroom Hosted servers use premium enterprise grade SSD (Solid State Disks) - these can be up to 100 times faster than older hard drives.
Network Bandwidth
Quote: Server Network Bandwidth

This is the amount of dedicated bandwidth (in megabits or gigabits per second) available to the server.

The higher the bandwidth the more simultaneous users can be on your site at the same time. If your site streams media (audio, video) higher bandwidth is better.
michael
@michael
10/16/16 05:16:40AM
7,826 posts

Is there a date setting that needs to be checked?


Installation and Configuration

Got steps to reproduce that? I did the obvious:
PROFILE -> BLOG -> +

and the date shown was 10/16/16. published it and it showed as 2016-10-16.

No timemachine yet. (maybe when ASI gets here. ;) )
michael
@michael
10/15/16 11:43:07PM
7,826 posts

cri mysql error in shops...only when logged out


Design and Skin Customization

The query should show up in the activity log under the ?. paste it here.

If you're saying that it only happens when {debug} is placed in your code, try placing debug somewhere else.
michael
@michael
10/15/16 11:32:03PM
7,826 posts

Site Builder Widget behaviour - Forums, Photos and Timeline


Installation and Configuration

Better to put questions like this in its own thread so someone searching might find the answer, perhaps:
"How to list upcoming events"

The answer is:
value="event_date >= `$smarty.now`"
  329