Errors on Extension Site - Alphabetical Listing
Moderators: tydust, LorenzoG, timothy.stiffler
-
- Joomla! Fledgling
- Posts: 4
- Joined: Sat Mar 04, 2006 8:28 pm
Errors on Extension Site - Alphabetical Listing
When you go to all categories and click on the alphabetical menu you get this php error
Warning: listalpha_cache(/includes/pageNavigation.php): failed to open stream: No such file or directory in /home/ext/public_html/components/com_mtree/mtree.php on line 937
Fatal error: listalpha_cache(): Failed opening required '/includes/pageNavigation.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ext/public_html/components/com_mtree/mtree.php on line 937
just thought i'd let you know.
I was looking for a content find and replace extension, anyone know of one.
Happy June everyone
Warning: listalpha_cache(/includes/pageNavigation.php): failed to open stream: No such file or directory in /home/ext/public_html/components/com_mtree/mtree.php on line 937
Fatal error: listalpha_cache(): Failed opening required '/includes/pageNavigation.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ext/public_html/components/com_mtree/mtree.php on line 937
just thought i'd let you know.
I was looking for a content find and replace extension, anyone know of one.
Happy June everyone
Last edited by ot2sen on Sat Jun 03, 2006 11:03 am, edited 1 time in total.
- ot2sen
- Joomla! Ace
- Posts: 1384
- Joined: Thu Aug 18, 2005 9:58 am
- Location: Hillerød - Denmark
- Contact:
Re: Errors on Extension Site - Alphabetical Listing
Hi breadnbutter,
Thanks for reporting this !
We will send in a mechanic a.s.a.p.
Thanks for reporting this !
We will send in a mechanic a.s.a.p.
Re: Errors on Extension Site - Alphabetical Listing
when going to extension site and going to list all categories and click on letter "a" i get these error messages on a blank page:
Warning: listalpha_cache(/includes/pageNavigation.php): failed to open stream: No such file or directory in /home/ext/public_html/components/com_mtree/mtree.php on line 937
Fatal error: listalpha_cache(): Failed opening required '/includes/pageNavigation.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ext/public_html/components/com_mtree/mtree.php on line 937
cheers
fabs
Warning: listalpha_cache(/includes/pageNavigation.php): failed to open stream: No such file or directory in /home/ext/public_html/components/com_mtree/mtree.php on line 937
Fatal error: listalpha_cache(): Failed opening required '/includes/pageNavigation.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ext/public_html/components/com_mtree/mtree.php on line 937
cheers
fabs
Please visit my personal website and leave many traces
http://www.ffaabbiiaann.de
If you need webdesign services I can help you out:
http://www.webdesign2punkt0.de
http://www.ffaabbiiaann.de
If you need webdesign services I can help you out:
http://www.webdesign2punkt0.de
- brad
- Joomla! Hero
- Posts: 2212
- Joined: Fri Aug 12, 2005 12:38 am
- Skype: tested
- Location: Sydney - Australia
- Contact:
Re: Errors on Extension Site - Alphabetical Listing
Mod note: Threads merged.
Brad Baker - Joomla! Core Team, Sites & Infrastructure.
http://www.rochen.com - Managed Dedicated, Reseller & Multiple Domain Hosting.
http://www.joomlatutorials.com <-- Joomla! 1.5 & 1.0.x
^New Joomla 1.5 Tutorials are out!
http://www.rochen.com - Managed Dedicated, Reseller & Multiple Domain Hosting.
http://www.joomlatutorials.com <-- Joomla! 1.5 & 1.0.x
^New Joomla 1.5 Tutorials are out!
- dknight
- Joomla! Engineer
- Posts: 467
- Joined: Thu Aug 18, 2005 5:14 am
- Location: Kuala Lumpur, Malaysia
- Contact:
Re: Errors on Extension Site - Alphabetical Listing
Thanks for reporting this guys. The mechanic (me) has fixed the bug.
Lee - Mosets Consulting
Developer of Real Estate and Directory component for Joomla!
Website: www.mosets.com
Developer of Real Estate and Directory component for Joomla!
Website: www.mosets.com
Re: Errors on Extension Site - Alphabetical Listing
And how was this fixed? Do everything need to be upgraded to 1.59?
I am running Joomla 1.0.10
Thanks!
I am running Joomla 1.0.10
Thanks!
- dknight
- Joomla! Engineer
- Posts: 467
- Joined: Thu Aug 18, 2005 5:14 am
- Location: Kuala Lumpur, Malaysia
- Contact:
Re: Errors on Extension Site - Alphabetical Listing
Whether you're having the error or not, we strongly advise our customers to upgrade to the latest version of Mosets Tree 1.59.
Lee - Mosets Consulting
Developer of Real Estate and Directory component for Joomla!
Website: www.mosets.com
Developer of Real Estate and Directory component for Joomla!
Website: www.mosets.com
Re: Errors on Extension Site - Alphabetical Listing
Hello!
Yes, I am going to upgrade asap.
Found the fix anyway, wanted it to work before I upgraded.
global $mosConfig_absolute_path is not set in mtree.php
------------------------------------------------------------------------------
inf file /components/com_mtree/mtree.php line 841
Replace this code: global $database, $savantConf, $_MT_LANG, $Itemid, $mosConfig_offset, $mainframe;
With this one: global $database, $savantConf, $_MT_LANG, $Itemid, $mosConfig_offset, $mainframe, $mosConfig_absolute_path;
Yes, I am going to upgrade asap.
Found the fix anyway, wanted it to work before I upgraded.
global $mosConfig_absolute_path is not set in mtree.php
------------------------------------------------------------------------------
inf file /components/com_mtree/mtree.php line 841
Replace this code: global $database, $savantConf, $_MT_LANG, $Itemid, $mosConfig_offset, $mainframe;
With this one: global $database, $savantConf, $_MT_LANG, $Itemid, $mosConfig_offset, $mainframe, $mosConfig_absolute_path;
- dknight
- Joomla! Engineer
- Posts: 467
- Joined: Thu Aug 18, 2005 5:14 am
- Location: Kuala Lumpur, Malaysia
- Contact:
Re: Errors on Extension Site - Alphabetical Listing
This has been fixed in 1.59knutot wrote:Hello!
Yes, I am going to upgrade asap.
Found the fix anyway, wanted it to work before I upgraded.
global $mosConfig_absolute_path is not set in mtree.php
------------------------------------------------------------------------------
inf file /components/com_mtree/mtree.php line 841
Replace this code: global $database, $savantConf, $_MT_LANG, $Itemid, $mosConfig_offset, $mainframe;
With this one: global $database, $savantConf, $_MT_LANG, $Itemid, $mosConfig_offset, $mainframe, $mosConfig_absolute_path;
Lee - Mosets Consulting
Developer of Real Estate and Directory component for Joomla!
Website: www.mosets.com
Developer of Real Estate and Directory component for Joomla!
Website: www.mosets.com