My Subscriptions

No active or expired subscriptions. View Available Subscriptions

Advanced Search

Home arrow Forum arrow Extensionsarrow JCal Pro and JCal Clientarrow JCal Pro 1.5.x for Joomla! 1.0.xarrow Jcal Pro should be compatible to joomla 1.5 beta 2
Pages: [1]
Print
Author Topic: Jcal Pro should be compatible to joomla 1.5 beta 2  (Read 2328 times)
almas
Newbie
*

Karma: +0/-0
Posts: 1


View Profile Email
« on: May 23, 2007, 03:21:53 AM »

Hi,

Now I am using joomla 1.5 beta 2. But this Jcal Pro latest version 1.5.3 is not compatible to this joomla version.

When will I get compatible version for joomla 1.5 beta 2?

Waiting for the new version.

Thanks.
Logged
hira
Newbie
*

Karma: +0/-0
Posts: 1


View Profile
« Reply #1 on: May 23, 2007, 03:27:42 AM »

Hey,

I am also facing this problem.

How Can I get rid of this?

Is there any one can help us?


Thanks in advance.
Logged
V-man
Administrator
Hero Member
*****

Karma: +11/-1
Posts: 1999


Ignorance is curable, stupid is forever.


View Profile
« Reply #2 on: May 23, 2007, 05:24:19 PM »

You will be waiting some time for a JCal Pro version compatible with Joomla! v1.5. Our current goal is to release one more version for Joomla! 1.0.x and then to get development going for Joomla! 1.5. It is quite a big task.

Also, Joomla! 1.5 is not stable yet and very few compatible extensions exist for it. The Joomla! team does not recommend beta2 for production sites.
Logged

*** Please read this post and the FAQs before posting in the forum. ***

Support questions via PM will be ignored. Please use
thingwarbler
Newbie
*

Karma: +0/-0
Posts: 8


View Profile
« Reply #3 on: June 05, 2007, 02:04:12 PM »

The Joomla! team does not recommend beta2 for production sites.
True, but for those of us launching new projects now it'd be nice to be able to develop on 1.5 beta with the core extensions (like Jcal) in place, even if they were only "beta-compatible" releases and not necessarily your final 1.5 offering.

I'm having a hard time telling my coders to pour effort into building on 1.0.12 and related extensions when we're going to be at 1.5 by the time we ourselves get into beta over the summer. I'd hate to find my team wasting any more time than necessary retooling the application at that point just to get fundamental extension stuff fixed.

Some of our key functionality revolves around the calendar, so we're really dependent on a 1.5 compatible calendar module to get things off the ground -- to the point where we'd consider putting down some $$$ to get a 1.5 compatible version out sooner rather than later...
Logged
V-man
Administrator
Hero Member
*****

Karma: +11/-1
Posts: 1999


Ignorance is curable, stupid is forever.


View Profile
« Reply #4 on: June 05, 2007, 02:38:47 PM »

well, we will certainly open the SVN to you if you can help. However, i think 1.5 adoption will be quite slow. I have used the betas and there is no compelling reason for an average user to switch (IMHO). No improvement in the end-user support. No improvement in sections/categories (i.e. the change to nested nodes like Drupal). I know the code is being cleaned up and tweaked and stuff, but for 1 year's worth of development, the changes to most end users will appear incremental at best.
« Last Edit: June 05, 2007, 02:41:16 PM by V-man » Logged

*** Please read this post and the FAQs before posting in the forum. ***

Support questions via PM will be ignored. Please use
bugmenot
Newbie
*

Karma: +0/-0
Posts: 7



View Profile
« Reply #5 on: June 10, 2007, 12:39:07 PM »

This is a WORKAROUND! Not a fix! It took me just a few minutes to make it work, which is why it is extremely ugly :-D
So, here it goes:

1. Replace all occurences of "_mos_add_acl" with "addACL" in this file:
- components/com_jcalpro/config.inc.php

2. Repeat all the "global" declarations at the top of each of these files:
- administrator/components/com_jcalpro/admin.config.inc.php
- administrator/components/com_jcalpro/admin.jcalpro.html.php
- administrator/components/com_jcalpro/admin.jcalpro.php
- administrator/components/com_jcalpro/admin_settings.php
- administrator/components/com_jcalpro/includes/events.html.php
- administrator/components/com_jcalpro/includes/events.php
- components/com_jcalpro/config.inc.php
- components/com_jcalpro/themes/default/theme.php
- components/com_jcalpro/admin_events.php
- components/com_jcalpro/include/functions.inc.php
- components/com_jcalpro/jcalpro.php
- components/com_jcalpro/jcalpro.class.php

For example: In "admin.config.inc.php", "$CONFIG_EXT" and "$lang_config_data" are declared as "global", so you place this at the very top of the file: "global $CONFIG_EXT, $lang_config_data;"
Repeat this with each of the global declarations of each file.

Et voila... it works!
BTW: Using globals is extreeeemely bad practice, but I currently don't have time to write a cleaner fix, replacing all global declarations.

Have fun

EDIT: I forgot to mention one exception: Do not add the global declaration for $params at the top of functions.inc.php
« Last Edit: June 10, 2007, 01:05:14 PM by bugmenot » Logged
V-man
Administrator
Hero Member
*****

Karma: +11/-1
Posts: 1999


Ignorance is curable, stupid is forever.


View Profile
« Reply #6 on: June 23, 2007, 04:15:39 PM »

I'd like to see this running on J! 1.5 if you have it working.
Logged

*** Please read this post and the FAQs before posting in the forum. ***

Support questions via PM will be ignored. Please use
sssjonnie
Beta Testers
Newbie
*

Karma: +0/-0
Posts: 1


View Profile
« Reply #7 on: August 03, 2007, 11:43:59 AM »

This is a WORKAROUND! Not a fix! It took me just a few minutes to make it work, which is why it is extremely ugly :-D
So, here it goes:

1. Replace all occurences of "_mos_add_acl" with "addACL" in this file:
- components/com_jcalpro/config.inc.php

2. Repeat all the "global" declarations at the top of each of these files:
- administrator/components/com_jcalpro/admin.config.inc.php
- administrator/components/com_jcalpro/admin.jcalpro.html.php
- administrator/components/com_jcalpro/admin.jcalpro.php
- administrator/components/com_jcalpro/admin_settings.php
- administrator/components/com_jcalpro/includes/events.html.php
- administrator/components/com_jcalpro/includes/events.php
- components/com_jcalpro/config.inc.php
- components/com_jcalpro/themes/default/theme.php
- components/com_jcalpro/admin_events.php
- components/com_jcalpro/include/functions.inc.php
- components/com_jcalpro/jcalpro.php
- components/com_jcalpro/jcalpro.class.php

For example: In "admin.config.inc.php", "$CONFIG_EXT" and "$lang_config_data" are declared as "global", so you place this at the very top of the file: "global $CONFIG_EXT, $lang_config_data;"
Repeat this with each of the global declarations of each file.

Et voila... it works!
BTW: Using globals is extreeeemely bad practice, but I currently don't have time to write a cleaner fix, replacing all global declarations.

Have fun

EDIT: I forgot to mention one exception: Do not add the global declaration for $params at the top of functions.inc.php

With these instructions I get it run in joomla 1.5 but I have a problem with the access control. Even when I set the 'Who Can Submit New Events' parameter a none registered user can add new events. This is not what I want. Have you seen this behaviour aswell? And how did you do a quick hack?

sssjonnie
Logged
mikiah
Newbie
*

Karma: +0/-0
Posts: 1


View Profile
« Reply #8 on: January 28, 2008, 02:27:36 AM »

I just bought this calendar. It looks great but when purchasing, I didn't see anywhere that it wasn't compatible with 1.5. That sucks a big one.  Now I feel like I wasted my money... I hope I at least get to upgrade when the new one comes out.
Logged
V-man
Administrator
Hero Member
*****

Karma: +11/-1
Posts: 1999


Ignorance is curable, stupid is forever.


View Profile
« Reply #9 on: January 29, 2008, 05:09:29 PM »

Did you read the documentation page? It shows that 1.6 beta works with Joomla! 1.5 in legacy mode.this is not true for 1.5. It's also shown for the main component at point of download:

Quote
This archive contains the main JCal Pro component modified for dual compatibility with Joomla 1.0.x and Mambo 4.6.2. Install using the Joomla! component installer or Mambo universal installer and then create a new component menu item directed towards JCal Pro.
Logged

*** Please read this post and the FAQs before posting in the forum. ***

Support questions via PM will be ignored. Please use
Pages: [1]
Print
Jump to:  

Powered by SMF 1.1.3 | SMF © 2006-2007, Simple Machines LLC
Joomla Bridge by JoomlaHacks.com

Original Joomla Template design by RocketTheme ( Conversion by Bloc)