Forum Activity for @michael

michael
@michael
06/30/18 11:11:38PM
7,816 posts

Marketplace Issue


Genosis

curl looks like its being blocked on your server. contact your host and ask them to enable it.
michael
@michael
06/30/18 10:27:21PM
7,816 posts

Marketplace Issue


Genosis

And there are no other issues in your SYSTEM CHECK? then check your activity log to see if there are any errors there:
ACP -> DASHBOARD -> ACTIVITY LOG

* ACTIVITY LOG
* ERROR LOG
* DEBUG LOG
michael
@michael
06/30/18 09:22:51PM
7,816 posts

Followers sometimes get doubled listing in 'my followers' list


Using Jamroom

I think its related to the FriendsToFollowers module but don't know how to reproduce it. Without that, going searching for how to make it happen is lower priority.
michael
@michael
06/30/18 06:21:54PM
7,816 posts

Using OneAll Social: what does the digit 1 mean in the string "user_jrOneAll: 1" ?


Using Jamroom

1 probably means 'true'. ones and zeros meaning on or off. Thats not always the case and the script developer can choose the meaning. Its a common practice just to set a marker that you can use later. So its a value used to determine how the code will function.

The reason they are called 'keys' is because of how the data is stored in the database. They are stored in a KEY=>VALUE system which is a type of database structure. What you're looking at is not formatted for any kind of informational report, its just the raw data.

The formatted structure is available at
your-site.com/oneall/connections
ACP -> USERS -> ONEALL -> TOOLS -> SOCIAL CONNECTIONS
michael
@michael
06/30/18 06:12:31PM
7,816 posts

Marketplace Issue


Genosis

#1 if its possible to add APCu to your server, do it, otherwise its just a caching system so you can probably live without it.
related: https://www.digitalocean.com/community/questions/how-to-install-alternative-php-cache-apc-on-ubuntu-14-04

#2 says you've not setup your marketplace. Take your jamroom 'system id' and 'email' from here:
https://www.jamroom.net/networklicense/licenses/profile_id=5791/user_id=5781

and enter them into your site at
ACP -> MODULES -> CORE -> MARKETPLACE -> TOOLS -> MARKETPLACE SYSTEMS -> MODIFY

See how that goes and report back with any issues you encounter. If you've entered your details correctly and it still cant communicate, it maybe a server issue.
marketplace.jpg marketplace.jpg - 137KB
michael
@michael
06/30/18 06:03:05PM
7,816 posts

Followers sometimes get doubled listing in 'my followers' list


Using Jamroom

Brians found a fix for this and it will be in an upcoming release of the core.
michael
@michael
06/26/18 09:22:12PM
7,816 posts

Looks like my jr domain Mailgun acct was hacked


Using Jamroom

no. Thats just for when you want to connect via SFTP to your server. Stuff like adjusting skins via the filesystem, or adding a line of CSS to one of the css files.

I don't think you do that much, preferring to use the TEMPLATES tab of the ACP for your alterations.
michael
@michael
06/26/18 09:16:40PM
7,816 posts

Issue Tracker - Searchable Issues


Jamroom Developers

you'll need to use the 'search_fields' listener to add jrTracker to the list of modules that are enabled for search.

So in your listener you'll get a $_data array like this:
$_data = array(
 'jrAudio' => array('audio_title,audio_genre,audio_album' => 52),
......
)
where 52 is the language id of the name of the title in the language file, 52 is "Audio Tracks".

Then add in the jrTracker module to that array with the fields you want to search, probably
$_data = array(
 'jrAudio' => array('audio_title,audio_genre,audio_album' => 52),
......
 'jrTracker' => array('tracker_text,tracker_title' => 36)
)
michael
@michael
06/25/18 11:01:14PM
7,816 posts

Does the Google Analytics module support ecommerce?


Suggestions

The google analytics module has an event listener 'record_hit' which allows other modules to record when something like an ecommerce transaction takes place, but the payment modules currently do not take advantage of this by sending this information over to google.
  121