User can access protected content using "search" function

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
10/17/2012 10:13:25 AM
Gravatar
Total Posts 18439

Re: User can access protected content using "search" function

Are you sure you have the very latest download of Artisteer 4?

On my machine the exported skin looks fine, I'm using Chrome. The edit links for center page content are a little dark but I can see them.

I could upload this skin to our demo site to make sure we are looking at the same thing?

Another person posted about a problem with a new Artisteer skin in Chrome on this thread and I can see it on his site but it doesn't happen with any of the Artisteer 4 designs I've been working with nor with the one you sent me on my machine.

Best,

Joe

10/17/2012 10:20:18 AM
Gravatar
Total Posts 18439

Re: User can access protected content using "search" function

Also I uploaded an update to our skin exproter on 2012-10-15 that has a minor fix that affects menu layout in some designs, if you downloaded it before that you should go to your purchase history and download it again and drag it onto Artisteer to install it. Then try exporting again.

Best,

Joe

10/17/2012 2:21:22 PM
Gravatar
Total Posts 18439

Re: User can access protected content using "search" function

When I was looking at your skin this morning I was confusing this thread with another one and was looking for a problem with the edit links (in the other thread the edit links were hidden by css ie color and background color being the same makes things invisible) but I realized just now that other than the Chrome problem (which I could not replicate) you mentioned a problem about the icons in the ordered list so I took another look and figured out what was causing the problem.

In one of our core css files we need to override those icons otherwise they appear in places we don't want them in the admin menu and other unordered lists but by mistake some artisteer specific selectors were in our core css file located at:

/Data/style/adminmenu/style.css

the problem part is like this:

div.mojo-tabs ul > li::before, .art-post ul > li::before, .art-textblock ul > li::before,
div.adminmenu ul.simplelist > li::before, .art-post ul > li::before, .art-textblock ul > li::before {
content: ''; display:block;}

and it needs to be replaced with this:

div.mojo-tabs ul > li::before,
div.adminmenu ul.simplelist > li::before {
content: ''; display:block;}

that will make the icons appear in your content in undoredered lists

After making css changes go to Administration > Advanced Tools > Design Tools > Cache Tool and click the button to reset the skin guid.

I'm making the same change in my copy to fix this for the next release.

Best,

Joe

10/18/2012 11:03:37 AM
Gravatar
Total Posts 18439

Re: User can access protected content using "search" function

Update on the Chrome problem, strangely it doesn't happen on my local machine but I am able to produce the problem on my server.

I'm still investigating why this happens but so far it seems like the artisteer script is thinking that chrome is a phone. The problem goes away if you remove the script.responsive.js 

I'm still investigating and will post again if I figure out a better solution but for now you can remove that script from layout.master

Best,

Joe

 

10/18/2012 12:15:57 PM
Gravatar
Total Posts 22

Re: User can access protected content using "search" function

Now 2.3.9.3 works fine (with Google Chrome too). Thanks!

10/18/2012 2:45:23 PM
Gravatar
Total Posts 18439

Re: User can access protected content using "search" function

I found a better solution for the Chrome problem, you can restore the responsive script and just add this to the bottom of style-artisteer-overrides.css:

html.chrome.desktop #art-resp { display: none; }

I've updated the plugin again so it includes this by default.

Best,

Joe

You must sign in to post in the forums. This thread is closed to new posts.