Forum Activity for @michael

michael
@michael
08/15/16 04:34:58AM
7,826 posts

Cannot Restore Previous Version of System Core?


Design and Skin Customization

you dont want to go back to b2, it had an issue with the marketplace that was hard to get to b3 from.
michael
@michael
08/15/16 03:42:51AM
7,826 posts

Image gallery error on save


Jamroom Developers

Seams like there is a 4 month old thread with similar issue:

https://www.jamroom.net/the-jamroom-network/forum/installation-and-configuration/39187/cant-create-galleries-duplicate-key-error

Have you run the integrity check with all the checkboxes checked? How to do that is outlined here:

Docs: "Somethings wrong what do I do?"
https://www.jamroom.net/the-jamroom-network/documentation/problems/114/somethings-wrong-what-do-i-do
michael
@michael
08/15/16 03:37:57AM
7,826 posts

Image gallery error on save


Jamroom Developers

My guess is the jr_jrgallery_item and jr_jrgallery_item_key are out of sync.

When you moved the database over to the new server did you clear out the database before putting the new one in? How did you move the database?
michael
@michael
08/14/16 09:50:37PM
7,826 posts

Image gallery error on save


Jamroom Developers

Then it shouldn't be happening, sounds like a bug, whats the steps to reproduce it?

--edit--
What the message is saying is: "there is already an item in the database with this id, this id should be unique, so when you tell me to put the same id in again, I dont like it and im telling you I dont like it."
updated by @michael: 08/14/16 09:52:35PM
michael
@michael
08/14/16 07:42:38PM
7,826 posts

Users dont get the file they paid for


Using Jamroom

The most likely scenario is paypal is not sending a message to your server to tell jamroom that the file has been sold. If that was happening, there would be an entry in the activity log.

It would be either:
jrPayPal: processing incoming transaction:
or
jrPayPal: invalid notification received in webhook

If neither of those are in your activity log, paypal did not tell jamroom that an item was sold.

If thats the case, check if you have an IPN set at paypal pointing to the wrong url.
michael
@michael
08/14/16 06:51:27PM
7,826 posts

ISkin4 Lightbox - video support


Design and Skin Customization

In smarty2 they were necessary, but from smarty3 a space will be fine.

Smarty2 code:
onfocus="if(this.value=='{$svar}'){ldelim} this.value=''; {rdelim}"

Smarty3 code:
onfocus="if(this.value=='{$svar}'){ this.value=''; }"

Just make sure there is a space after the { and you dont need {ldelim}.

This will fail in smarty3
onfocus="if(this.value=='{$svar}'){this.value='';}"
because the {t..... is treated as a smarty function.
michael
@michael
08/14/16 05:46:52PM
7,826 posts

Users dont get the file they paid for


Using Jamroom

yep, thats a good thought. If that was the case though, it wouldn't have 'just started' happening. It was working, then it stopped, nothing changed in the module, maybe something changed in the server (ask the server company about that one), maybe paypal changed something.

Servers don't change the way they work unless something changed. We need to figure out what changed.
michael
@michael
08/14/16 05:37:34PM
7,826 posts

jrAction_item_list.tpl Shared Action link to Action Item Detail.


Suggestions

outline how to setup an actual example of what you're trying to achieve. The one above is a bit too abstract to comment on with confidence.
updated by @michael: 08/14/16 05:37:51PM
michael
@michael
08/14/16 05:35:01PM
7,826 posts

ISkin4 Lightbox - video support


Design and Skin Customization

PatriaCo:
The result is always height="300px", with an empty width="". No matter the viewport width.
As soon as we have this figured out, I will post all the code. This is very cool. Thanks for the all help so far.
Just to clarify I need to figure out how to capture the id.width() for the viewport size.
Thanks!
Make sure the id that is getting output actually exists on the page.

By the time it gets to the HTML output on the page, all the {$somtehing} will have been rendered into their actual values, so if you view the source code for the page you will see:

	$(document).ready(function() {
		{* 16:9 aspect ratio instead of fixed height.*}
		var id = $('#ytplayer123456');
		var tw = id.width();
		var th = Math.round(tw / 1.778);
		if (th < 300) {
		    th = 300;
		}
		id.height(th);
	});
Make sure '#ytplayer123456' is somewhere in the page, so that you can get the width of it.
michael
@michael
08/14/16 05:30:41PM
7,826 posts

ISkin4 Lightbox - video support


Design and Skin Customization

PatriaCo:
Not sure I understand how to use those correctly. Do you have a link to some documentation on them?

Smarty docs are here: http://www.smarty.net/docs/en/index.tpl

{ldelim} and {rdelim} were used a lot in smarty 2, we're on smarty 3 now so you're probably not going to use them as much.


  369