Results 1 to 4 of 4

Thread: Cant upload with upgrade?

  1. #1
    Join Date
    Jun 2007
    Location
    New York, NY
    Posts
    92

    Default Cant upload with upgrade?

    ERROR: Unable to execute query

    INSERT INTO `process_queue` SET
    file='blahblah.mpg',
    title ='You, You Blew it Up!',
    description='The famous lines put to the famous works courtesy of http://www.mysomain.com',
    keywords='damn you',
    channels='7|22',
    type='public',
    user='fooledagain',
    user_ip='xx.xxx.xx.xxx',
    status=2
    Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (latin1_general_ci,IMPLICIT) for operation '='


    I cant upload?
    Find the best video sites at OnlineTV Video Guide. Register your Vshare there today!

  2. #2
    Join Date
    Apr 2007
    Posts
    2,202

    Default

    Change the table collations to same as that of existing tables. You can do this in phpMyAdmin.

  3. #3
    Join Date
    Jun 2007
    Location
    New York, NY
    Posts
    92

    Default

    Quote Originally Posted by admin
    Change the table collations to same as that of existing tables. You can do this in phpMyAdmin.
    In "cpanelese" that means open the database, look for ? and change it to ?

    WHY did this happen?
    Find the best video sites at OnlineTV Video Guide. Register your Vshare there today!

  4. #4
    Join Date
    Apr 2007
    Posts
    2,202

    Default

    It seems due to server setup. It work without any problem in cpanel servers.

    collations is set my mysql, most servers it is set to latin by default.

    We create table with following, with out specifying collations, it is added by your server, that create the problem.

    CREATE TABLE `process_queue` (
    `id` int(11) NOT NULL auto_increment,
    `user` varchar(255) NOT NULL,
    `title` varchar(255) NOT NULL,
    `description` varchar(255) NOT NULL,
    `keywords` varchar(255) NOT NULL,
    `channels` varchar(255) NOT NULL,
    `type` varchar(255) NOT NULL,
    `status` int(2) NOT NULL,
    `url` varchar(255) NOT NULL,
    `file` varchar(255) NOT NULL,
    `vid` int(11) NOT NULL,
    `user_ip` varchar(255) NOT NULL,
    PRIMARY KEY (`id`)
    );
    If you can't get it working, PM me phpMyAdmin login details, i can fix it.

Similar Threads

  1. problem with upload after upgrade to 2.6
    By hoque in forum Installation Support
    Replies: 3
    Last Post: 05-10-2008, 04:30 AM
  2. Can't Upload after Upgrade
    By swimstars in forum Installation Support
    Replies: 0
    Last Post: 01-10-2008, 11:06 PM
  3. Upload Button Fails after 2.5 Upgrade
    By geekorama in forum Installation Support
    Replies: 0
    Last Post: 11-05-2007, 08:18 AM
  4. Upgrade to 2.5
    By browniegirl in forum Installation Support
    Replies: 1
    Last Post: 10-01-2007, 09:08 PM
  5. Upload problem on upgrade
    By devarioj in forum Fixed Bugs
    Replies: 1
    Last Post: 08-30-2007, 07:46 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •