Search

You searched for the word(s): userid:16337

Matching Posts

  • Re: Strange error

    I don't believe that's the current version of the sproc. IIRC you had a number of issues getting your database set up. The correct proc from 095 goes something like this (and has no ServerTimeZone param): CREATE PROC DNW_HomePageData @Host nvarchar(100), @GroupID int AS EXEC DNW_Stats @Host, @GroupID EXEC DNW_GetRecentPosts @Host, @GroupID EXEC DNW_Total_Stats @Host, @GroupID To be 100% certain what the fix is, you can also verify that this is the method signature actually being called (use SQL Profiler
    Posted to .Text (Blogs) (Forum) by grant on 8/21/2004
  • Re: How to add fontfaces to Editor?

    http://www.freetextbox.com/forums/ You can also check the 095 codebase to make sure it's not programmatically setting font faces anywhere.
    Posted to .Text (Blogs) (Forum) by grant on 8/21/2004
  • Re: there is a login control in skin

    http://home.impx.net/blog/login.aspx Is the login page. It's in the Admin project. The login.ascx control used to be part of the older skins, it provided inline login directly on blog pages.
    Posted to .Text (Blogs) (Forum) by grant on 8/21/2004
  • Re: what does the ~ mean?

    ~/ is a substitution for the application root (virtual/site)
    Posted to .Text (Blogs) (Forum) by grant on 8/21/2004
  • Re: How to add fontfaces to Editor?

    There's documentation on doing so at the freetextbox.com site/forums.
    Posted to .Text (Blogs) (Forum) by grant on 8/21/2004
  • Re: Trouble creating skin

    Most likely, you'll need to implement your own controls to handle each separately. I did it on my site just using a few ascx files, quick and dirty. But you can't do it with out getting somewhere near the code. This is against a pre-093 version of .Text but the concepts remain the same. I have a control that handles the various lists, I set it's TargetType to whatever I want to spit out and then use a few different instances around my skin layout. IIRC, this is actually in my PageTemplate, and I
    Posted to .Text (Blogs) (Forum) by grant on 8/20/2004
  • Re: hijack

    Semi-interesting. Two separate issues. 1. Yes, it looks like the 095 codebase would allow a non-admin to remove a comment if a malicious link can be inserted into the database (which is issue 2). So, if you insert the following Text into a comment, you insert a link that deletes the fixed index (of the control) comment. This is a hijacked link test . By dint of ctl0, first comment in the list gets deleted. There is no client side script for removal, this is just posting back to the right event handler
    Posted to .Text (Blogs) (Forum) by grant on 8/20/2004
  • Re: Error: String was not recognized as a valid DateTime

    In your web.config, search for a line containing ArchiveMonth in the HttpHandlers section. What is that line? Should be <HttpHandler pattern = "/archive/\d{4}/\d{1,2}\.aspx$" controls = "ArchiveMonth.ascx" /> Typically this is related to a globalization issue. I would also just double check that (but it also looks less likely that that's the issue since your daily archive pages pass dateformat muster). Can you turn off custom exceptions and post the full exception with code
    Posted to .Text (Blogs) (Forum) by grant on 8/20/2004
  • Re: catching blog does not exist exception

    If you track down usages of BlogDoesNotExistException, you'll see it's only used in two places, in some ErrorPage in the web project and in Dottext.Framework.Configuration.GetConfig. It's the latter one that's being thrown in the case at hand. If you really want to do this, you can add an HttpContext.Current redirect in lieu of throwing BlogDoesNotExistException in GetConfig. That will accomplish what you're trying to do. Not sure why actually doing this makes sense for you, but who knows, maybe
    Posted to .Text (Blogs) (Forum) by grant on 8/20/2004
  • Re: I have a problem at first run .TEXT after installation Help Me...

    Config file you started from was, type of blog or url you would like to access your blogs at: Url you accessed when getting this message was: Database entry's (blog_config) host and config values are:
    Posted to .Text (Blogs) (Forum) by grant on 8/15/2004
Page 1 of 19 (185 items) 1 2 3 4 5 Next > ... Last »