Forum Activity for @michael

michael
@michael
09/28/14 07:48:53PM
7,832 posts

jrFeatured module?


Suggestions

First thought: its very site specific.

Second thought: Have you seen the Aparna module yet?

"jrAparna"
https://www.jamroom.net/the-jamroom-network/documentation/modules/853/jraparna

Using aparna in conjunction with the "Form Designer"

"Using the Form Designer"
http://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

Can get you a long way to building anything without much coding.
michael
@michael
09/28/14 07:26:34PM
7,832 posts

Help! Changing Web Host Just To Run Genosis!


Jamroom Hosting

This looks like the correct URL to view the page at:
http://sheep.arvixe.com/~tooshy/

It looks like there is a lot missing.

on Arvixe there is a 1 click install, you shouldn't need to upload anything. Unless you want to, do you want to do it via FTP?

The video of how to do the 1 click install is here:
Easy Install Jamroom 5 CMS into cPanel server
updated by @michael: 12/29/14 09:23:55AM
michael
@michael
09/26/14 07:23:16PM
7,832 posts

Search Error On All Fields For Modules


Installation and Configuration

Try adding the field in the "Additional Search Fields" Global setting of the Search module in the ACP.

YOUR-SITE.com/search/admin/global/hl=search_fields#ff-search_fields

--update--
Quote: If you would like to have additional DataStore fields available for search, enter the DataStore field name, one per line.

Example:
If you have created a custom User Profiles field via the Form Designer called "profile_location" you would enter profile_location on a line by itself to enable that field to be searched.

updated by @michael: 09/26/14 07:24:07PM
michael
@michael
09/26/14 07:13:07PM
7,832 posts

QQ Upload via Ajax


Jamroom Developers

Take a look at the jrUpimg module, it uses upload outside of a page and form.

--edit--
The qq initatior is in templates/tab_ajax_upimg.tpl and looks like this:
$(document).ready(function() {
        var pm_active_uploads = {ldelim}{rdelim};
        var pm_upimg_file = new qq.FileUploader({
            element: document.getElementById('pm_upimg_file'),
            action: '{$jamroom_url}/core/upload_file/',
            inputName: 'pm_upimg_file',
            acceptFiles: 'png,jpg,gif,jpeg',
            sizeLimit: {$_user['quota_jrCore_max_upload_size']},
            multiple: false,
            debug: false,
            params: { upload_name: 'upimg_file', field_name: 'pm_upimg_file', upload_token: '{$tkn}', extensions: 'png,jpg,gif,jpeg', multiple: 'false' },
            uploadButtonText: '{jrCore_lang module="jrUpimg" id="2" default="Select a file to upload and insert into the post"}',
            cancelButtonText: '{jrCore_lang module="jrCore" id="2" default="cancel"}',
            failUploadText: 'upload failed',
            onUpload: function (id, fileName) {
                pm_active_uploads[fileName] = 1;
                $('.form_submit_section input').attr("disabled", "disabled").addClass('form_button_disabled');
            },
            onComplete: function (id, fileName, response) {
                delete pm_active_uploads[fileName];
                var count = 0;
                for (i in pm_active_uploads) {
                    if (pm_active_uploads.hasOwnProperty(i)) {
                        count++;
                    }
                }
                if (count === 0) {
                    $('.form_submit_section input').removeAttr("disabled", "disabled").removeClass('form_button_disabled');
                }
                ajaxUpimg();
            }
        });

updated by @michael: 09/26/14 07:15:11PM
michael
@michael
09/26/14 02:06:35AM
7,832 posts

Playlist Song Title Fix / Reorder


Design and Skin Customization

no.
michael:
If you edit anything in the /modules/ directory that you didn't build, it will be over-written the next time an update comes out.

-- opinion --
I think its a really bad idea. If you edit this file and then hire a developer to build something later, the first thing they will want to do is update the system to the latest of everything.

Then it will break, then you will say "it worked before you played with it, now fix it." and then the fight began.
updated by @michael: 09/26/14 02:08:50AM
michael
@michael
09/25/14 05:42:07PM
7,832 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

Use the playlist module, make a playlist.
michael
@michael
09/25/14 01:43:32AM
7,832 posts

Playlist Song Title Fix / Reorder


Design and Skin Customization

/modules/jrCore/js/jquery.jplayer.min.js
michael
@michael
09/25/14 01:38:11AM
7,832 posts

Error Installing Solo Artist Bundle


Design and Skin Customization

It would take more effort to write that ^^ out than to just give it a try. ;)

In answer to the question, no, it does not have to be capital. ctrl+o is save ctrl+x is exit.
updated by @michael: 09/25/14 01:38:28AM
michael
@michael
09/24/14 07:06:57PM
7,832 posts

Playlist Song Title Fix / Reorder


Design and Skin Customization

If you edit anything in the /modules/ directory that you didn't build, it will be over-written the next time an update comes out.
michael
@michael
09/24/14 06:59:14PM
7,832 posts

Error Installing Solo Artist Bundle


Design and Skin Customization

pico:

To get the manual, at the commandline do:
man pico

The only commands I usually use in pico are:
ctrl+o = write out ("save")
ctrl+x = exit

and sometimes ctrl+k to delete lines if i have a big section to delete and don't want to hold down the delete key.

-- edit --
From within the editor ctrl+G will bring up help (or F1). It will show these commands:
Quote:
^G (F1) Display this help text
^X (F2) Close the current file buffer / Exit from nano
^O (F3) Write the current file to disk
^J (F4) Justify the current paragraph

^R (F5) Insert another file into the current one
^W (F6) Search for a string or a regular expression
^Y (F7) Go to previous screen
^V (F8) Go to next screen

^K (F9) Cut the current line and store it in the cutbuffer
^U (F10) Uncut from the cutbuffer into the current line
^C (F11) Display the position of the cursor
^T (F12) Invoke the spell checker, if available

M-\ (M-|) Go to the first line of the file
M-/ (M-?) Go to the last line of the file

^_ (F13) (M-G) Go to line and column number
^\ (F14) (M-R) Replace a string or a regular expression
^^ (F15) (M-A) Mark text at the cursor position
M-W (F16) Repeat last search

M-^ (M-6) Copy the current line and store it in the cutbuffer
M-} Indent the current line
M-{ Unindent the current line
^F Go forward one character
^B Go back one character
^Space Go forward one word
M-Space Go back one word
^P Go to previous line
^N Go to next line

^A Go to beginning of current line
^E Go to end of current line
M-( (M-9) Go to beginning of paragraph; then of previous paragraph
M-) (M-0) Go just beyond end of paragraph; then of next paragraph
M-] Go to the matching bracket
M-- (M-_) Scroll up one line without scrolling the cursor
M-+ (M-=) Scroll down one line without scrolling the cursor
M- M-> (M-.) Switch to the next file buffer

M-V Insert the next keystroke verbatim
^I Insert a tab at the cursor position
^M Insert a newline at the cursor position
^D Delete the character under the cursor
^H Delete the character to the left of the cursor
M-T Cut from the cursor position to the end of the file

M-J Justify the entire file
M-D Count the number of words, lines, and characters
^L Refresh (redraw) the current screen
^Z Suspend the editor (if suspend is enabled)

(M-X) Help mode enable/disable
(M-C) Constant cursor position display enable/disable
(M-O) Use of one more line for editing enable/disable
(M-S) Smooth scrolling enable/disable
(M-P) Whitespace display enable/disable

updated by @michael: 09/24/14 07:01:57PM
  658