Forum Activity for @michael

michael
@michael
12/28/15 11:58:27PM
7,832 posts

another weird linking bug (beta)


Installation and Configuration

Your right, thats the wrong url. We'll try to sort out where its happening and get it fixed.

Thanks. :)
michael
@michael
12/28/15 09:08:21PM
7,832 posts

Form Designer: Check for field


Using Jamroom

you can use ! for not empty
"if its not empty"
 {if !empty($item.audio_itunes_url)} 
            <a href="{$item.audio_itunes_url}">{jrCore_image module="jrAudio" image="ituneslogo.png"}</a>
  {/if}

or you can check the string length
"if its length is greater than zero"
 {if strlen($item.audio_itunes_url) > 0} 
            <a href="{$item.audio_itunes_url}">{jrCore_image module="jrAudio" image="ituneslogo.png"}</a>
  {/if}

or check that it is not just "" like
"if its contents are not nothing"
 {if $item.audio_itunes_url != ""} 
            <a href="{$item.audio_itunes_url}">{jrCore_image module="jrAudio" image="ituneslogo.png"}</a>
  {/if}
michael
@michael
12/28/15 06:18:12PM
7,832 posts

Activity Timeline Suggestion


Suggestions

add:
#action_text_counter {
visibility: hidden;
}
To your skin should hide it.

I've never tried it on the top level of the site, I would expect that it would fail because there is no profile_id there.
michael
@michael
12/28/15 04:54:35PM
7,832 posts

Do "Private Notes" have an outbox?


Using Jamroom

Currently there is no outbox. I'll add it to our feature requests list though as it is pretty normal for email to be able to see what you sent.

Thanks.
michael
@michael
12/28/15 04:51:44PM
7,832 posts

page_short_url


Using Jamroom

Its being created by jrShareThis for all datastore items by prefixing their db name:
jrCore_db_update_item($module, $item_id, array("{$pfx}_short_url" => $hash));

The actual url will depend on what the url of the page you're actually after is.
updated by @michael: 12/28/15 04:52:00PM
michael
@michael
12/28/15 04:45:07PM
7,832 posts

Activity Timeline Suggestion


Suggestions

The 140 is not enforced when the notes are written, (so its really a its a suggestion). Its only enforced when something is generated on behalf, like a blog post.

In a blog post, its overrideable via
/modules/jrBlog/templates/item_action.tpl

Which you can override via your skin with these steps:

"Altering a modules template"
https://www.jamroom.net/the-jamroom-network/documentation/development/1051/altering-a-modules-template

The one for blog looks like this:
  {$item.action_data.blog_text|jrCore_format_string:$item.profile_quota_id|jrCore_strip_html|truncate:170}

change that 170 to however big you want to show it.
michael
@michael
12/28/15 04:37:22PM
7,832 posts

CRI: Query Error since updating to 5.3.0b9


Using Jamroom

iamtimbo:....not sure what my next move should be, though....

Go back to the root cause:
Quote: CRI: Query Error: Data too long for column 'session_data' at row 1

Is there any error information in the debug log, activity log, error log? is there a ! mark next to that in the activity log with more information.

Need to track the clues given back to the source of the problem to locate the issue.

Alternatively: Outline steps that we can take here to see the issue, so we can fix it here.
michael
@michael
12/25/15 03:37:53PM
7,832 posts

Rss Audio Reader Custom


Using Jamroom

couple of discussions on XML and eacute here:
http://objectmix.com/csharp/729650-xml-character-codes-such-eacute%3B.html
http://p2p.wrox.com/xslt/41905-utf-8-xml-undeclared-entity-errors.html
http://stackoverflow.com/questions/13953222/xml-entities-not-defined-and-cdata

That last one has this suggestion:
Quote:
If you want to embed HTML in an XML document, then you either have to use:

* CDATA markers around the content of an element (not an attribute). (As you are doing for the value of the meta element)

So try:
<![CDATA[ {$item.title|jrCore_entity_string}  ]]>
michael
@michael
12/25/15 03:30:28PM
7,832 posts

linode


Installation and Configuration

I never login as the root user, it never occurs to me to. So installing stuff for me its normal to do:
sudo .......
there must be many ways to do things.

I did not install suhosin judging by my phpinfo() data. Not a big concern for me as its a local dev machine.
  444