-
AuthorPosts
-
steve100054 Friend
steve100054
- Join date:
- June 2009
- Posts:
- 23
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 6
- Thanked:
- 1 times in 1 posts
September 15, 2009 at 2:36 pm #144240Hi
I need help. I installed the final version of T3 and I have problems with photos. There are no photos in category and article pages. They are at the front page. Even if I add a new story the photo appears in the front page, but in the article or category pages…including the photos that coming with Quickstart package. Everything works well by the way in my computer where I use Xampp wit php 5.2.8, apache 2.2.11 and mysql 5.1.30
MY hosting company is using: Apache version 1.3.41 (Unix), PHP version 5.2.5 MySQL version 4.1.22-standard
Can anyone help me as it seems that cannot do anything.
Thanks in advance
SteveAnonymous ModeratorJA Developer
- Join date:
- September 2014
- Posts:
- 9914
- Downloads:
- 207
- Uploads:
- 152
- Thanks:
- 1789
- Thanked:
- 2008 times in 1700 posts
September 16, 2009 at 8:27 am #317506Hi steve100054
It is so hard to debug this issue.
Please send me your live url, admin account, if possible, ftp account via PM so that i could have a closer look on the issue.
September 16, 2009 at 9:45 pm #317570I just extracted and installed the Teline III Quickstart. I am experiencing the same issue with the images. The images are visible everywhere but within the article itself. If you go to the admin section to edit the article you will see the images complete with layout. The article preview also appears correctly. I have tried the site in Firefox and IE 7, both have the same issue.
Not sure if this will help, but when I compare the source on the demo site to the source on my site for an article like ‘Nutrition — It’s a matter of fact’. My first thought was that I was missing an article images module or plugin, but I am not sure which one if that is the case.
My site code:
<div class=”article-content”>
<div class=”ja-thumbnailwrap thumb-right” style=”width: 200px;”>
<div class=”ja-thumbnail clearfix”></div>
</div>
Compared to the demo site which has the following:
<div class=”article-content”>
<div class=”ja-thumbnailwrap thumb-right” style=”width: 200px;”>
<div class=”ja-thumbnail clearfix”><div class=”thumbnail” style=”position:relative;z-index:2″>
<a href=”/ja_teline_iii_extra/images/stories/demo/health/diet-4.jpg” title=”” rel=”gb_imageset[group]” >
<img src=”/ja_teline_iii_extra/images/resized/images/stories/demo/health/diet-4_200_200.jpg” alt=”Sample image” align=”left” title=”Sample image” class=”caption” />
</a>
</div>
<div class=”thumbnail” ><a href=”/ja_teline_iii_extra/images/stories/demo/health/diet-4_1.jpg” title=”” rel=”gb_imageset[group]” >
<img src=”/ja_teline_iii_extra/images/resized/images/stories/demo/health/diet-4_1_200_200.jpg” alt=”Sample image” align=”left” title=”Sample image” class=”caption” />
</a>
</div>
<div class=”thumbnail” ><a href=”/ja_teline_iii_extra/images/stories/demo/health/diet-4_2.jpg” title=”” rel=”gb_imageset[group]” >
<img src=”/ja_teline_iii_extra/images/resized/images/stories/demo/health/diet-4_2_200_200.jpg” alt=”Sample image” align=”left” title=”Sample image” class=”caption” />
</a>
</div>
</div>
<ul class=”nav clearfix”><li class=”prev”>Prev</li>
<li class=”counter”><span class=”item”>1</span> of <span class=”total”>3</span></li>
<li class=”next”>Next</li>
</ul></div>
<script type=”text/javascript”>
var JAThumbnail = new Class({
initialize: function(wrapper){
this._next = wrapper.getElements(‘.next’);
this._prev = wrapper.getElements(‘.prev’);
this._counter = wrapper.getElement (‘.counter .item’);
this._items = wrapper.getElements(‘.thumbnail’);
this._thumbbox = wrapper.getElement(‘.ja-thumbnail’);
this._curr = 0;
if (!this._items || this._items.length <= 1) return;
this._firstrun = true;this._items.setStyle(‘opacity’, 1);
this._items.each(function(item,i){
if (i != this._curr) this._items.setStyles({‘opacity’:0});
}.bind(this));if (this._next) {
this._next.addEvent(‘click’, function (){
this.firstrun();
var next = this._curr < this._items.length-1?this._curr+1:0;
if (this.fx) this.fx.stop();
this.fx = new Fx.Elements(,this._items[next],this._thumbbox]);
var h1 = this._thumbbox.getCoordinates().height;
var h2 = this._items[next].getCoordinates().height;
this.fx.start ({‘0’:{‘opacity’:[0]},’1′:{‘opacity’:[1]},’2′:{‘height’:}});
this._curr = next;
this._counter.innerHTML = this._curr + 1;
}.bind(this));
}
if (this._prev) {
this._prev.addEvent(‘click’, function (){
this.firstrun();
var next = this._curr > 0?this._curr-1:this._items.length-1;
if (this.fx) this.fx.stop();
this.fx = new Fx.Elements(,this._items[next], this._thumbbox]);
var h1 = this._thumbbox.getCoordinates().height;
var h2 = this._items[next].getCoordinates().height;
this.fx.start ({‘0’:{‘opacity’:[0]},’1′:{‘opacity’:[1]},’2′:{‘height’:}});
this._curr = next;
this._counter.innerHTML = this._curr + 1;
}.bind(this));
}
},
firstrun: function() {
if (this._firstrun) {
var coor = this._items.getCoordinates();
this._thumbbox.setStyles ({‘width’:coor.width, ‘height’: coor.height});
this._items.setStyle (‘position’, ‘absolute’);
this._firstrun = false;
}
}
});
$$(‘.ja-thumbnailwrap’).each(function(wrapper){
new JAThumbnail (wrapper);
});
</script>Thank you for the help. I can provide you with admin access if required. Let me know.
-
AuthorPosts
This topic contains 3 replies, has 3 voices, and was last updated by kroc 15 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum