Forum Activity for @michael

michael
@michael
03/22/16 04:02:28PM
7,832 posts

change pay pal item number


Jamroom Developers

not sure what you're wanting to achieve.
michael
@michael
03/22/16 04:01:32PM
7,832 posts

Foxycart XML Error


Using Jamroom

https://en.wikipedia.org/wiki/HTTP_301

Quote: The HTTP response status code 301 Moved Permanently is used for permanent URL redirection

Check all your urls for that are assigned are correct, www. is different from non-www

so check your admin.foxycart.com setup is using the correct urls for your site.
michael
@michael
03/22/16 03:57:20PM
7,832 posts

Event Notification timing oddness


Using Jamroom

Its not so impressive, its much easier to read in code, turning it into english it seams complicated.

The hard part is understanding what IS happening vs what you WANT to happen, then its just writing some rules.

You'd have it sorted pretty quickly if its something that interests you I'm sure.
michael
@michael
03/22/16 03:03:47PM
7,832 posts

Event Notification timing oddness


Using Jamroom

Think I've found the issue, its related to that extra module installed (jrXEventDuration).

What is happening is that module has a check in it for when searches are done for events which have an event_date on them AND the "show past events" option is set to not show past events.

Because your events have an end date ('event_end') it is re-writing the request from:

"get me all the events that are newer than today" to
"get me all the events that haven't ended today"

In a normal list, that's fine, but with the notifications emails the request is:
"get me all the events that are are newer than today, but no newer than (notification time setting in hours)" and its rewriting that to:
"get me all the events that haven't ended today"

Think I've got it fixed up. I've put the module in a private release channel since you're the only one using it.

I've sent an invite email.

put that invite code here:
http://fotmd.com/marketplace/release_channels

Then the jrXEventDuration module will appear in the marketplace updates, update it and set the time back to 48 hours and all should be well.

--edit--
to remove email address
updated by @michael: 03/22/16 03:55:20PM
michael
@michael
03/21/16 09:08:04PM
7,832 posts

Event Notification timing oddness


Using Jamroom

cant see any way this could have happened. That's not to say that it couldn't happen, just I'm not seeing how it could happen.

The system:
* once an hour the system performs routine tasks. This is triggered by any person visiting the site more than an hour from the last time it was triggered.

* during that routine task a separate task fires that asks if any modules want to send out any emails to anybody.

* The events module uses that second routine to locate any users who have clicked the attending button for any event that has its event_date coming up within your set '48 hours' (or whatever) between the current hour and the event_date.

I can see that if the notification time was set to 1 hour, then its conceivable that if nobody visited that site within the 1 hour prior to the event time that the email might not get sent out, but 48 hours seams enough to ensure someone (or a bot) visited the site within that time and triggered the hourly routine off.

while looking I was trying to locate any setup that might cause the email to get sent AFTER the event and I cant see how it could happen.

The search looks for
 any events that are in the future AND are less in the future than now + 48 hours

any other clues? old modules, extra modules? not sure....
michael
@michael
03/21/16 06:47:34PM
7,832 posts

page created in sb (old version) only shows up when logged in


Using Jamroom

great explanation, thanks.

The old site builder is not being worked on and there will be no updates to the old version.

How about we look at the "...since new version does not work..." part of it. What about the new version 'does not work'?

When you enable a default skin and have the old site builder version disabled, what happens? The old site builder and the new site builder systems can not be on the same site at the same time, when you install the new site builder it should shut down the old site builder modules.

Quote: ...with sb new version i may require more help updating to it...
cool, lets take it one issue at a time. maybe on a dev server is best because I know you're site is live.

* the page edit buttons do not show up. (great, clear issue that we can solve. thanks.)
* every widget gets double styling. (another clear issue that we can solve. thanks.)
* 2 empty menu items

make a thread for each of these and we'll tackle each issue individually.

Lets start with the "page edit buttons don't show up" because they need to.
michael
@michael
03/21/16 06:14:44PM
7,832 posts

page created in sb (old version) only shows up when logged in


Using Jamroom

From the forums we can only really address a problem at a time, not "it all doesnt work" problems because there is nowhere to start.

This thread too, it states a problem but not how to reproduce the problem so I can setup to check it out then there are like three other issues about separate things. It makes it hard to get the thread to 'solved' status.

The new updates to the Site Builder system do not have any new updates to the import system for importing data. The updates will have no new results for what your after I'm afraid.

---
Quote: ...in the error console i get "permission denied to access property "document""...
When doing what?

Love seeing issue reports in this type of format:
Quote:
Steps: Here is an explanation of the issue with steps on how to recreate it and see it happening

EXPECTED:
a sentence about what you expected to happen when the steps were followed

ACTUAL:
a sentence about what actually happened when the steps were followed
It makes it easy for me to check out the issue and provide some possible solution.
michael
@michael
03/21/16 06:05:43PM
7,832 posts

TypeError: $(...).qtip is not a function


Jamroom Developers

.qtip is provided by the jrTips module. If you disable that module it should go away.

If you want it to show, check that there are not other javascript errors in the main compiled javascript file that comes out at:
< script type="text/javascript" src="{jrCore_javascript_src}">< /script >
in your skins meta.tpl
michael
@michael
03/21/16 06:00:26PM
7,832 posts

Replies to Group Discussions don't show in My main page Activity Timeline


Using Jamroom

Yes paul is talking about your index.tpl file. It currently reads:

{jrCore_list module="jrAction" search1="action_module != jrFollower" search2="action_module != jrComment" order_by="_item_id numerical_desc" template="index_activity.tpl" pagebreak=50 page=$_post.p}

Paul is saying to change that to:
{jrCore_list module="jrAction" search1="action_module != jrFollower" search2="action_data NOT_LIKE %\"comment_module\":\"jrProfile\"%" order_by="_item_id numerical_desc" template="index_activity.tpl" pagebreak=50 page=$_post.p}

We are talking about the index.tpl file for your skin.
  414