Alpha 2 to Alpha 3 - Create Events
JEvents 2.0 was launched over 2 years ago and the latest stable version is version 2.2 which will run on Joomla 1.5 and Joomla 2.5. JEvents 1.5 is therefore no longer actively supported - you should upgrade to JEvents 2.2+ as soon as possible.
Forum rules
Please include as much detail in any test or bug reports for JEvents 1.5 as possible.
First of all, check if you are running the latest available version of Joomla! and JEvents. Posts for issues, where both systems are not updated, will be ignored.
We need the following at least:
* PHP version (e.g. 5.2.5). Note: Support for PHP4 is discontinued.
* Joomla! version
* JEvents version
* Web Server software (Apache or IIS with version number if possible)
* Server Operating system (e.g. Linux, Windows, Solaris, Darwin ...)
* Database version
* memory_limit from your phpinfo
* Web browser and version
Please enable error reporting and include any error messages in your posting. You do this via the Joomla Configuration - set "error reporting" to "maximum" on the Server tab.
Finally, please describe the steps required to recreate the problem and also please enable error reporting and give us any error messages generated.
Please include as much detail in any test or bug reports for JEvents 1.5 as possible.
First of all, check if you are running the latest available version of Joomla! and JEvents. Posts for issues, where both systems are not updated, will be ignored.
We need the following at least:
* PHP version (e.g. 5.2.5). Note: Support for PHP4 is discontinued.
* Joomla! version
* JEvents version
* Web Server software (Apache or IIS with version number if possible)
* Server Operating system (e.g. Linux, Windows, Solaris, Darwin ...)
* Database version
* memory_limit from your phpinfo
* Web browser and version
Please enable error reporting and include any error messages in your posting. You do this via the Joomla Configuration - set "error reporting" to "maximum" on the Server tab.
Finally, please describe the steps required to recreate the problem and also please enable error reporting and give us any error messages generated.
Alpha 2 to Alpha 3 - Create Events
by Poil » Wed Jan 28, 2009 10:32 am
Since my upgade to alpha I got this error when trying to create an event :
104 - Problems storing Event Detail
I had "setup the database" and run the 2 SQL and my Jevents component and module are enable
Linux : 2.6.18-6-686 #1 SMP Fri Dec 12 16:48:28 UTC 2008 i686
MySQL : 5.0.32-Debian_7etch8-log / utf8_general_ci
PHP: 5.2.0-8+etch13
Httpd: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c
Joomla! 1.5.8 Production/Stable [ Wohnaiki ] 10-November-2008 23:00 GMT
Memory Limit : 32MB
104 - Problems storing Event Detail
I had "setup the database" and run the 2 SQL and my Jevents component and module are enable
Linux : 2.6.18-6-686 #1 SMP Fri Dec 12 16:48:28 UTC 2008 i686
MySQL : 5.0.32-Debian_7etch8-log / utf8_general_ci
PHP: 5.2.0-8+etch13
Httpd: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c
Joomla! 1.5.8 Production/Stable [ Wohnaiki ] 10-November-2008 23:00 GMT
Memory Limit : 32MB
- Poil
- Posts: 12
- Joined: Mon Jan 12, 2009 9:10 am
Re: Alpha 2 to Alpha 3 - Create Events
by Geraint » Wed Jan 28, 2009 12:41 pm
Can you edit the file
components/com_jevents/libraries/iCalEvent.php and at line c. 855 change
to
notice the extra "die();" statement.
And then tell me what error message you get when you try to save and event
Geraint
components/com_jevents/libraries/iCalEvent.php and at line c. 855 change
- Code: Select all
if (!$detailid){
JError::raiseError( 104, JText::_("Problems storing Event Detail"));
echo $db->getErroMsg()."<br/>";
return false;
}
to
- Code: Select all
if (!$detailid){
JError::raiseError( 104, JText::_("Problems storing Event Detail"));
echo $db->getErroMsg()."<br/>";
die();
return false;
}
notice the extra "die();" statement.
And then tell me what error message you get when you try to save and event
Geraint
------------
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
-

Geraint - Posts: 30518
- Joined: Fri Feb 15, 2008 6:14 pm
Re: Alpha 2 to Alpha 3 - Create Events
by Poil » Wed Jan 28, 2009 1:40 pm
I got the same thing 
I tryied to modify
But I have :
class = iCalEvent
Fatal error: Call to undefined method JDatabaseMySQL::getErroMsg() in /opt/joomla/components/com_jevents/libraries/iCalEvent.php on line 86
EDIT :
OK you got an error getErroMsg => getErrorMSG
Here is the error :
I tryied to modify
- Code: Select all
if (!$detailid){
$toto= $db->getErroMsg()."<br/>";
JError::raiseError( 104, JText::_("Problems storing Event Detail".$toto));
die();
return false;
}
But I have :
class = iCalEvent
Fatal error: Call to undefined method JDatabaseMySQL::getErroMsg() in /opt/joomla/components/com_jevents/libraries/iCalEvent.php on line 86
EDIT :
OK you got an error getErroMsg => getErrorMSG
Here is the error :
- Code: Select all
104 - Problems storing Event Detail
Unknown column 'color' in 'field list' SQL=INSERT INTO `jos_jevents_vevdetail` ( `dtstart`,`dtstartraw`,`duration`,`durationraw`,`dtend`,`dtendraw`,`dtstamp`,`class`,`categories`,`description`,`geolon`,`geolat`,`location`,`priority`,`status`,`summary`,`contact`,`organizer`,`url`,`created`,`sequence`,`extra_info`,`color` ) VALUES ( '1233123780','','0','','1233157620','','','','','gfd','','','','0','','gfd','','','','','','','' )
- Poil
- Posts: 12
- Joined: Mon Jan 12, 2009 9:10 am
Re: Alpha 2 to Alpha 3 - Create Events
by Poil » Wed Jan 28, 2009 1:55 pm
I have add a "color" row now working 
- Poil
- Posts: 12
- Joined: Mon Jan 12, 2009 9:10 am
Re: Alpha 2 to Alpha 3 - Create Events
by Geraint » Wed Jan 28, 2009 2:37 pm
Thanks for spotting that - I'll add it to the dbsetup function.
------------
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
-

Geraint - Posts: 30518
- Joined: Fri Feb 15, 2008 6:14 pm
Re: Alpha 2 to Alpha 3 - Create Events
by Poil » Wed Jan 28, 2009 3:28 pm
Don't forget the getErrorMsg 
- Poil
- Posts: 12
- Joined: Mon Jan 12, 2009 9:10 am
6 posts
• Page 1 of 1
Return to JEvents 1.5 (No longer actively supported)
Who is online
Users browsing this forum: Google [Bot]

