Forum Activity for @ultrajam

SteveX
@ultrajam
11/01/14 04:17:42PM
2,584 posts

More than one tinymce field possible?


Using Jamroom

Just noticed that the "my posts" tab only lists posts going back 4 months - is that a time restriction or a limit on the number of results returned?

What I was searching for (couldn't find it on the main forum search) was something I asked about way back about having multiple tinymce fields within a module form.

I seem to remember (could be wrong) that it wasn't possible to have more than one tinymce field - is that still the case?
(I think that was the reason I made the wysihtml5-jamroom editor field, but I lost my notes on that when the old laptop died)

updated by @ultrajam: 12/19/14 05:09:02AM
SteveX
@ultrajam
11/01/14 07:30:21AM
2,584 posts

Issue Tracker Notification Button Color


Using Jamroom

Thanks Brian. Looks good now.
SteveX
@ultrajam
10/31/14 05:18:39PM
2,584 posts

Issue Tracker Notification Button Color


Using Jamroom

Here on Jamroom.net, if I click the issue notification button on my Ultrajam profile Issue Tracker I see the message that I am following the issue the button doesn't change to orange. It still remains the same if I refresh the page. I see this on both Feature Requests and Open Issues.

It works as expected on my profile forum, just not on the tracker.
updated by @ultrajam: 12/08/14 02:41:54PM
SteveX
@ultrajam
10/31/14 02:19:31PM
2,584 posts

Fullscreen button in TinyMCE


Using Jamroom

I've tried this in jrBlog and jrPoll, with jrElastic as the skin.

When clicking the fullscreen button in TinyMCE, the controls bar is hidden behind the #header div, so you can't return to a normal sized editor.

It's all working, but the controls are hidden until you inspect element and delete the header div.
updated by @ultrajam: 12/19/14 03:43:18PM
SteveX
@ultrajam
10/30/14 02:10:28PM
2,584 posts

Connect with jrEmbed?


GoogleMaps

Thanks for getting the interface together, it does make it much easier to use.

Let me know if there is anything else that is needed from the module, both in functionality/templates and documentation/examples.

I'm thinking that when I next have some time I'm going to make a tutorial showing 2 ways how to map a band tour. First very simply using the directions and waypoints using embed in TinyMCE, and then a better version using jrEvent and marker templates.

As a longer term plan, I'd also like to provide the ability to make maps as module items, where you can define multiple markers manually and combine with items from multiple jrCore lists, stored in the db for use in jrEmbed (map_id="3"). Maybe with switchable layers and custom styling as well, so an "easy" maps mashup available to admin and technically able quotas. Probably need an interested paying client to make all that a reality though.

Then there's all the streetview stuff, which is becoming more interesting as it progresses...

In the near future I probably need to concentrate on a quiz module and interactive learning - more relevant to my new day job (which is a bit of a cultureshock, but a lot of fun :) ).
updated by @ultrajam: 10/30/14 02:11:16PM
SteveX
@ultrajam
10/29/14 05:19:38PM
2,584 posts

Ampps on mac, additional configuration info


Installation and Configuration

Turns out there is a php extension iconv.so which needs to be enabled.

I'll update the first post in the thread with that hard won info :)
SteveX
@ultrajam
10/29/14 04:27:25PM
2,584 posts

Ampps on mac, additional configuration info


Installation and Configuration

This problem is caused by running jrCore_url_string

Specifically this line:
$str = @iconv('UTF-8', 'ASCII//TRANSLIT', substr(trim($string), 0, 128));

If I comment it out and give $str another value I can save items (but of course they then have the wrong url string in the db).
//$str = @iconv('UTF-8', 'ASCII//TRANSLIT', substr(trim($string), 0, 128));
$str = "thiswillgivethewrongurl";

It feels like victory that I pinpointed the line of code causing the problem on my system, but I don't have a clue what to do about it :(

Any idea as to what I need to enable or change in my php ini?

The php.net manual says this:
Quote: You will need nothing if the system you are using is one of the recent POSIX-compliant systems because standard C libraries that are supplied in them must provide iconv facility. Otherwise, you have to get the ยป libiconv library installed in your system.

My php5.5 ini mentions iconv but only this:
; You can redirect all of the output of your scripts to a function.  For; example, if you set output_handler to "mb_output_handler", character
; encoding will be transparently converted to the specified encoding.
; Setting any output handler automatically turns on output buffering.
; Note: People who wrote portable scripts should not depend on this ini
;   directive. Instead, explicitly set the output handler using ob_start().
;   Using this ini directive may cause problems unless you know what script
;   is doing.
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
;   and you cannot use both "ob_gzhandler" and "zlib.output_compression".
; Note: output_handler must be empty if this is set 'On' !!!!
;   Instead you must use zlib.output_handler.
; http://php.net/output-handler
;output_handler =
and then further down, this
[iconv]
;iconv.input_encoding = ISO-8859-1
;iconv.internal_encoding = ISO-8859-1
;iconv.output_encoding = ISO-8859-1
SteveX
@ultrajam
10/28/14 02:52:29AM
2,584 posts

Connect with jrEmbed?


GoogleMaps

michael:First place to check is the ACP -> SYSTEM CORE -> QUOTA CONFIG -> (change to the quota not working) -> Make sure "Convert Embed Tags" is checked.

Thanks Michael, that was the one!
SteveX
@ultrajam
10/27/14 01:04:41PM
2,584 posts

css in elastic skin


Design and Skin Customization

Intro2Music:
Hi Steve, I tried that in the 'style editor' but it isn't it. It's the background colour of the body I want to change, e.g. the blue background on jamroom.net

Mick

Yes, that's the wrapper here on jamroom.net:
#wrapper {
    margin: 0px auto;
    padding: 12px 0px;
    background-color: #0C1634;
}
You can check that using Firefox developer tools - right click on the blue background, select "inspect element", then change the color in the css rules on the right.
SteveX
@ultrajam
10/27/14 12:01:58AM
2,584 posts

css in elastic skin


Design and Skin Customization

Try #wrapper in skins/jrElastic/css/site.css

#wrapper {
    margin:0 auto;
    padding-top:72px;
    background-color:#EEEEEE;
    padding-bottom: 12px;
}
  136