Easy PHP Calendar - We really take care of your dates!


Go Back   Easy PHP Calendar > Integration > Mambo/Joomla Integration

Mambo/Joomla Integration Information about integrating the calendar with the Mambo Content Management System.

Closed Thread
 
Thread Tools Search this Thread Display Modes

PopUp not fully working
Old 02-28-2010, 07:03 PM   #1
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default PopUp not fully working

Another problem I'm having eith my joomla 1.5.15 template is that I can not see the popupbox. If I turn on the on-mouse popup, it just doesn't show anything. I have to turn it off, and turn on the onclick popup... but then I only see a small one-line box.

Some time ago I got help here, and it was supposed to be a JS error. But now I don't get errors anymore... and it still doesn't work.

Any help?
http://www.aescse.pt
 

Old 03-01-2010, 09:33 AM   #2
Brian
EPC Developer
 
Brian's Avatar
 
Brian is offline
Join Date: Jun 2001
Location: Florida, USA
Posts: 10,906
Default

Moving to Joomla forum...
__________________
-- Brian

Questions?

Instructions | FAQs | Errors FAQ | Forums | Support
| Web Site Hosting
 

Old 03-01-2010, 03:51 PM   #3
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default

Brian, I have my main site in www.aescse.pt/agese
To perform tests I created a testing site on the same domain: www.aescse.pt/agese2

I installed a calendar in this folder and the calendar shows but like in the picture.

Just tell me if it is a license problem. If I reset the licence for agese2 will it affect agese?

I just need to know this to do tests on my test-site with the integration instructions. Thanks
 

Old 03-01-2010, 04:43 PM   #4
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,968
Default

The license is not your problem. You're having problems with the config file not being saved to memory. It's not getting the proper values and hence the theme isn't loaded nor is the mouseover script.

I don't know what your setup is like, so I can't tell you what you need to do to fix it. Joomla (on my part) hasn't been developed for a few years already. All my development time has gone to WordPress.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-01-2010, 05:57 PM   #5
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default

Hello, well I reinstalled the calendar, this time outside the modules folder, and it looks good now.

POPup is still not working although it's enabled.

One more question: the code in Instalation instructions is to be set in the templates index.php file, right? I did it, but there is still no popup.
 

Old 03-02-2010, 07:04 AM   #6
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,968
Default

Normally, that's how it would work, but Joomla breaks the regular integration. The only reliable way to add the code was done through the module, and that doesn't seem to work for you...

The problem in your case is not where the code is added... it's that the variables that are required for the calendar to work don't stay in memory. If the variables don't stick, the calendar won't work. What you can try is to add the following line above every require() listed in the Integration steps.
PHP Code:
require("<path to your calendar install>/config.inc.php"); 
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-02-2010, 04:00 PM   #7
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default

Hello, I tried all afternoon several solutions, even adding codes into index fle of my template, but no good. So I reseted my index.php file.

meanwhile I got the calendar popup working... Miracle!, but only in a module position called absolute (left-upper corner) which doesn't look good...

When I put it on another module position, sometimes the popup appears flicking, and we can not see it, in other module positions it seems to be there but hidden way down the mouse position.

Coud you please just take a look at the actual situation... maybe you have an idea on how I can put it working on another position.

Anyhow, I think it is proven that popup works on the template... it has issues with the modules. I even tried adding anchor code... but had no success.

http://www.aescse.pt/agese2

PS: the site looks ugly, but is 4 testing purposes only!
 

Think I solved it.
Old 03-02-2010, 04:17 PM   #8
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default Think I solved it.

The solution is not clean... I had to set the popup offset X and Y to negative values... -200 and -100 for one module position

For other module positions the values differ. I think it proves that the popup works.. just is way off set.

Let's see if I can manage it on the main school site.
 

Overlapping
Old 03-02-2010, 04:54 PM   #9
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default Overlapping

__________________________________________
Is there a way to put the popup OVER the other modules? It keeps getting under neughbour modules... specially when there are 2 or more events listed on the popup.
 

Old 03-02-2010, 05:19 PM   #10
Brian
EPC Developer
 
Brian's Avatar
 
Brian is offline
Join Date: Jun 2001
Location: Florida, USA
Posts: 10,906
Default

In your module.css file you have:

div.module { position: relative; }

This is messing up the pop-up positions and hiding it behind the div.
__________________
-- Brian

Questions?

Instructions | FAQs | Errors FAQ | Forums | Support
| Web Site Hosting
 

Old 03-02-2010, 05:20 PM   #11
Brian
EPC Developer
 
Brian's Avatar
 
Brian is offline
Join Date: Jun 2001
Location: Florida, USA
Posts: 10,906
Default

Looks like you're changing the page?
__________________
-- Brian

Questions?

Instructions | FAQs | Errors FAQ | Forums | Support
| Web Site Hosting
 

Old 03-02-2010, 05:32 PM   #12
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,968
Default

The reason why the popup doesn't appear at the proper place is because the $OL line is not directly after the <body> tag. That is the problem with the Joomla integration.

If you were able to follow the integration steps in Joomla, there shouldn't be any problems, but you would have to modify the module too.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-02-2010, 07:14 PM   #13
Amelia Pereira
Calendar User
 
Amelia Pereira is offline
Join Date: Oct 2008
Posts: 66
Default

Quote:
Originally Posted by Brian View Post
Looks like you're changing the page?
I was just trying things to see which is the best solution. Maybe it's a template problem, but configuration of the module seems difficult to me... and I think that the module.position issue is probably difficult to resolve, since I am not experienced enough in php or css to "mess" with the code.
 
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
popup on minicalendar not working Amelia Pereira General Support 9 10-09-2009 06:37 PM
Popup in IE still not working 6.3.27 hixster Customizations (Themes / Templates) 2 05-08-2009 11:37 AM
On mouseover popup not working kcolbe01 Customizations (Themes / Templates) 8 05-02-2007 12:00 PM
Calendar is working but not fully. Joey Dugdale Installation / Upgrade Questions 14 02-27-2006 04:34 PM
Rollover popup not working. mkeranen General Support 2 05-31-2005 05:23 PM



All times are GMT -4. The time now is 03:05 AM.


vBulletin skins developed by: eXtremepixels
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Copyright 2009 NashTech, Inc.

| Home | Register | Today's Posts | Search | New Posts |