Advertisement:

Author Topic: Update 3.0 item link error  (Read 2762 times)

Alexchees

  • Jr. Member
  • **
  • Posts: 77
Update 3.0 item link error
« on: July 16, 2012, 10:16:58 pm »
Hi
Updated after (3.0) does not come into clicking on ads there. Add the following warning message "This site is not properly diverted. Firefox has detected that the server redirects the request in a way that will never be fulfilled."
What is wrong?
Please help me
Thank you.

www.hbinfo.hu

_CONEJO

  • Administrator
  • Hero Member
  • *****
  • Posts: 4689
Re: Update 3.0 item link error
« Reply #1 on: July 17, 2012, 12:23:27 pm »
Hi alexchees,

Could you disable an re-enable permalinks?

Thanks

Alexchees

  • Jr. Member
  • **
  • Posts: 77
Re: Update 3.0 item link error
« Reply #2 on: July 17, 2012, 09:27:05 pm »
Hi
Permalinks and then turned on the "500 server error" error message received, I could not go into the admin panel only after you have cleared the htaccess file.
Then I disabled the permaliks but have the same problem, your ad will not be clicking on your side.

: (

Alexchees

  • Jr. Member
  • **
  • Posts: 77
Re: Update 3.0 item link error
« Reply #3 on: July 18, 2012, 08:49:59 pm »
Hi
Not anyone's idea??
 :(
 :-\

Alexchees

  • Jr. Member
  • **
  • Posts: 77
Re: Update 3.0 item link error
« Reply #4 on: July 21, 2012, 03:17:00 pm »
Hi!
So the source of the problem!
I put back the previous version of the file item.php and kind. So the file is item.php is something that is causing the error.

tempolong

  • Newbie
  • *
  • Posts: 32
Re: Update 3.0 item link error
« Reply #5 on: July 25, 2012, 09:20:11 am »
Same problem here, really pain in the ass, been trying in hours and hours, give up, roll back the 3.0 updates.
Shame, shame, shame.

garciademarina

  • Administrator
  • Hero Member
  • *****
  • Posts: 974
Re: Update 3.0 item link error
« Reply #6 on: July 26, 2012, 03:06:39 pm »
Hi,

@Alexchees, Did you solve the problem ?

@tempolong, Do you have the site online ? can you PM the url ? Did you try disable and enable again permalinks ?

Regards

Guillaume

  • Newbie
  • *
  • Posts: 1
Re: Update 3.0 item link error
« Reply #7 on: July 26, 2012, 08:24:24 pm »
Hello, I install DBD 5.5 on my computer and started out meaning problem. I did not get created during base given
I do not know how it is done. I installed the file Osclass unpacked in the root of the server from my computer. In the localhost, I arrived at the "Database information" when I try to fill it, who am the message is "Can not connect to the database. Check if the User has privileges." input and wwwroot folders are properly shared with law pourtent Access by all users. The username Msql, I let the song empty can that there is no established base; Msql the past I have postponed that required when installing DBD, I checked the box "Advenced" then check the "create & BD" I entered a name and a code BD BD, page me but always error message: can not connect to the database. Check if the User has privileges.
Could you help me?  :-[

tempolong

  • Newbie
  • *
  • Posts: 32
Re: Update 3.0 item link error
« Reply #8 on: July 27, 2012, 05:36:11 am »
After I do compare between my 2.4 with automatic upgrade to 3.0 <=> default 3.0 database, here is the sql comparison query:

After I run this query to my 2.4 with automatic upgrade 3.0, and the site run well.


USE `xxxxxx`;

/* Foreign Keys must be dropped in the target to ensure that requires changes can be done*/

ALTER TABLE `oc_t_category_description` DROP FOREIGN KEY `oc_t_category_description_ibfk_1` ;

ALTER TABLE `oc_t_category_description` DROP FOREIGN KEY `oc_t_category_description_ibfk_2` ;

ALTER TABLE `oc_t_item_location` DROP FOREIGN KEY `oc_t_item_location_ibfk_6` ;

ALTER TABLE `oc_t_user` DROP FOREIGN KEY `oc_t_user_ibfk_2` ;

ALTER TABLE `oc_t_user` DROP FOREIGN KEY `oc_t_user_ibfk_3` ;

ALTER TABLE `oc_t_user` DROP FOREIGN KEY `oc_t_user_ibfk_4` ;

ALTER TABLE `oc_t_user` DROP FOREIGN KEY `oc_t_user_ibfk_5` ;


/* Alter table in target */
ALTER TABLE `oc_t_category_description`
   CHANGE `s_name` `s_name` VARCHAR(100)  COLLATE utf8_general_ci NULL AFTER `fk_c_locale_code`;

/* Alter table in target */
ALTER TABLE `oc_t_user`
   CHANGE `b_company` `b_company` TINYINT(1)   NOT NULL DEFAULT '0' AFTER `d_coord_long`,
   CHANGE `i_items` `i_items` INT(10) UNSIGNED   NULL DEFAULT '0' AFTER `b_company`,
   CHANGE `i_comments` `i_comments` INT(10) UNSIGNED   NULL DEFAULT '0' AFTER `i_items`,
   CHANGE `dt_access_date` `dt_access_date` DATETIME   NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `i_comments`,
   CHANGE `s_access_ip` `s_access_ip` VARCHAR(15)  COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `dt_access_date`,
   DROP COLUMN `i_permissions`;

/* Alter ForeignKey(s)in target */

ALTER TABLE `oc_t_item_location`
ADD CONSTRAINT `oc_t_item_location_ibfk_2`
FOREIGN KEY (`fk_c_country_code`) REFERENCES `oc_t_country` (`pk_c_code`);


/* Alter ForeignKey(s)in target */

ALTER TABLE `oc_t_user`
ADD CONSTRAINT `oc_t_user_ibfk_1`
FOREIGN KEY (`fk_c_country_code`) REFERENCES `oc_t_country` (`pk_c_code`);
 

/* The foreign keys that were dropped are now re-created*/

ALTER TABLE `oc_t_category_description`
ADD CONSTRAINT `oc_t_category_description_ibfk_1`
FOREIGN KEY (`fk_i_category_id`) REFERENCES `oc_t_category` (`pk_i_id`);

ALTER TABLE `oc_t_category_description`
ADD CONSTRAINT `oc_t_category_description_ibfk_2`
FOREIGN KEY (`fk_c_locale_code`) REFERENCES `oc_t_locale` (`pk_c_code`);

ALTER TABLE `oc_t_user`
ADD CONSTRAINT `oc_t_user_ibfk_2`
FOREIGN KEY (`fk_i_region_id`) REFERENCES `oc_t_region` (`pk_i_id`);

ALTER TABLE `oc_t_user`
ADD CONSTRAINT `oc_t_user_ibfk_3`
FOREIGN KEY (`fk_i_city_id`) REFERENCES `oc_t_city` (`pk_i_id`);

ALTER TABLE `oc_t_user`
ADD CONSTRAINT `oc_t_user_ibfk_4`
FOREIGN KEY (`fk_i_city_area_id`) REFERENCES `oc_t_city_area` (`pk_i_id`);