Forum Activity for @michael

michael
@michael
03/20/14 11:53:12PM
7,832 posts

Profile name with character "é" , the "e" is removed from the URL


Using Jamroom

The system is stripping any non alphnumeric characters because they are not allowed in the url.

If you knew what possilbe replacements were for the characters you wanted, it might be possile to create a quick module to listen for them and replace the ones you know é with one you want it to be 'e'.

right now by default, its alphanumeric.
michael
@michael
03/20/14 08:44:38PM
7,832 posts

Error 500 on installation


Installation and Configuration

I've seen the same issue. I also like the "upload the zip, then unpack it on the server" route. Much quicker.

But the problem is that the permissions get preserved. So I think jbservers wants the folders set to 755 and the files to 644.

But unzipping the package via the file manager in cpanel sets them to 700 and something else.

But when you upload all the files individually via FTP the permissions get set correctly.

little bit of a pain, but easier than running round looking for files permissioned wrongly.
michael
@michael
03/20/14 08:38:59PM
7,832 posts

A Page specifically for Free Audio Downloads


Using Jamroom

The problem is your trying to look for a value that might not be there 'audio_file_item_price'.

Not sure there is currently a syntax to search the database for something that isn't there.
michael
@michael
03/20/14 04:33:43PM
7,832 posts

Aparna clone text area problem


Jamroom Developers

Its going to depend on what you want to do.

aprana gives you a module to start expanding on, so how you expand depends on what you want to do.

What you have in that {foreach} loop is all the variables that are available to you. Pick the ones you want to use, then structure them how you want to see them.

remove the {foreach} loop and call the wanted items directly.

eg:
{$item.xxxxxx_title}

{$item.xxxxxx_body}

or whatever you called the fields you used when creating them via the Form Designer

"using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer
michael
@michael
03/19/14 07:57:42PM
7,832 posts

Player on custom skin broken after update


Design and Skin Customization

The image looks like its missing the CSS for the player.

Are the players working on a default skin. (if yes then we need to figure out whats different between the two.)

If no, are there any javascript errors in the console. (guessing that perhaps some js is broken which prevents other non-broken javascript from firing.)
michael
@michael
03/19/14 07:05:07PM
7,832 posts

Check Password While User Account Creation


Jamroom Developers

Changing fields is usually the job of the "Form Designer". The exception to that rule is the login form.

You can add the login form to any page via the code here:

"Howto add the user login form to any page"
https://www.jamroom.net/the-jamroom-network/documentation/howto/603/howto-add-the-user-login-form-to-any-page

For standard forms, you can alter with the Form Designer:

"Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer
updated by @michael: 12/29/14 09:23:55AM
michael
@michael
03/19/14 06:51:56PM
7,832 posts

Wasn't sure where to put this


Feedback

Yeah its an absolute position css issue with some changes done to lightbox lately.

The problem is still there, but will be fixed.
https://www.jamroom.net/michael/mysites/55/north-shore-rockhounds-club
michael
@michael
03/19/14 03:52:14AM
7,832 posts

Turn Activity Feed into a status feed with say the last 3 comments showing


Design and Skin Customization

One thing that would make this difficult is that the jrAction module requires all the other modules to supply it with a .tpl file.

You will see:
item_action.tpl

in a lot of the modules. To clone the jrActions module with the purpose of making a wall one instead looks like it would require other modules to also add that file.
  720