-
AuthorPosts
-
January 20, 2010 at 7:27 pm #329870
the Joomlaxi Captcha not funcionality in theme, is work in other themes, but not in purity ii, and AlphaRegistration d’ont check username… javascript not funcionally.
in other themes both works perfectJanuary 21, 2010 at 7:12 am #329932I can confirm that Alpha registration does not check username.
drumuh Frienddrumuh
- Join date:
- February 2010
- Posts:
- 4
- Downloads:
- 0
- Uploads:
- 0
- Thanked:
- 2 times in 3 posts
February 1, 2010 at 6:44 am #331128I have a problem with getCurrentURL() by me it’s not working corect, only if you have enabled the apache rewrite in the configuration it’s worked
but if not anf you only enable the other 2 rewrite settings url is i.e. “http://…/index.php/typography.html/typography.html#Top” insteed of “http://…/index.php/typography.html#Top”for me it worked when i comment out
if(($pos = strpos($cururl, "index.php"))!== false){
$cururl = substr($cururl,$pos);
}1 user says Thank You to drumuh for this useful post
February 6, 2010 at 9:14 am #331799<em>@drumuh 162936 wrote:</em><blockquote>I have a problem with getCurrentURL() by me it’s not working corect, only if you have enabled the apache rewrite in the configuration it’s worked
but if not anf you only enable the other 2 rewrite settings url is i.e. “http://…/index.php/typography.html/typography.html#Top” insteed of “http://…/index.php/typography.html#Top”for me it worked when i comment out
if(($pos = strpos($cururl, "index.php"))!== false){
$cururl = substr($cururl,$pos);
}
</blockquote>The some for mine site http://www.lt-online.lt if you click TOP you become double link and 404 eror. This double link only is if SEO is enabled.
drumuh where you have comment it, I mean on which *.ini or other file.
drumuh Frienddrumuh
- Join date:
- February 2010
- Posts:
- 4
- Downloads:
- 0
- Uploads:
- 0
- Thanked:
- 2 times in 3 posts
February 9, 2010 at 3:47 pm #332217Worked for me too. Thanks drumuh 🙂
February 13, 2010 at 12:41 pm #332590hi, I’m using the ja-purity-II which was. I found a bug on content pagination. My content has reached 11 pages. problem, when reached on pages 9 and I click next, then going back to page 8, not to page 10. correction please
gray Friendgray
- Join date:
- October 2009
- Posts:
- 957
- Downloads:
- 0
- Uploads:
- 17
- Thanks:
- 28
- Thanked:
- 292 times in 230 posts
February 15, 2010 at 7:31 am #332738<em>@korb 152925 wrote:</em><blockquote>I finally found the fix for this issue. The issue is reported here http://pm.joomlart.com/browse/JATCPURITYII-57
open libs/menu/base.class.php
FIND LINE
$itembg = 'style="background-image:url(images/stories/'.$iParams->get('menu_image').');"';REPLACE WITH
$itembg = 'style="background-image:url('.JURI::base().'images/stories/'.$iParams->get('menu_image').');"';
AND LINE
$txt = '<span class="menu-image"><img src="images/stories/'.$iParams->get('menu_image').'" alt="'.$tmp->name.'" title="'.$tmp->name.'" /></span><span class="menu-title">' . $tmp->name . '</span>';
REPLACE WITH
$txt = '<span class="menu-image"><img src="'.JURI::base().'images/stories/'.$iParams->get('menu_image').'" alt="'.$tmp->name.'" title="'.$tmp->name.'" /></span><span class="menu-title">' . $tmp->name . '</span>';
The fix should work perfect on livesite also.
Yupiii, Danny</blockquote>Thanks a lot for the post!
I just found a bug in Joomla. If “Search Engine Friendly URLs ” is ON but “Use Apache mod_rewrite” is set to “NO” JURI::base() returns http://www.mysite.com/index.php/
And of cause http://www.mysite.com/index.php/images/stories/ would not be a correct URI….
February 21, 2010 at 6:31 pm #333302the template is not working correct in IE-8 , there is no borders in the left side menus or modules , i tried it in the IE-7 and Firefox and its perfect ,
please see the attached files
Thank you
-
denis25 Friend
denis25
- Join date:
- July 2009
- Posts:
- 66
- Downloads:
- 0
- Uploads:
- 21
- Thanks:
- 8
- Thanked:
- 22 times in 6 posts
February 25, 2010 at 12:30 am #333779With php5.3 we have this message :
Function eregi() is deprecatedto solve the problem, you have to edit libs > ja.template.helper.php
and replace the line 279:
[PHP]if (eregi(“gif”, $file) || eregi(“jpg”, $file) || eregi(“png”, $file))[/PHP]
by :
[PHP]if (preg_match(‘/.gif/i’, $file) || preg_match(‘/.jpg/i’, $file) || preg_match(‘/.png/i’, $file))[/PHP]1 user says Thank You to denis25 for this useful post
February 26, 2010 at 2:57 pm #334041file templates/ja_purity_ii/css/template.css
line1117
before :
color: #069; !important;after:
color: #069 !important;March 2, 2010 at 4:04 pm #334450I have some problems with several components that use jquery and ajax. anyone know what these conflicts are due? solutions?
ex. the email validator of alpharegistration doesn’t work
Apoll always returns a blank pageMarch 6, 2010 at 1:31 pm #335082Testing unmodified JAPurity II in linux-hosted Joomla 1.5.15 system, some things that work under old JAPurity fail under JAPurity II. The list so far:
- RockSlideshow just shows white space when running under II.
- JEvents’ front-end edit is disabled by II. (See http://www.joomlart.com/forums/topic/template-breaks-jevents/)
I should add that megamenu drop-downs also do not happen on my system, making me suspect that something else is awry.
Any help troubleshooting would be appreciated.
March 7, 2010 at 9:58 pm #335214Is there something in the Purity II template that prevents AJAX from working correctly?
I have installed the Pixpro AJAX search module on my site. When I am using Purity II as my template the I do not receive any search results when the AJAX code runs. However if I click enter to run the Joomla search I receive all fo the results that I expect.
If I change to something like Rocket Themes’ Afterburner template I get all of the search results I expect when the AJAX code runs.
I am using:
Joomla: 1.5.15
Purity II: 1.1
Pixsearch: 0.5My website is: HeavenlyPerspectives.org
Any suggestions? I would really rather use Purity II rather than something else like Afterburner.
Thanks.
Michael
March 9, 2010 at 7:13 pm #335519Hallo, excellent masterpiece, this JA Purity II!
Short question: I’ve setup a banner module in the banner position and it seems that in the template the banner position is not defined. Is it difficult to set it up in the top of the page (before header)? Or somewhere else?
Thanks
AdiJu -
AuthorPosts
This topic contains 241 replies, has 90 voices, and was last updated by Hung Dinh 10 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum