B-2-O-Web Problems

Results 1 to 2 of 2
  1. #1

    B-2-O-Web Problems

    Okay.. here is the list of the problems..

    First of all the indexcontent problem.

    a)When I am adding content from admin panel it not entering the data of "ICID" colunm and it won't list the content's in order.
    b)When I want see the content that I added before I got this error:



    Second problem is: I can't list the items.. IDK why but when I am going to item gallery and selecting any category or clicking on View all items button there is nothing.
    I am checking on db and there is some items but they are not appearing in the web.


    Thanks to any help.

    Sorry for my eng.


  2. #2
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: B-2-O-Web Problems

    I will post a good version of the table here in a sec.

    ---------- Post added at 08:30 PM ---------- Previous post was at 08:23 PM ----------

    use this for the IndexContent :
    PHP Code:
    USE [GunzDB]
    GO
    /****** Object:  Table [dbo].[IndexContent]    Script Date: 10/17/2008 16:05:44 ******/
    IF  EXISTS (SELECT FROM sys.objects WHERE object_id OBJECT_ID(N'[dbo].[IndexContent]') AND type in (N'U'))
    DROP TABLE [dbo].[IndexContent]
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE 
    [dbo].[IndexContent](
        [
    ICID] [intIDENTITY(1,1NOT NULL,
        [
    Type] [tinyintNULL,
        [
    Title] [varchar](50NULL,
        [
    User] [varchar](50NULL,
        [
    Date] [datetimeNULL,
        [
    Text] [varchar](maxNULL,
    PRIMARY KEY CLUSTERED 
    (
        [
    ICIDASC
    )WITH (PAD_INDEX  OFFSTATISTICS_NORECOMPUTE  OFFIGNORE_DUP_KEY OFFALLOW_ROW_LOCKS  ONALLOW_PAGE_LOCKS  ONON [PRIMARY]
    ON [PRIMARY]

    GO
    SET ANSI_PADDING OFF 



Advertisement