Migration alpha2 - release candidate
This is a forum dedicated to JEvents 1.5.
Please post bug reports, comments, experience about JEvents 1.5 here.
Please post bug reports, comments, experience about JEvents 1.5 here.
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.
Migration alpha2 - release candidate
by Geraint » Sat Jan 24, 2009 7:09 pm
Most database changes between alpha2 and the release candidate are taken care of by the "setup database" call.
The one thing that is missing is the migration of the events category data. You can do this by applying the following 3 SQL queries to your database after running "setup database".
If you table prefix is not "jos_" change the query accordingly. You only need run these queries once.
Geraint
The one thing that is missing is the migration of the events category data. You can do this by applying the following 3 SQL queries to your database after running "setup database".
- Code: Select all
INSERT INTO jos_jevents_categories (id, color) (SELECT * FROM jos_events_categories ) ;
- Code: Select all
update jos_categories set section='com_jevents' where section='com_events';
- Code: Select all
ALTER TABLE `jos_jevents_vevdetail` ADD color varchar(20) NOT NULL default '';
If you table prefix is not "jos_" change the query accordingly. You only need run these queries once.
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!
Join the JEvents club today!
- Geraint
- Posts: 10008
- Joined: Fri Feb 15, 2008 6:14 pm
Re: Migration alpha2 - beta
by vtjman » Wed Feb 18, 2009 6:13 am
I am getting this error message in PHPMyAdmin:
Error
SQL query: Documentation
INSERT INTO jos_jevents_categories(
SELECT *
FROM jos_events_categories ) ;
MySQL said: Documentation
#1136 - Column count doesn't match value count at row 1
Any ideas?
Error
SQL query: Documentation
INSERT INTO jos_jevents_categories(
SELECT *
FROM jos_events_categories ) ;
MySQL said: Documentation
#1136 - Column count doesn't match value count at row 1
Any ideas?
- vtjman
- Posts: 1
- Joined: Wed Feb 18, 2009 6:10 am
Re: Migration alpha2 - beta
by Geraint » Wed Feb 18, 2009 8:55 am
Yes - a good point. I added an extra column a week or two ago.
The revised query should be
GEraint
The revised query should be
- Code: Select all
INSERT INTO jos_jevents_categories (id, color) (SELECT * FROM jos_events_categories ) ;
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!
Join the JEvents club today!
- Geraint
- Posts: 10008
- Joined: Fri Feb 15, 2008 6:14 pm
Re: Migration alpha2 - release candidate
by Mogwai » Fri Jun 26, 2009 9:10 pm
Hi
I am running v1.5.0 alpha2 in both of my Joomla installations and it worked fine from beginning on.
Now I would like to upgrade to version 1.5.1, but making changes in the database is not something common to me. The only thing that I could arrange with a try in one of the local installations was this:
"ALTER TABLE `jos_jevents_vevdetail` ADD color varchar(20) NOT NULL default '';" - and it worked, my categories were there.
Now I have no idea how to get all my events running as I don't know how to add the other two things needed for the migration.
It would be a pity if I have to enter all the events again in both homepages.
For the moment I have uninstalled v1.5.1, installed the alpha2 again and imported the backuped database, so that the local installation is the same as the online installation.
Maybe someone can give me assistance and help me to get through the upgrade process.
Thank you very much in advance.
Good night
Mogwai
I am running v1.5.0 alpha2 in both of my Joomla installations and it worked fine from beginning on.
Now I would like to upgrade to version 1.5.1, but making changes in the database is not something common to me. The only thing that I could arrange with a try in one of the local installations was this:
"ALTER TABLE `jos_jevents_vevdetail` ADD color varchar(20) NOT NULL default '';" - and it worked, my categories were there.
Now I have no idea how to get all my events running as I don't know how to add the other two things needed for the migration.
It would be a pity if I have to enter all the events again in both homepages.
For the moment I have uninstalled v1.5.1, installed the alpha2 again and imported the backuped database, so that the local installation is the same as the online installation.
Maybe someone can give me assistance and help me to get through the upgrade process.
Thank you very much in advance.
Good night
Mogwai
- Mogwai
- Posts: 2
- Joined: Fri Jun 26, 2009 9:00 pm
Re: Migration alpha2 - release candidate
by shmryan » Wed Jul 08, 2009 6:12 pm
I have a similar problem as Mogwai has. I am running the 1.5.0 Beta version and need to upgrade to the Stable version, but have no idea when it comes to sql or phpadmin. can someone put it in "dummy" terms for me to understand. I don't want to lose any of my categories or saved events if I don't have to. thanks!
- shmryan
- Posts: 2
- Joined: Wed Jul 08, 2009 5:51 pm
Re: Migration alpha2 - release candidate
by jerryboone » Sun Oct 25, 2009 2:46 pm
i have no idea with phpadmin.. need help! thanks!
- jerryboone
- Posts: 1
- Joined: Fri Oct 23, 2009 7:30 am
Re: Migration alpha2 - release candidate
by TopCop » Sun Oct 25, 2009 4:59 pm
Hi Schwimmbrille!
Do you have phpadmin installed or acces to it through your host?
If so it is easy to do.
Are you German as your nick indicates?
TopCop
Do you have phpadmin installed or acces to it through your host?
If so it is easy to do.
Are you German as your nick indicates?
TopCop
-

TopCop - Contributor
- Posts: 416
- Joined: Sat Feb 07, 2009 2:48 pm
- Location: Germany
Re: Migration alpha2 - release candidate
by Mogwai » Sun Oct 25, 2009 5:50 pm
My problem is also still not solved.
No, I have no access to phpadmin.
I am also talking German (Austria).
Still need help for updating to the actual version.
Thanks
No, I have no access to phpadmin.
I am also talking German (Austria).
Still need help for updating to the actual version.
Thanks
- Mogwai
- Posts: 2
- Joined: Fri Jun 26, 2009 9:00 pm
Re: Migration alpha2 - release candidate
by petersavoy » Fri Aug 13, 2010 5:37 pm
I have the same problem: no access to phpadmin.
Thanks million!
Thanks million!
- petersavoy
- Posts: 1
- Joined: Fri Aug 13, 2010 5:27 pm
9 posts
• Page 1 of 1
Return to JEvents 1.5 (Free Access)
Who is online
Users browsing this forum: wrogo and 1 guest
