Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Lou 59 posts 169 karma points
    Feb 27, 2013 @ 06:18
    Lou
    0

    Contour V3.06 install did not create webconnectcmsv3 table

    I just downloaded V3.06 for 4.7.1 and it installed but did not create the 

    webconnectcmsv3

    table it also did not update the Web.Config 

    Is there a hot fix for this?

  • Comment author was deleted

    Feb 27, 2013 @ 10:27

    You can manually execute the create script 

    check http://our.umbraco.org/projects/umbraco-pro/contour/documentation/Installation/Manual (part installing db)

  • Lou 59 posts 169 karma points
    Feb 28, 2013 @ 06:30
    Lou
    0

    The create script doesn't work properly for some reason the create cannot create the following table `UFFieldConditionRules`

  • Comment author was deleted

    Feb 28, 2013 @ 10:28

    Hey Lou, what db engine are you installing to? Sql server, MySQL ?

  • Comment author was deleted

    Feb 28, 2013 @ 10:58

    Assuming it's mysql could you try with

     

    CREATE TABLE `UFFieldConditionRules`(
    `Id` VARCHAR(64) NOT NULL,
    `FieldCondition` VARCHAR(64) NOT NULL,
    `Field` VARCHAR(64) NOT NULL,
    `Operator` TINYINT NOT NULL,
    `Value` VARCHAR(250) NULL,
    PRIMARY KEY (`Id`),
    CONSTRAINT `FK_UFFieldConditionRules_UFFieldConditions` FOREIGN KEY `FK_UFFieldConditionRules_UFFieldConditions` (`FieldCondition`)
    REFERENCES `UFFieldConditions` (`Id`)
    ON DELETE CASCADE
    ON UPDATE NO ACTION
    );
  • Lou 59 posts 169 karma points
    Feb 28, 2013 @ 11:02
    Lou
    100

    Thanks Tim, that created the Table and it was MySQL

  • Comment author was deleted

    Feb 28, 2013 @ 11:02

    Ok thanks for confirming, will update the script

  • Lou 59 posts 169 karma points
    Feb 28, 2013 @ 11:53
    Lou
    0

    I'm using Umbraco 4.7.1 and MySQL, I was able to create a form, when I went to put it in a richtext field I get two options, a razor option and a user control option. One is going to fail and the other will work, I am not using views so why am I getting the razor option, which will fail.

    I take it this means I cannot easily customise my form because I am not using Views?

    All I wanted to do was layout the form in two rows.

    Prior to Upgrading to Contour 3, I tried the RestContourPreview_0.8.0 after watching the video, I got the impression from the video that this would allow me to customise my form into two rows, but it didn't.

    Now I tried to use Contour 3 to customise my forms and it doesn't do it either, because I am not using views.

    Is their something missing from my install that corrects this misapprehension that I can use Razor markup without views.

    I use razor macros all the time to input code why can't it work that way without views?

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies