Forum Activity for @michael

michael
@michael
08/12/15 10:02:40PM
7,832 posts

From local host to web server


Installation and Configuration

Are you moving it to our jamroom hosting? If so there is an "Import a Jamroom 5 Site" button in the hosting settings section.

If not:

The steps are no different than moving any other type of database based web application.

* back up the database from local host. (I'd normally use phpmyadmin to export the database and again to import to the new location)
* upload all the files to the server.
* then update the /data/config/config.php file with the new databases access details.
michael
@michael
08/12/15 05:55:08PM
7,832 posts

where to view de-activated members?


Using Jamroom

Its working for me, go to:
yoursite.com/profile/browser/search_string=profile_active%3A0

or
yoursite.com/profile/browser/search_string=profile_active%3A0/vk=true
michael
@michael
08/11/15 11:39:17PM
7,832 posts

couple possible bugs and a suggestion


Design and Skin Customization

I can see it happening on your site. It only happens on Chrome for me, not firefox

https://www.dreadlockssite.com/junkjunk

Firefox I can see the button. Chrome doesn't give me much feedback as to what's happening though. the page loading event doesn't show in the console so its hard to figure out what its not complaining about.

I tried chrome with uploading an image with the newer version of Site Builder and the button IS there in chrome on the Nova skin.

So the options seam to be:
* see if its also happening on chrome on a default skin on the Site Builder you have, or
* figure out how to get over to the newer Site Builder system.

Probably the best is the second, but I remember there are issues holding you back. What were the issues.
michael
@michael
08/11/15 11:17:30PM
7,832 posts

couple possible bugs and a suggestion


Design and Skin Customization

aaaahhh, not what I thought the issue was. Thanks for the screenshot. I thought it was the tab not showing. I'll look into it on a default skin, see what I see.
michael
@michael
08/11/15 11:15:20PM
7,832 posts

Automatic Default spanish language not working


Jamroom Hosting

Here's a way to ignore the browsers settings and force your site to spanish for anyone who has never clicked on the language button and is not logged in.

What it does is it checks for a language setting and if no setting is found it sets spanish as the default language and refreshes the page.

 <script type="text/javascript">
  var lang = jrReadCookie('jr_lang');
  if (lang == null) {
   jrSetCookie('jr_lang', 'es-ES');
   window.location.reload();
  }
 </script>

Add that to your sites header.tpl or meta.tpl page. I put it just inside the /head section of meta.tpl and it seamed to do the trick.
michael
@michael
08/11/15 11:00:51PM
7,832 posts

Automatic Default spanish language not working


Jamroom Hosting

Just went and had a look at the code for this and think I know what might be happening.

The code reads:
* if the user is logged in, use their default language, otherwise
* if the user has clicked on a language flag, use that, otherwise
* if the user is using a browser in a particular language, use that, otherwise
* use the default language set in the ACP.

So if a user visits your site with a spanish version of FireFox or other browser, the site will default to spanish. If they visit with an english browser, the site will default to english.

If the language of the browser can not be detected or is not set, then it will fall through to your default language.

On your site you have english, I am using an english browser, so english displays by default. If i click spanish then spanish displays.

If I change to using a japanese browser spanish displays.
michael
@michael
08/11/15 10:34:06PM
7,832 posts

Advertisement Placement?


Design and Skin Customization

nope, no designated space to ad adverts. Just work it in wherever you think it looks good.
michael
@michael
08/11/15 10:24:10PM
7,832 posts

couple possible bugs and a suggestion


Design and Skin Customization

got a screenshot of whats happening?
michael
@michael
08/11/15 10:22:25PM
7,832 posts

Placing Titles On Images ?


Using Jamroom

Found it, it's a bug.

I've got it fixed up in jrGallery 1.6.4

Update your system from the marketplace and it should be sorted.

Thanks for finding it. :)
updated by @michael: 08/11/15 10:22:37PM
  501