Version 3.0 and Joomla 1.6 errors


  Page 1 of 2 Next Last 
Author Message
Mykee

Posted: 11/3/2010
Quote message 

Dear developers,

I install a fresh Joomla 1.6 beta13 version with sample datas (good for template test), but I have a problem. Just follow next steps:
- install Joomla 1.6 beta 13 with sample database
- make a template with Artisteer 3.0 for Joomla, export to ZIP
- install this template to Joomla
- put a Main menu to left (or right) positions
- select Site Map or Sample Sites
- you will get this error:
Quote :
Fatal error: Cannot access protected property ContentViewArticle::$user in functions.php on line 168


What's this problem? :-X
 
Mykee

Posted: 11/3/2010
Quote message 

This line on line 168:
$this->canEdit = $document->user->authorise('core.edit', 'com_content.frontpage.' . $this->item->id); 

 
huw

Posted: 11/4/2010
Quote message 

My artisteer generated templates don't even seem to work in joomla 1.6 :(

 
Alex

Posted: 11/6/2010
Quote message 

Myke, does it work with Joomla beta 12? Does the front page of the Joomla installation works and only Site map does not work?

Thanks,
Alex
 
Alex

Posted: 11/6/2010
Quote message 

Quote huw:

My artisteer generated templates don't even seem to work in joomla 1.6 :(



What is the exact error that you have?

 
Alex

Posted: 11/8/2010
Quote message 

Tristrum, could you please post here a several lines around line 16 in functions.php.

Thanks,
Alex
 
Alex

Posted: 11/8/2010
Quote message 

Tristrum, please try the Artisteer 3 Joomla template with PHP 5. It looks like you have outdated PHP version.

Thanks,
Alex
 
Garry

Posted: 11/9/2010
Quote message 

Try PHP5 as suggested by Alex otherwise you should contact Artisteer support with error details.
 
Mel

Posted: 11/16/2010
Quote message 

Quote Mykee:

Dear developers,

I install a fresh Joomla 1.6 beta13 version with sample datas (good for template test), but I have a problem. Just follow next steps:
- install Joomla 1.6 beta 13 with sample database
- make a template with Artisteer 3.0 for Joomla, export to ZIP
- install this template to Joomla
- put a Main menu to left (or right) positions
- select Site Map or Sample Sites
- you will get this error:
Quote :
Fatal error: Cannot access protected property ContentViewArticle::$user in functions.php on line 168


What's this problem? :-X


Hi,
I am also experiencing the same problems as Mykee. Have installed Joomla 1.6 beta 14 (including sample data). The template installs, but none of the menus are displaid, and when I click on the links I get the same error as Mykee. Dis you manage to solve it Mykee?
 
Mykee

Posted: 11/16/2010
Quote message 

I not installed version beta14 yet, but I will try it. No, my problem no solved yet. Anyone have a tip for problems? :*)
Template made with latest (published) artisteer 3.0 version.
 
LuisZ

Posted: 11/19/2010
Quote message 

I have installed Joomla 1.6 Beta 14 and have the same problems with my Artisteer 3 template, I have no menues, just the main section.
:(
 
Chris

Posted: 11/23/2010
Quote message 

Quote LuisZ:

I have installed Joomla 1.6 Beta 14 and have the same problems with my Artisteer 3 template, I have no menues, just the main section.
:(


Same here . No left or right menus
 
Jim P

Posted: 11/25/2010
Quote message 

If anyone is looking for a quick hack-type fix until Artisteer can address this, I posted a code change below. It will mean, you'll have to do all of your editing from the Admistrator-side for now.

Change line 168 in /templates/YourTemplate/functions.php:

$this->canEdit = $document->user->authorise('core.edit', 'com_content.frontpage.' . $this->item->id);

[TO]

$this->canEdit = false;

 
Kent

Posted: 11/29/2010
Quote message 

Maybe you are missing the point of Beta releases that there will be problems & maybe it should be addressed to Joomla?
 
Alex

Posted: 11/30/2010
Quote message 

Ronald, in Joomla 1.6 position names are different from Joomla 1.5. Artisteer template use left, right, etc (Joomla 1.5 preferred schema). In Joomla 1.6 preferred position naming schema was changed to position1-position12. So you need to add modules to the "left" and "right" positions manually.
 
Mykee

Posted: 11/30/2010
Quote message 

Joomla 1.6 version going to RC in 13th of December...
Here is news:
http://www.joomla.org/announcements/release-news/5324-joomla-16-beta15-now-available.html

Maybe templates and user permissions will not changed after this...
 
Mykee

Posted: 11/30/2010
Quote message 

Quote Alex:

Ronald, in Joomla 1.6 position names are different from Joomla 1.5. Artisteer template use left, right, etc (Joomla 1.5 preferred schema). In Joomla 1.6 preferred position naming schema was changed to position1-position12. So you need to add modules to the "left" and "right" positions manually.

Or Artisteer will use double positions like new original rhuk_milkyway theme:
<jdoc:include type="modules" name="top" />

<jdoc:include type="modules" name="position-12" />

If this will use Artisteer, then no problem with compatible, and we get double modules. ;-)

Developers, hear me? :-X O:)
 
Alex

Posted: 12/1/2010
Quote message 

Mykee,

I think it is better to add option for Joomla 1.5 and Joomla 1.6 templates and generate different positions for 1.5 and 1.6. In the same time 1.5 will work in 1.6, but 1.6 will not work in 1.5.
 
Alex

Posted: 12/1/2010
Quote message 

If have more positions in template and XML, then no problem under 1.5.
If I need more position, then I can add to XML and PHP, and no problem. If Artisteer generate dual positions, and these found in XML, then I think templates will working under Joomla 1.5 and 1.6 too...
 
Mykee

Posted: 12/1/2010
Quote message 

Quote Alex:

If have more positions in template and XML, then no problem under 1.5.
If I need more position, then I can add to XML and PHP, and no problem. If Artisteer generate dual positions, and these found in XML, then I think templates will working under Joomla 1.5 and 1.6 too...

Sorry Alex, I wrote it!!
 
Peatsmoke

Posted: 1/25/2011
Quote message 

Quote Jim P:

If anyone is looking for a quick hack-type fix until Artisteer can address this, I posted a code change below. It will mean, you'll have to do all of your editing from the Admistrator-side for now.

Change line 168 in /templates/YourTemplate/functions.php:

$this->canEdit = $document->user->authorise('core.edit', 'com_content.frontpage.' . $this->item->id);

[TO]

$this->canEdit = false;



This solution wors great for me!

Thnx!
 
JOE YU

Posted: 3/12/2011
Quote message 

Quote Jim P:

If anyone is looking for a quick hack-type fix until Artisteer can address this, I posted a code change below. It will mean, you'll have to do all of your editing from the Admistrator-side for now.

Change line 168 in /templates/YourTemplate/functions.php:

$this->canEdit = $document->user->authorise('core.edit', 'com_content.frontpage.' . $this->item->id);

[TO]

$this->canEdit = false;



JIM I FREAKING LOVE YOU BRO. no homo. but seriously have been trying to fix this problem for the past 2 nights. finally i might be able to get some sleep tonight. thanks again bro!
:-D :-D :-D :-D
 
Garry

Posted: 3/15/2011
Quote message 

Make sure you are running PHP 5 on your web host, contact Artisteer support may also be helpful.
 
Jm

Posted: 4/4/2011
Quote message 

Im using artisteer 3.0 and Joomla 1.6

All seems to work fine on my Home page but when i try to make "About Us" page using single article menu option i get this error ..

Fatal error: Cannot access protected property ContentViewArticle::$params in D:\xampp\htdocs\trabahoplease\templates\try\functions.php on line 165

this is the code on the function.php line 165 :

? ('<span class="componentheading' . $page->params->get('pageclass_sfx') . '">'

Any idea how will i fix this? Thanks in advance.

 
Emre

Posted: 6/29/2011
Quote message 

:-D JIM I FREAKING LOVE YOU BRO. no homo. but seriously have been trying to fix this problem for the past 2 nights. finally i might be able to get some sleep tonight. thanks again bro!

MEETOOOO

Thank you Jim.. from Türkiye
 
ken

Posted: 8/3/2011
Quote message 

i create template for artisteer 3 when add into joomla 1.6 cannot used menu .
click menu error:

Notice: Undefined property: stdClass::$catslug in C:\wamp\www\demo\templates\demo\functions.php on line 717

help ? thank you
 
Garry

Posted: 8/4/2011
Quote message 

Make sure you are running PHP5 on your web host, otherwise contacting Artisteer support may be very helpful: http://www.artisteer.com/?p=support
 
posto

Posted: 8/10/2011
Quote message 

Quote Jim P:

If anyone is looking for a quick hack-type fix until Artisteer can address this, I posted a code change below. It will mean, you'll have to do all of your editing from the Admistrator-side for now.

Change line 168 in /templates/YourTemplate/functions.php:

$this->canEdit = $document->user->authorise('core.edit', 'com_content.frontpage.' . $this->item->id);

[TO]

$this->canEdit = false;


It work :) thx
 
neo

Posted: 8/29/2011
Quote message 

? ('<span class="componentheading' . $page->params->get('pageclass_sfx') . '">'
I have too facing the same problem..Can any one help me plz. :(
 
SkinCareDoc

Posted: 9/4/2011
Quote message 

I am learning Joomla, I uploaded my Artisteer Template several time and it worked fine. BUT it suddenly stop working and giving me the following message:
Copy failed
JInstaller: :Install: Failed to copy file /home1/theskin1/public_html/skincarenaturalskincare/tmp/install_4e635b5ce553a/SkinCare1/component.php to /home1/theskin1/public_html/skincarenaturalskincare/templates/skincare1/component.php
Error installing template :(
I have no problems to upload any other components I try to reload Joomla several times it always all-right wit any other components but the same message still come back when trying to upload the template.
YES I read the instructions many times :-)
 
  Page 1 of 2 Next Last