Unfinished DG Website

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 39
  1. #16
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Unfinished DG Website

    Quote Originally Posted by Zeaos View Post
    Hello ,next time do not remove my truth comments.
    Yep the website is a shit.
    Stefan didn't, I did.
    If those are your comments, please don't post them since it's pretty insulting to the creators. Feel it's shit? Release a better one. That keeps up the activity and enthusiasm.
    Last edited by Phoenix; 19-10-10 at 07:55 PM.

  2. #17
    Banned random idiot is offline
    BannedRank
    Jul 2010 Join Date
    Under the MoonLocation
    901Posts

    Re: Unfinished DG Website

    Quote Originally Posted by phoenix_147 View Post
    Stefan didn't, I did.
    If those are your comments, please don't post them since it's pretty insulting to the creators. Feel it's shit? Release a better one. That keeps up the activity and enthusiasm.
    No I'm free to say whatever I want.
    Free world no?

  3. #18
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Unfinished DG Website

    Quote Originally Posted by Zeaos View Post
    No I'm free to say whatever I want.
    Free world no?
    Criticism is okay (up to an extent). It always helps people improve. But comments like "This website is shit" won't really last out here. Sorry.

  4. #19
    Member Stroumpf is offline
    MemberRank
    Aug 2010 Join Date
    61Posts

    Re: Unfinished DG Website

    Quote Originally Posted by thajj View Post
    Is this coded? If so what features does it have and i geus its coded in php and sql ofcourse please answer ;)
    Posted via Mobile Device

    edit: btw it looks cool... id give it a 8/10 since i do like the design
    edit: ok tested works cool man thanks!
    Yes its coded, news work, admincp for news work login work and some other feature.

  5. #20
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Unfinished DG Website

    Quote Originally Posted by Stroumpf View Post
    Yes its coded, news work, admincp for news work login work and some other feature.
    Have you included the database tables?

  6. #21
    @ your moms bed thajj is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    647Posts

    Re: Unfinished DG Website

    no he dint:p there arent any as far as i looked... i tested it it hasnt got a register page, when logged in it hasnt any user cp onyl you can see how many coins you got more not..

    admin cp i dint looked at yet..

  7. #22
    hey Irahnik is offline
    MemberRank
    Mar 2010 Join Date
    127.0.0.1Location
    1,680Posts

    Re: Unfinished DG Website

    Oh, so you coded Tufan's thing? Nice job.

    I think you did at least.

    Either way, it's IIGHT, 7/10.

  8. #23
    Apprentice SmoothFlow is offline
    MemberRank
    Oct 2010 Join Date
    Jamaica, NYLocation
    12Posts

    Re: Unfinished DG Website

    Nick, You actually post on RaGEZONE,

  9. #24
    I am THE DON Joe9099 is offline
    MemberRank
    Jan 2007 Join Date
    England, UkLocation
    3,655Posts

    Re: Unfinished DG Website

    Quote Originally Posted by phoenix_147 View Post
    Have you included the database tables?
    He said news, in which that would be indexcontent table.
    Im sure most people have that table?

  10. #25
    @ your moms bed thajj is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    647Posts

    Re: Unfinished DG Website

    yeah, just use phoenix modded database... then it will work fine, some others would too but i'd prefer phoenix one since its compatible with most MPOG's and 2007 and 2008 servers...

  11. #26
    Member Stroumpf is offline
    MemberRank
    Aug 2010 Join Date
    61Posts

    Re: Unfinished DG Website

    Code:
    USE [DarKGunZ]
    GO
    
    /****** Object:  Table [dbo].[SiteNotices]    Script Date: 10/19/2010 17:32:53 ******/
    SET ANSI_NULLS ON
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    
    SET ANSI_PADDING ON
    GO
    
    CREATE TABLE [dbo].[SiteNotices](
        [ID] [int] IDENTITY(1,1) NOT NULL,
        [Subject] [varchar](1000) NOT NULL,
        [Author] [varchar](150) NOT NULL,
        [Date] [varchar](max) NOT NULL,
        [Time] [varchar](max) NOT NULL,
        [Hit] [int] NOT NULL,
        [Message] [varchar](max) NOT NULL,
        [Visible] [int] NOT NULL
    ) ON [PRIMARY]
    
    GO
    
    SET ANSI_PADDING OFF
    GO

  12. #27

    Re: Unfinished DG Website

    Quote Originally Posted by Stroumpf View Post
    Code:
    USE [DarKGunZ]
    GO
    
    /****** Object:  Table [dbo].[SiteNotices]    Script Date: 10/19/2010 17:32:53 ******/
    SET ANSI_NULLS ON
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    
    SET ANSI_PADDING ON
    GO
    
    CREATE TABLE [dbo].[SiteNotices](
        [ID] [int] IDENTITY(1,1) NOT NULL,
        [Subject] [varchar](1000) NOT NULL,
        [Author] [varchar](150) NOT NULL,
        [Date] [varchar](max) NOT NULL,
        [Time] [varchar](max) NOT NULL,
        [Hit] [int] NOT NULL,
        [Message] [varchar](max) NOT NULL,
        [Visible] [int] NOT NULL
    ) ON [PRIMARY]
    
    GO
    
    SET ANSI_PADDING OFF
    GO
    Thank you.

  13. #28
    hey Irahnik is offline
    MemberRank
    Mar 2010 Join Date
    127.0.0.1Location
    1,680Posts

    Re: Unfinished DG Website

    Quote Originally Posted by Stroumpf View Post
    Code:
    USE [DarKGunZ]
    GO
    
    /****** Object:  Table [dbo].[SiteNotices]    Script Date: 10/19/2010 17:32:53 ******/
    SET ANSI_NULLS ON
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    
    SET ANSI_PADDING ON
    GO
    
    CREATE TABLE [dbo].[SiteNotices](
        [ID] [int] IDENTITY(1,1) NOT NULL,
        [Subject] [varchar](1000) NOT NULL,
        [Author] [varchar](150) NOT NULL,
        [Date] [varchar](max) NOT NULL,
        [Time] [varchar](max) NOT NULL,
        [Hit] [int] NOT NULL,
        [Message] [varchar](max) NOT NULL,
        [Visible] [int] NOT NULL
    ) ON [PRIMARY]
    
    GO
    
    SET ANSI_PADDING OFF
    GO

    Well, I sure needed that . o-o

  14. #29
    Banned Blasian is offline
    BannedRank
    Aug 2009 Join Date
    California, USLocation
    773Posts

    Re: Unfinished DG Website

    Kool I have the php files, I got from a friend just needed images folder :3 Nice Upload


    This is what I have
    http://gunz.fantasyent.org/dg2/
    -Not meaning to advirtise just a demo-
    I need more of the mssql tables

    Mine is a bit more I guess Didnt really work on it O_o
    Last edited by Blasian; 20-10-10 at 02:09 AM.

  15. #30
    Veni, Vidi, Vici Arcelor is offline
    MemberRank
    Jan 2010 Join Date
    Delhi, IndiaLocation
    1,763Posts

    Re: Unfinished DG Website

    Already had this D:.



Page 2 of 3 FirstFirst 123 LastLast

Advertisement