|
|
User Menu link problem - 2008/02/09 10:21
Hello, Using joomla 1.0.13 I am seeing this following page displayed whenever I select a menu link I made a to the gmapspro component. Or when Im selecting the link displayed for a map in the gmaps list module.
Note that I am able to see the profile map (or nearby users map)in community builder, and I SEE the gmap list as well.
I have maps, markers, and categories defined in the Gmaps component.
Warning: main(/home/bryanjer/public_html/libraries/pattemplate/patTemplate.php) [function.main]: failed to open stream: No such file or directory in /home/bryanjer/public_html/components/com_gmapspro/gmapspro.php on line 35
Fatal error: main() [function.require]: Failed opening required '/home/bryanjer/public_html/libraries/pattemplate/patTemplate.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/bryanjer/public_html/components/com_gmapspro/gmapspro.php on line 35
When I look for the libraries subfolder in the public_html folder, it is not there.
The only edits I had been making were to the website layout via the index.php. After that (or at least edits more or less limited to that) I saw this start to happen. Note that I reinstalled all aspects of gmaps pro in troubleshooting, to no avail (but I do wonder if I did not completely uninstall it because all of my markers, maps, etc did not need to be re-entered)
Thanks for your input.
The administrator has disabled public write access.
|
|
|
Re:User Menu link problem - 2008/02/11 17:48
That issue with patTemplate is caused to the fact that it interprets your environment as J15. There are some extensions that run in J10x that set a 15 variable. To fix this, do the following:
In the gmapspro.php and admin.gmapspro.php file, take the following block of code ...
| Code: | //Set Joomla 1.5 flag
if (defined('_JEXEC')) {
define("_GMAPS_J15", true);
} else
define('_GMAPS_J15', false);
|
and change it to ...
| Code: |
//Set Joomla 1.5 flag
//if (defined('_JEXEC')) {
// define("_GMAPS_J15", true);
//} else
define('_GMAPS_J15', false);
|
This will force it to a J10x environent.
Sorry for slow response. I took a break.
Chris
The administrator has disabled public write access.
|
|