This forum is for questions about upgrading an existing Drupal site. Don't forget to read the UPGRADE.txt file that comes with every Drupal download.

7.7 vs 7.12

Hi,

I just took over a live Drupal installation for a Major school alumni association in New York City. It's someone else's install and there is a lot wrong. I felt that my first task other than major issues is to make sure the instance is up to date. The Drupal module admin says there is a security update but it wants me to update from 7.7 to 7.12. That makes it official. I'm confused. That sounds like a down grade not an upgrade.

One of their major problems was that no one could sign up for membership. This wasn't good. I traced it through an ms_core and/or token module. I couldn't update the ms_core because I'm waiting to get the logins and passwords from the company that installed the 3rd party module for them but in the meantime I manually updated the token module from 7.x-1.0-beta4 to 7.x-1.0-rc. This fixed the problem. At least it seems to have fixed it. The caveat to it is that all I did to update the module is to extract the new 7.x-1.0-rc release from Drupal into the sites/all/modules/token directory. Now the admin/reports/updates/update URL still shows 7.x-1.0-beta4. That scares me but at least people are able to sign up.

Upgraded from 6 to 7 - All usernames display as "anonymous" in users list

My site was just upgraded from Drupal 6 to Drupal 7. I noticed that all users' usernames (regardless of role) are displaying in the people list as "anonymous." If you view the user, their username appears correctly. I have disabled all modules not directly required by Drupal and this issue is still occurring. My account has full permissions. I'm completely at a loss as to what the problem is as I have been searching for a while for help and have not seen this issue reported elsewhere. Any help is appreciated!

Problems about update to drupal 7 from drupal 6

Hello, I want to update my Drupal site. I see all guides about updates but I have a problem when I migrating D6 CCK to D7 fields. In my site all fields are migrated. If I want to create a new content, they appear. But, for old content they don't appeared. My site can't upload a old fields. My content are empty.
I see two error message:

Warning: array_flip() [function.array-flip]: Can only flip STRING and INTEGER values! in DrupalDefaultEntityController->load() (line 178 of C:\xampp\htdocs\livesport\includes\entity.inc).

Warning: Invalid argument supplied for foreach() in views_plugin_query_default->compile_fields() (line 1101 of C:\xampp\htdocs\livesport\sites\all\modules\views\plugins\views_plugin_query_default.inc).
Warning: Invalid argument supplied for foreach() in views_plugin_query_default->query() (line 1185 of C:\xampp\htdocs\livesport\sites\all\modules\views\plugins\views_plugin_query_default.inc).
Warning: Invalid argument supplied for foreach() in views_plugin_query_default->compile_fields() (line 1101 of C:\xampp\htdocs\livesport\sites\all\modules\views\plugins\views_plugin_query_default.inc).
Warning: Invalid argument supplied for foreach() in views_plugin_query_default->compile_fields() (line 1101 of C:\xampp\htdocs\livesport\sites\all\modules\views\plugins\views_plugin_query_default.inc).

How do I INSERT the output from an SQL COUNT statement into a table?

Just possibly this query more rightly belongs on a MySQL forum, but rather than going to all the trouble necessary for me to join yet another support site, I thought I might post a query here.

Besides, it arises from my attempt to upgrade a very old version of Drupal (4.x I think). I am trying to see what tables are updated when I update the content of a Drupal 6.x web-site in various ways -- adding a node, adding a comment, adding a tag, changing the menu, etc. This will help me to understand how to import my older web-site into Drupal version 6.x .

So I need to count the rows in each table before and after the change. Where the row counts differ, that table has been updated.

To store the data, I create another table, rowcount:

drop table rowcount;
create table rowcount(tname varchar(64), f1name varchar(64), rcount integer);

... Then, for each table, I find out the row count for each table and store it together with the table name and and the name of a field or column[1] in the table:

INSERT INTO rowcount (tname, f1name, rcount) VALUES ("access", "aid", select COUNT(*) from `access`);

The above SQL statement does not work, even though the SQL statement contained in the above INSERT statement:

select COUNT(*) from `access`

... does work. The error I get is the following:

How to embedded the videos

Hi,
How to add embedded videos in text field using drupal 7.
(not url. only video embeded code)
Is there any contributed module?
Tell me its very urgent.

Unable to obtain array values in Drupal 7 despite obtaining count.

Hi All
This is the code i have for acquiring user chosen values from listbox. The $targetLangs is the array that gives me the count of chosen items from the listbox. But i am unable to use the syntax it needs to at least printout the individual values it contains.

Pages

Subscribe with RSS Subscribe to RSS - Upgrading Drupal