Forum Activity for @michael

michael
@michael
10/13/20 06:32:37PM
7,816 posts

Ninja Skin shows all images as broken links


Installation and Configuration

right click to open the path in a browser. It gives 403 Forbidden.

Server company question: Why?

Or before that, check the servers error logs to see if there is any more info related to the error.
Error_403_-_Forbidden.jpg Error_403_-_Forbidden.jpg - 214KB
michael
@michael
10/13/20 12:56:28AM
7,816 posts

Performance issues


Installation and Configuration

Check you're not running in developer mode too, just in case.
ACP -> MODULES -> DEVELOPER -> DEVELOPER TOOLS -> GLOBAL CONFIG -> GENERAL SETTINGS -> Run in developer mode.

You'll want that to not be turned on.
caching.jpg caching.jpg - 599KB
michael
@michael
10/11/20 09:21:35PM
7,816 posts

stream pay


Jamroom Developers

its very unclear what the question is.
michael
@michael
10/10/20 10:39:08PM
7,816 posts

max video upload size


Using Jamroom

After you get your server company to change your upload size so you can upload larger files, the next thing to do is convert your video to a lighter format. Your 55GB file is huge. Its probably in .wav format. If you convert it to something with more compression like .mp4 it will be much smaller and upload a lot faster.
michael
@michael
09/27/20 12:13:44AM
7,816 posts

How does Webshot module (in the JR Core) work and what is it for?


Using Jamroom

The Webshot Module
https://www.jamroom.net/ultrajam/forum/webshot/51540/the-webshot-module

Was not created by The Jamroom Network team but an independent developer "UltraJam". They have their own forums here:

https://www.jamroom.net/ultrajam/forum

This is the longest thread on their foums about the webshot module:
https://www.jamroom.net/ultrajam/forum/webshot/53953/webshots-installation-problem

From its description it looks to be a way to allow developers to take screenshots of what they want to take screenshots of, so maybe if you let your users input a URL into their profile, perhaps that module goes and gets a screenshot of that URL to display.
michael
@michael
09/22/20 11:39:20PM
7,816 posts

How to make purchases payout directly to users PayPal?


Using Jamroom

Take a look at the paypal module it might be what you're after:
https://www.jamroom.net/the-jamroom-network/networkmarket/104/paypal-buy-it-now

It has the money go directly to the seller, but it does not allow you to take a percentage of the sale.
michael
@michael
09/15/20 10:23:18PM
7,816 posts

Heavy Mysql process using up server resources.


Installation and Configuration

Looks like some kind of bot is indexing your site and is getting stuck in a loop. That does not look like a URL a human would get to.
michael
@michael
09/13/20 06:20:42PM
7,816 posts

Custom CSS for each page


Design and Skin Customization

The timeline already has a page I think....?? In a module there are some common templates:

/index.tpl // this is the site level template that shows when the base module url is called with no extra parameters and not from a module, so for the timeline module which uses the module url 'timeline' if you access:

yoursite.com/timeline

then that will show the template found at:
/modules/jrAction/templates/index.tpl

You can over-ride that by copying it to your skin at:
/skins/(YOUR SKIN)/jrAction_index.tpl

Then that template will show instead of the modules template.

If you wanted to make your own template that was not over-riding a modules template then you could do that too. Add a blank template to:
/skins/(YOUR SKIN)/something.tpl and it will show up at yoursite.com/something

In that template to get stuff back from the database the function is {jrCore_list} This is the swiss army knife function for getting anything that is stored in a modules data store. You will see examples of {jrCore_list} all over the place if you look at templates.

Docs: {jrCore_list}
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list

Start by cloning a skin so you dont loose your changes when skin updates come out.

Docs: "Creating your own Skin ( Clone from an Existing Skin )"
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin
michael
@michael
09/13/20 04:44:39AM
7,816 posts

Custom CSS for each page


Design and Skin Customization

No, that's a different system. There are many different systems in jamroom. Which you use depends on your preferences. If you're a web developer/programmer who is comfortable with running a development environment then you'll use the skins system and modules system and upload stuff you create via SFTP to the site.

There are many ways to interact with jamroom but this way will give you the most freedom and most possibilities to over-ride.

If you are not comfortable with web development technologies such as CSS, HTML, PHP, jQuery ( javascript ), then you are limited to using the things that have already been created.

The pages module is one of those things. ADMIN -> PAGE CREATOR stores its contents in the database not the file system.

Site builder is another system again. It also stores its contents in the database not in the file system.

--edit--
If its just a small amount of CSS that you're interested in adding to tweak existing styles, probably the place you're after is
ACP -> SKINS -> (currently active skin) -> STYLE -> CUSTOM EDITOR

You can put CSS into there.
updated by @michael: 09/13/20 04:47:16AM
michael
@michael
09/13/20 03:35:18AM
7,816 posts

Custom CSS for each page


Design and Skin Customization

What newly created pages?

If you add a template to your skin at /skins/(YOUR SKIN)/party.tpl

Then it will appear at
your-site.com/party
  57