mp3-cms-svn Mailing List for mp3 CMS Server
Brought to you by:
nealbailey
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(39) |
Nov
(20) |
Dec
(7) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(13) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Neal B. <nea...@gm...> - 2014-01-21 20:59:08
|
Hi Kobe, MP3CMS is a one man show over the last several years and I’m not familiar with localization outside English territories. Is there no way to have you web browser translate the pages? --Neal [Mp3-cms-svn] Mp3cms Language Support <https://sourceforge.net/p/mp3-cms/mailman/message/31796400/> Exclude <https://sourceforge.net/p/mp3-cms/mailman/mp3-cms-svn/?viewmonth=201312> From: 杨光 <yg54123@12...> - 2013-12-31 02:02:19 Attachments: Message as HTML <https://sourceforge.net/p/mp3-cms/mailman/attachment/6963bf66.3641.1434662f 152.Coremail.yg54123%40126.com/1/> Hi, everybody I am new to the mp3cms. Could anyone tell me is there international language support for this system, like Chinese? If yes, how can do that? Regards, Kobe. |
|
From: 杨光 <yg...@12...> - 2013-12-31 02:02:19
|
Hi, everybody I am new to the mp3cms. Could anyone tell me is there international language support for this system, like Chinese? If yes, how can do that? Regards, Kobe. |
|
From: Neal B. <nea...@ho...> - 2011-05-22 18:49:00
|
I hope you will interest in my new site!... http://top12.freehostia.com/friends_links.php?amSID=36cy3 |
|
From: Neal B. <nea...@ho...> - 2009-06-26 07:01:44
|
Hi everyone! I've been holding onto this one for a while now and I'm finally ready to release it. I was going to wait a few more weeks but I discovered a critical bug in that last revisions v1.5.x that I couldn't sit on and I'm really excited about all the enhancements in this version. NOTE: This build has been optimized for large wide screen displays. I wouldn't view it on anything less than 1280px wide. Screenshots: http://www.nealosis.com/mp3collector/Forms/Screenshots.aspx (click thumbs for hi-res images) Install Instructions: http://www.nealosis.com/wiki/MainPage.ashx Download: http://www.nealosis.com/mp3collector/downloads/mp3Cms-v2.0.0.zip Web * Added new CSS stylesheet and layout * Added SQLite MembershipProvider with Admin tools to create accounts and assign roles * Added Admin, Manager, and User roles to define user access rights * Added requirement for all new user accounts to be activated by an administrator * Added the ability to specify the banner text displayed in the page header * Added new playlists (most played tracks from all users & highest rated tracks from all users) * Added new data streams such as users favorite tracks * Added new Ajax partial page postback for various slow loading controls & internet feed streams * Optimized for large widescreen displays * Fixed bug in upload album cover art control * Fixed bug where hitting the back button didn't remember the previous view * Fixed bug where if a user rated or played a track, the track no longer appeared for other users Mp3 Scanner Engine * Fixed bug where checking certain files caused ISession disposed NHibernate errors * Changed log size maximum from 50MB to 5MB * Added thumbnail generator so cached album art files are resized to 200x200 * Removed the dependency of requiring a fully qualified path to the SQLite database file to be input in the AppSettings ...And much more, this is all I can remember at the moment. Feedback appreciated --Neal ____________________________________________________________________________________________________ Neal Bailey, MCSA, MCSE, MCSD .NET Software Engineer(804) 693-1671 Office(804) 815-6464 Cel...@ho... MP3-CMS Project MP3-CMS Project Demo MP3-CMS Project Wiki MP3-CMS Project Forums Kitchen-Kiosk Project My Blog My Code Project Articles My Flickr Photostream Quote of the Day |
|
From: Neal B. <nea...@ho...> - 2008-11-26 20:11:04
|
Mark M,
I'm adding this string to the developer mailing this (mp3...@li...<mp3...@li...) so all the code contributors can be in on the decision making (hope you don't mind).
Yea, I was having a conversation with a new user a few weeks ago about this situation where an error is thrown if there are mp3s in the root share that have unreadable or invalid ID3 information embedded in them. I think the null/empty checker is fine and you're right regarding the security best practices so if you want to invest the effort to correct it; please do.
Do keep in mind that this solution was never intended to run over WANs or the Internet; but rather internally on an Intranet so we spent very little time analyzing the security posture of the code.
Heads up; I'm looking into various caching strategies we could use to optimize load times for the most visited pages. I haven't made any decision either way but I'm considering using Output Caching at least on the custom controls (TrackList and mp3Player). I'm thinking of implementing a file Cache Dependency of some sort so when the scanner changes tracks, that triggers an event to refresh the cached tracklists. What's your take on this Symon?
--Neal
From: Mark Means
Sent: Wednesday, November 26, 2008 2:23 PM
To: 'Neal Bailey'
Subject: Status
Neal,
I found myself spending most of my time last weekend fixing ID3 tags in my music library. Anyway I did find and fix a bug. If a mp3 with no id3 tag exists in the root of the music share, it throws an null reference exception. The problem is caused in baileysoft.mp3.core: Tracks.cs: GetAlbum(). The call to “albumName = Path.GetDirectoryName(Mp3File.Folder);” sets albumName to null if the passed folder is a root. The simple fix is to add “if (string.IsNullOrEmpty(albumName)) albumName = "";” afterwords. But that bring up an issue in my mind. It is a security flaw to reveal anything about the underlying systems drives, computer names or share names. And since the albumName does not seem to be used anywhere other than for display purposes, a better solution would probably be to change the entire block to the following so that no information about the root directory trees is revealed, and also to keep the display name shorter.
if (string.IsNullOrEmpty(albumName))
{
albumName = Path.GetDirectoryName(Mp3File.Folder);
albumName = albumName.Remove(0, _rootPath.Length+1);
if (string.IsNullOrEmpty(albumName))
albumName = "";
}
However, that require that both Mp3File and Track constructors be modified so that QueueItemProcessor can send in the _config.ScanPath. I am experimenting with this now. What’s your take on this?
I have also been working on the login page and added a password recovery view. This is not finished yet. For some reason it is failing when verifying the question/answer. But I’ve only worked on it for about 15 minutes.
Mark
|
|
From: Manoj <mp...@gm...> - 2008-07-24 19:56:40
|
Hello, No Worries. Everything is working fine now. The problem was all with following the instruction again :). It was all because of trying to swap between work and mp3cms :). Thanks. On Tue, Jul 22, 2008 at 9:40 AM, Neal Bailey <nea...@ho...> wrote: > Manoj, > > As the error states, your connectionString is not in the correct format. > > Here is the connection string you provide: > <property > name="connection.connection_string">D:\Mp3CMS\App_Data\music.db3;Version=3;Page > Size=4096;Synchronous=Off</property > > > However a properly formatted connectionString looks like this: > <property name="connection.connection_string">Data > Source=C:\Users\Neal.Bailey\Documents\Visual Studio > 2005\Projects\mp3cms-svn\trunk\site\App_Data\music.db3;Version=3;Page > Size=4096;Synchronous=Off</property> > > You'll notice the missing directive "Data Source=". > > Looking over everything else it all looks ok. Once you change the > connectionString to the correct format you should be good to go. I want to > mention that you're using a physical path to scan in the AppSettings > (D:\NepaliMusic 3 MN) and you may experience problems with this when you > deploy to a server when it comes to security. I'd recommend that when you > deploy to a server that you use a SMB path like \\ServerName\Music by > creating a file server share called Music. > > Hope This Helps, > --Neal > > > > -------------------------------------------------- > From: "Manoj" <mp...@gm...> > Sent: Monday, July 21, 2008 10:58 PM > To: "Neal Bailey" <nea...@ho...> > Cc: "Jeremy Mann" <je...@gm...>; <mp3...@li...> > Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format > forparameter"D:\ASP.NET SITE\App_Data\music.db3" > >> Hello, >> I followed the steps, I had basically done all those changes, but used >> the same files : ). I again got the same error. Below is the error in >> case (it was in the scanner_log file :) >> I have attached the web and nhibernate files. >> >> 2008-07-21 22:43:48,531 [4] ERROR NHibernate.Tool.hbm2ddl.SchemaExport >> [(null)] - Invalid ConnectionString format for parameter >> "D:\Mp3CMS\App_Data\music.db3" >> System.ArgumentException: Invalid ConnectionString format for >> parameter "D:\Mp3CMS\App_Data\music.db3" >> at System.Data.SQLite.SQLiteConnection.ParseConnectionString() >> at System.Data.SQLite.SQLiteConnection.Open() >> at NHibernate.Connection.DriverConnectionProvider.GetConnection() >> at NHibernate.Tool.hbm2ddl.SchemaExport.Execute(Boolean script, >> Boolean export, Boolean justDrop, Boolean format) >> >> >> >> >> >> Thanks, >> >> >> >> On Mon, Jul 21, 2008 at 9:17 PM, Manoj <mp...@gm...> wrote: >>> >>> Hello Neal, >>> >>> Looks like I disregarded it somehow, I will update what happens. In >>> the meantime, the first I would want to add the following: >>> >>> 1. Add image for the artists too >>> 2. Just like the album page, I would have an artist page, where >>> description, image, list of their albums, key tracks can be displaced. >>> 3. For providing song info, instead of loading the new page, i woul >>> have some ajax work to display it on the same page neatly. >>> >>> Also, rating feature for artist and album besides tracks only. >>> I think they are worth adding to the system :) >>> >>> >>> Thanks, >>> Manoj >>> >>> >>> >>> On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> >>> wrote: >>>> >>>> Thanks for clarifying that Jeremy. There was a user on the forums a >>>> while >>>> ago that had to do some work to get Visual Studio 2008 to work for him >>>> but I >>>> think that he worked out his problem ended up being a setting in Windows >>>> Server 2008 and not VS2008. >>>> >>>> Manjo, so it looks like the issue has to reside in your configuration. >>>> The >>>> developer bits can be real tricky to get working and I apologize for >>>> that. >>>> Can you validate that you followed the developer instructions outlined >>>> in >>>> this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? >>>> >>>> ** DEVELOPER INSTRUCTIONS ** >>>> >>>> You need the source which can be downloaded from the SVN repository >>>> >>>> 1. Copy the sample_web.config file and paste it into the working >>>> directory >>>> as Web.Config >>>> 2. Create a new folder in ~/config called my_settings >>>> 3. Copy the configuration files in ~/config/default to >>>> ~/config/my_settings >>>> 4. Edit the AppSettings.config file. Set a scan path & turn the scanner >>>> on >>>> or off >>>> 5. Edit the NHibernate.config file. In the SQLite >>>> connection.connection_string property. >>>> NOTE: This property must point to the fully qaulified path to your >>>> App_Data >>>> folder >>>> 6. Edit the web.config file and replace all instances of /config/default >>>> to >>>> /config/my_settings >>>> >>>> If you've done all these steps correctly and are still having problems >>>> can >>>> you send the contents of your web.config file and NHibernate.config >>>> file? >>>> >>>> Also, what are you wanting to add to the solution? Perhaps I can add it >>>> for >>>> you if you're not able to get the solution working for you in your >>>> environment. >>>> >>>> R/ >>>> --Neal >>>> >>>> >>>> From: Jeremy Mann >>>> Sent: Monday, July 21, 2008 8:20 PM >>>> To: Manoj ; mp3...@li... >>>> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >>>> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >>>> Manjo, >>>> >>>> Since you didnt mention it, did you verify your connection string is >>>> valid >>>> and follows the format in the configuration that Neal provided? For >>>> reference I can run the project under VS2008 without a problem, so I'm >>>> guessing the issue is elsewhere. >>>> >>>> If your new to SVN, I'd recommend using the VisualSVN plug in for >>>> VisualStudio. It's basically a Visual Studio plugin/interface with >>>> TortoiseSVN. They do give out licenses for open source project team >>>> members >>>> if you ask nicely. >>>> >>>> - Jeremy >>>> >>>> >>>> On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >>>>> >>>>> Hello Neal, >>>>> >>>>> Helpless I went and installed visual studio 2005 too (which i had >>>>> removed earlier) : ) >>>>> Its still giving me the same error, Any ideas? >>>>> >>>>> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >>>>> wrote: >>>>> > Hi Manoj, >>>>> > >>>>> > I have heard that Visual Studio 2008 has problems that have to be > >>>>> > hacked >>>>> > around but I can't verify personally since I'm still using VS2005 for >>>>> > mp3-cms development. >>>>> > >>>>> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that >>>>> > > the >>>>> > key >>>>> > in your NHibernate configuration file look like this: >>>>> > >>>>> > <property name="connection.connection_string">Data Source=D:\ASP.NET >>>>> > SITE\App_Data \music.db3;Version=3;Page >>>>> > Size=4096;Synchronous=Off</property> >>>>> > >>>>> > R/ >>>>> > Neal >>>>> > >>>>> > -------------------------------------------------- >>>>> > From: "Manoj" <mp...@gm...> >>>>> > Sent: Friday, July 18, 2008 2:50 PM >>>>> > To: <mp3...@li...> >>>>> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >>>>> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >>>>> > >>>>> >> Hi all, >>>>> >> I exported the svn and opened it in VS2008 (was converted). >>>>> >> Compilation, Build all went fine. I got the following runtime error. >>>>> >> >>>>> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i >> >>>>> >> could >>>>> >> contribue what I could. >>>>> >> --Error follows below----- >>>>> >> >>>>> >> >>>>> >> Invalid ConnectionString format for parameter "D:\ASP.NET >>>>> >> SITE\App_Data\music.db3" >>>>> >> >>>>> >> Description: An unhandled exception occurred during the execution of >>>>> >> the current web request. Please review the stack trace for more >>>>> >> information about the error and where it originated in the code. >>>>> >> >>>>> >> Exception Details: System.ArgumentException: Invalid >> >>>>> >> ConnectionString >>>>> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >>>>> >> >>>>> >> Source Error: >>>>> >> >>>>> >> Line 83: ISession session = SessionManager.GetThreadSession(); >>>>> >> Line 84: >>>>> >> Line 85: ITransaction tx = session.BeginTransaction(); >>>>> >> Line 86: >>>>> >> Line 87: try >>>>> >> >>>>> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs >> >>>>> >> Line: >>>>> >> 85 >>>>> >> >>>>> >> Stack Trace: >>>>> >> >>>>> >> [ArgumentException: Invalid ConnectionString format for parameter >>>>> >> "D:\ASP.NET SITE\App_Data\music.db3"] >>>>> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >>>>> >> System.Data.SQLite.SQLiteConnection.Open() +162 >>>>> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >>>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >>>>> >> >>>>> >> [ADOException: cannot open connection] >>>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >>>>> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >>>>> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >>>>> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >>>>> >> isolationLevel) +320 >>>>> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >>>>> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >>>>> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >>>>> >> Repository.InitializeDatabase() in d:\ASP.NET >>>>> >> SITE\site\App_Code\Data\Repository.cs:85 >>>>> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >>>>> >> in d:\ASP.NET >>>>> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >>>>> >> >>>>> >> >>>>> >> >>>>> >> >>>>> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >>>>> >> +92 >>>>> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >>>>> >> Boolean& completedSynchronously) +64 >>>>> >> >>>>> >> >>>>> >> -- >>>>> >> _______________________________________ >>>>> >> Manoj >>>>> >> Do not expect from, or aspire for, for the more you do of either, >> >>>>> >> the >>>>> >> more your heart will ache; when aspirations fail and expectations >>>>> >> break. >>>>> >> >>>>> >> >>>>> >> >>>>> >> ------------------------------------------------------------------------- >>>>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>> >> challenge >>>>> >> Build the coolest Linux based applications with Moblin SDK & win >> >>>>> >> great >>>>> >> prizes >>>>> >> Grand prize is a trip for two to an Open Source event anywhere in >> >>>>> >> the >>>>> >> world >>>>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>> >> _______________________________________________ >>>>> >> Mp3-cms-svn mailing list >>>>> >> Mp3...@li... >>>>> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>>> >> >>>>> > >>>>> >>>>> >>>>> >>>>> -- >>>>> _______________________________________ >>>>> Manoj Pageni >>>>> Intersoft Corporation >>>>> 1101 15th St NW >>>>> Washington DC, 20005 >>>>> _______________________________________ >>>>> Do not expect from, or aspire for, for the more you do of either, the >>>>> more your heart will ache; when aspirations fail and expectations >>>>> break. >>>>> >>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>> challenge >>>>> Build the coolest Linux based applications with Moblin SDK & win great >>>>> prizes >>>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>>> world >>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>> _______________________________________________ >>>>> Mp3-cms-svn mailing list >>>>> Mp3...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>> >>>> ________________________________ >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>> challenge >>>> Build the coolest Linux based applications with Moblin SDK & win great >>>> prizes >>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>> world >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> >>>> ________________________________ >>>> >>>> _______________________________________________ >>>> Mp3-cms-svn mailing list >>>> Mp3...@li... >>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>> >>> >>> >>> >>> -- >>> _______________________________________ >>> Manoj Pageni >>> Intersoft Corporation >>> 1101 15th St NW >>> Washington DC, 20005 >>> _______________________________________ >>> Do not expect from, or aspire for, for the more you do of either, the >>> more your heart will ache; when aspirations fail and expectations >>> break. >>> >> >> >> >> -- >> _______________________________________ >> Manoj Pageni >> Intersoft Corporation >> 1101 15th St NW >> Washington DC, 20005 >> _______________________________________ >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Manoj <mp...@gm...> - 2008-07-24 18:38:45
|
Hello Guys, Thanks for helping me out, however, now I am getting cannot open database error. Am I missing something here? The net user for server instance created by vs 2008 has right access to app_data cause its able to create cover art folders and other files. I want to get it working so I can work on it : ) thanks On Tue, Jul 22, 2008 at 10:44 AM, Manoj <mp...@gm...> wrote: > god, I use the configuration files in 20 projects. How did i miss it????? > Thanks > > On Tue, Jul 22, 2008 at 9:40 AM, Neal Bailey <nea...@ho...> wrote: >> Manoj, >> >> As the error states, your connectionString is not in the correct format. >> >> Here is the connection string you provide: >> <property >> name="connection.connection_string">D:\Mp3CMS\App_Data\music.db3;Version=3;Page >> Size=4096;Synchronous=Off</property > >> >> However a properly formatted connectionString looks like this: >> <property name="connection.connection_string">Data >> Source=C:\Users\Neal.Bailey\Documents\Visual Studio >> 2005\Projects\mp3cms-svn\trunk\site\App_Data\music.db3;Version=3;Page >> Size=4096;Synchronous=Off</property> >> >> You'll notice the missing directive "Data Source=". >> >> Looking over everything else it all looks ok. Once you change the >> connectionString to the correct format you should be good to go. I want to >> mention that you're using a physical path to scan in the AppSettings >> (D:\NepaliMusic 3 MN) and you may experience problems with this when you >> deploy to a server when it comes to security. I'd recommend that when you >> deploy to a server that you use a SMB path like \\ServerName\Music by >> creating a file server share called Music. >> >> Hope This Helps, >> --Neal >> >> >> >> -------------------------------------------------- >> From: "Manoj" <mp...@gm...> >> Sent: Monday, July 21, 2008 10:58 PM >> To: "Neal Bailey" <nea...@ho...> >> Cc: "Jeremy Mann" <je...@gm...>; <mp3...@li...> >> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >> >>> Hello, >>> I followed the steps, I had basically done all those changes, but used >>> the same files : ). I again got the same error. Below is the error in >>> case (it was in the scanner_log file :) >>> I have attached the web and nhibernate files. >>> >>> 2008-07-21 22:43:48,531 [4] ERROR NHibernate.Tool.hbm2ddl.SchemaExport >>> [(null)] - Invalid ConnectionString format for parameter >>> "D:\Mp3CMS\App_Data\music.db3" >>> System.ArgumentException: Invalid ConnectionString format for >>> parameter "D:\Mp3CMS\App_Data\music.db3" >>> at System.Data.SQLite.SQLiteConnection.ParseConnectionString() >>> at System.Data.SQLite.SQLiteConnection.Open() >>> at NHibernate.Connection.DriverConnectionProvider.GetConnection() >>> at NHibernate.Tool.hbm2ddl.SchemaExport.Execute(Boolean script, >>> Boolean export, Boolean justDrop, Boolean format) >>> >>> >>> >>> >>> >>> Thanks, >>> >>> >>> >>> On Mon, Jul 21, 2008 at 9:17 PM, Manoj <mp...@gm...> wrote: >>>> >>>> Hello Neal, >>>> >>>> Looks like I disregarded it somehow, I will update what happens. In >>>> the meantime, the first I would want to add the following: >>>> >>>> 1. Add image for the artists too >>>> 2. Just like the album page, I would have an artist page, where >>>> description, image, list of their albums, key tracks can be displaced. >>>> 3. For providing song info, instead of loading the new page, i woul >>>> have some ajax work to display it on the same page neatly. >>>> >>>> Also, rating feature for artist and album besides tracks only. >>>> I think they are worth adding to the system :) >>>> >>>> >>>> Thanks, >>>> Manoj >>>> >>>> >>>> >>>> On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> >>>> wrote: >>>>> >>>>> Thanks for clarifying that Jeremy. There was a user on the forums a >>>>> while >>>>> ago that had to do some work to get Visual Studio 2008 to work for him >>>>> but I >>>>> think that he worked out his problem ended up being a setting in Windows >>>>> Server 2008 and not VS2008. >>>>> >>>>> Manjo, so it looks like the issue has to reside in your configuration. >>>>> The >>>>> developer bits can be real tricky to get working and I apologize for >>>>> that. >>>>> Can you validate that you followed the developer instructions outlined >>>>> in >>>>> this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? >>>>> >>>>> ** DEVELOPER INSTRUCTIONS ** >>>>> >>>>> You need the source which can be downloaded from the SVN repository >>>>> >>>>> 1. Copy the sample_web.config file and paste it into the working >>>>> directory >>>>> as Web.Config >>>>> 2. Create a new folder in ~/config called my_settings >>>>> 3. Copy the configuration files in ~/config/default to >>>>> ~/config/my_settings >>>>> 4. Edit the AppSettings.config file. Set a scan path & turn the scanner >>>>> on >>>>> or off >>>>> 5. Edit the NHibernate.config file. In the SQLite >>>>> connection.connection_string property. >>>>> NOTE: This property must point to the fully qaulified path to your >>>>> App_Data >>>>> folder >>>>> 6. Edit the web.config file and replace all instances of /config/default >>>>> to >>>>> /config/my_settings >>>>> >>>>> If you've done all these steps correctly and are still having problems >>>>> can >>>>> you send the contents of your web.config file and NHibernate.config >>>>> file? >>>>> >>>>> Also, what are you wanting to add to the solution? Perhaps I can add it >>>>> for >>>>> you if you're not able to get the solution working for you in your >>>>> environment. >>>>> >>>>> R/ >>>>> --Neal >>>>> >>>>> >>>>> From: Jeremy Mann >>>>> Sent: Monday, July 21, 2008 8:20 PM >>>>> To: Manoj ; mp3...@li... >>>>> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >>>>> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >>>>> Manjo, >>>>> >>>>> Since you didnt mention it, did you verify your connection string is >>>>> valid >>>>> and follows the format in the configuration that Neal provided? For >>>>> reference I can run the project under VS2008 without a problem, so I'm >>>>> guessing the issue is elsewhere. >>>>> >>>>> If your new to SVN, I'd recommend using the VisualSVN plug in for >>>>> VisualStudio. It's basically a Visual Studio plugin/interface with >>>>> TortoiseSVN. They do give out licenses for open source project team >>>>> members >>>>> if you ask nicely. >>>>> >>>>> - Jeremy >>>>> >>>>> >>>>> On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >>>>>> >>>>>> Hello Neal, >>>>>> >>>>>> Helpless I went and installed visual studio 2005 too (which i had >>>>>> removed earlier) : ) >>>>>> Its still giving me the same error, Any ideas? >>>>>> >>>>>> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >>>>>> wrote: >>>>>> > Hi Manoj, >>>>>> > >>>>>> > I have heard that Visual Studio 2008 has problems that have to be > >>>>>> > hacked >>>>>> > around but I can't verify personally since I'm still using VS2005 for >>>>>> > mp3-cms development. >>>>>> > >>>>>> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that >>>>>> > > the >>>>>> > key >>>>>> > in your NHibernate configuration file look like this: >>>>>> > >>>>>> > <property name="connection.connection_string">Data Source=D:\ASP.NET >>>>>> > SITE\App_Data \music.db3;Version=3;Page >>>>>> > Size=4096;Synchronous=Off</property> >>>>>> > >>>>>> > R/ >>>>>> > Neal >>>>>> > >>>>>> > -------------------------------------------------- >>>>>> > From: "Manoj" <mp...@gm...> >>>>>> > Sent: Friday, July 18, 2008 2:50 PM >>>>>> > To: <mp3...@li...> >>>>>> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >>>>>> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >>>>>> > >>>>>> >> Hi all, >>>>>> >> I exported the svn and opened it in VS2008 (was converted). >>>>>> >> Compilation, Build all went fine. I got the following runtime error. >>>>>> >> >>>>>> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i >> >>>>>> >> could >>>>>> >> contribue what I could. >>>>>> >> --Error follows below----- >>>>>> >> >>>>>> >> >>>>>> >> Invalid ConnectionString format for parameter "D:\ASP.NET >>>>>> >> SITE\App_Data\music.db3" >>>>>> >> >>>>>> >> Description: An unhandled exception occurred during the execution of >>>>>> >> the current web request. Please review the stack trace for more >>>>>> >> information about the error and where it originated in the code. >>>>>> >> >>>>>> >> Exception Details: System.ArgumentException: Invalid >> >>>>>> >> ConnectionString >>>>>> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >>>>>> >> >>>>>> >> Source Error: >>>>>> >> >>>>>> >> Line 83: ISession session = SessionManager.GetThreadSession(); >>>>>> >> Line 84: >>>>>> >> Line 85: ITransaction tx = session.BeginTransaction(); >>>>>> >> Line 86: >>>>>> >> Line 87: try >>>>>> >> >>>>>> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs >> >>>>>> >> Line: >>>>>> >> 85 >>>>>> >> >>>>>> >> Stack Trace: >>>>>> >> >>>>>> >> [ArgumentException: Invalid ConnectionString format for parameter >>>>>> >> "D:\ASP.NET SITE\App_Data\music.db3"] >>>>>> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >>>>>> >> System.Data.SQLite.SQLiteConnection.Open() +162 >>>>>> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >>>>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >>>>>> >> >>>>>> >> [ADOException: cannot open connection] >>>>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >>>>>> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >>>>>> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >>>>>> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >>>>>> >> isolationLevel) +320 >>>>>> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >>>>>> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >>>>>> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >>>>>> >> Repository.InitializeDatabase() in d:\ASP.NET >>>>>> >> SITE\site\App_Code\Data\Repository.cs:85 >>>>>> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >>>>>> >> in d:\ASP.NET >>>>>> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >>>>>> >> >>>>>> >> >>>>>> >> >>>>>> >> >>>>>> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >>>>>> >> +92 >>>>>> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >>>>>> >> Boolean& completedSynchronously) +64 >>>>>> >> >>>>>> >> >>>>>> >> -- >>>>>> >> _______________________________________ >>>>>> >> Manoj >>>>>> >> Do not expect from, or aspire for, for the more you do of either, >> >>>>>> >> the >>>>>> >> more your heart will ache; when aspirations fail and expectations >>>>>> >> break. >>>>>> >> >>>>>> >> >>>>>> >> >>>>>> >> ------------------------------------------------------------------------- >>>>>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>>> >> challenge >>>>>> >> Build the coolest Linux based applications with Moblin SDK & win >> >>>>>> >> great >>>>>> >> prizes >>>>>> >> Grand prize is a trip for two to an Open Source event anywhere in >> >>>>>> >> the >>>>>> >> world >>>>>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>>> >> _______________________________________________ >>>>>> >> Mp3-cms-svn mailing list >>>>>> >> Mp3...@li... >>>>>> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>>>> >> >>>>>> > >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> _______________________________________ >>>>>> Manoj Pageni >>>>>> Intersoft Corporation >>>>>> 1101 15th St NW >>>>>> Washington DC, 20005 >>>>>> _______________________________________ >>>>>> Do not expect from, or aspire for, for the more you do of either, the >>>>>> more your heart will ache; when aspirations fail and expectations >>>>>> break. >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------- >>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>>> challenge >>>>>> Build the coolest Linux based applications with Moblin SDK & win great >>>>>> prizes >>>>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>>>> world >>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>>> _______________________________________________ >>>>>> Mp3-cms-svn mailing list >>>>>> Mp3...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>>> >>>>> ________________________________ >>>>> >>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>> challenge >>>>> Build the coolest Linux based applications with Moblin SDK & win great >>>>> prizes >>>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>>> world >>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>> >>>>> ________________________________ >>>>> >>>>> _______________________________________________ >>>>> Mp3-cms-svn mailing list >>>>> Mp3...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>>> >>>> >>>> >>>> >>>> -- >>>> _______________________________________ >>>> Manoj Pageni >>>> Intersoft Corporation >>>> 1101 15th St NW >>>> Washington DC, 20005 >>>> _______________________________________ >>>> Do not expect from, or aspire for, for the more you do of either, the >>>> more your heart will ache; when aspirations fail and expectations >>>> break. >>>> >>> >>> >>> >>> -- >>> _______________________________________ >>> Manoj Pageni >>> Intersoft Corporation >>> 1101 15th St NW >>> Washington DC, 20005 >>> _______________________________________ >>> Do not expect from, or aspire for, for the more you do of either, the >>> more your heart will ache; when aspirations fail and expectations >>> break. >>> >> > > > > -- > _______________________________________ > Manoj Pageni > Intersoft Corporation > 1101 15th St NW > Washington DC, 20005 > _______________________________________ > Do not expect from, or aspire for, for the more you do of either, the > more your heart will ache; when aspirations fail and expectations > break. > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Manoj <mp...@gm...> - 2008-07-22 14:44:52
|
god, I use the configuration files in 20 projects. How did i miss it????? Thanks On Tue, Jul 22, 2008 at 9:40 AM, Neal Bailey <nea...@ho...> wrote: > Manoj, > > As the error states, your connectionString is not in the correct format. > > Here is the connection string you provide: > <property > name="connection.connection_string">D:\Mp3CMS\App_Data\music.db3;Version=3;Page > Size=4096;Synchronous=Off</property > > > However a properly formatted connectionString looks like this: > <property name="connection.connection_string">Data > Source=C:\Users\Neal.Bailey\Documents\Visual Studio > 2005\Projects\mp3cms-svn\trunk\site\App_Data\music.db3;Version=3;Page > Size=4096;Synchronous=Off</property> > > You'll notice the missing directive "Data Source=". > > Looking over everything else it all looks ok. Once you change the > connectionString to the correct format you should be good to go. I want to > mention that you're using a physical path to scan in the AppSettings > (D:\NepaliMusic 3 MN) and you may experience problems with this when you > deploy to a server when it comes to security. I'd recommend that when you > deploy to a server that you use a SMB path like \\ServerName\Music by > creating a file server share called Music. > > Hope This Helps, > --Neal > > > > -------------------------------------------------- > From: "Manoj" <mp...@gm...> > Sent: Monday, July 21, 2008 10:58 PM > To: "Neal Bailey" <nea...@ho...> > Cc: "Jeremy Mann" <je...@gm...>; <mp3...@li...> > Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format > forparameter"D:\ASP.NET SITE\App_Data\music.db3" > >> Hello, >> I followed the steps, I had basically done all those changes, but used >> the same files : ). I again got the same error. Below is the error in >> case (it was in the scanner_log file :) >> I have attached the web and nhibernate files. >> >> 2008-07-21 22:43:48,531 [4] ERROR NHibernate.Tool.hbm2ddl.SchemaExport >> [(null)] - Invalid ConnectionString format for parameter >> "D:\Mp3CMS\App_Data\music.db3" >> System.ArgumentException: Invalid ConnectionString format for >> parameter "D:\Mp3CMS\App_Data\music.db3" >> at System.Data.SQLite.SQLiteConnection.ParseConnectionString() >> at System.Data.SQLite.SQLiteConnection.Open() >> at NHibernate.Connection.DriverConnectionProvider.GetConnection() >> at NHibernate.Tool.hbm2ddl.SchemaExport.Execute(Boolean script, >> Boolean export, Boolean justDrop, Boolean format) >> >> >> >> >> >> Thanks, >> >> >> >> On Mon, Jul 21, 2008 at 9:17 PM, Manoj <mp...@gm...> wrote: >>> >>> Hello Neal, >>> >>> Looks like I disregarded it somehow, I will update what happens. In >>> the meantime, the first I would want to add the following: >>> >>> 1. Add image for the artists too >>> 2. Just like the album page, I would have an artist page, where >>> description, image, list of their albums, key tracks can be displaced. >>> 3. For providing song info, instead of loading the new page, i woul >>> have some ajax work to display it on the same page neatly. >>> >>> Also, rating feature for artist and album besides tracks only. >>> I think they are worth adding to the system :) >>> >>> >>> Thanks, >>> Manoj >>> >>> >>> >>> On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> >>> wrote: >>>> >>>> Thanks for clarifying that Jeremy. There was a user on the forums a >>>> while >>>> ago that had to do some work to get Visual Studio 2008 to work for him >>>> but I >>>> think that he worked out his problem ended up being a setting in Windows >>>> Server 2008 and not VS2008. >>>> >>>> Manjo, so it looks like the issue has to reside in your configuration. >>>> The >>>> developer bits can be real tricky to get working and I apologize for >>>> that. >>>> Can you validate that you followed the developer instructions outlined >>>> in >>>> this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? >>>> >>>> ** DEVELOPER INSTRUCTIONS ** >>>> >>>> You need the source which can be downloaded from the SVN repository >>>> >>>> 1. Copy the sample_web.config file and paste it into the working >>>> directory >>>> as Web.Config >>>> 2. Create a new folder in ~/config called my_settings >>>> 3. Copy the configuration files in ~/config/default to >>>> ~/config/my_settings >>>> 4. Edit the AppSettings.config file. Set a scan path & turn the scanner >>>> on >>>> or off >>>> 5. Edit the NHibernate.config file. In the SQLite >>>> connection.connection_string property. >>>> NOTE: This property must point to the fully qaulified path to your >>>> App_Data >>>> folder >>>> 6. Edit the web.config file and replace all instances of /config/default >>>> to >>>> /config/my_settings >>>> >>>> If you've done all these steps correctly and are still having problems >>>> can >>>> you send the contents of your web.config file and NHibernate.config >>>> file? >>>> >>>> Also, what are you wanting to add to the solution? Perhaps I can add it >>>> for >>>> you if you're not able to get the solution working for you in your >>>> environment. >>>> >>>> R/ >>>> --Neal >>>> >>>> >>>> From: Jeremy Mann >>>> Sent: Monday, July 21, 2008 8:20 PM >>>> To: Manoj ; mp3...@li... >>>> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >>>> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >>>> Manjo, >>>> >>>> Since you didnt mention it, did you verify your connection string is >>>> valid >>>> and follows the format in the configuration that Neal provided? For >>>> reference I can run the project under VS2008 without a problem, so I'm >>>> guessing the issue is elsewhere. >>>> >>>> If your new to SVN, I'd recommend using the VisualSVN plug in for >>>> VisualStudio. It's basically a Visual Studio plugin/interface with >>>> TortoiseSVN. They do give out licenses for open source project team >>>> members >>>> if you ask nicely. >>>> >>>> - Jeremy >>>> >>>> >>>> On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >>>>> >>>>> Hello Neal, >>>>> >>>>> Helpless I went and installed visual studio 2005 too (which i had >>>>> removed earlier) : ) >>>>> Its still giving me the same error, Any ideas? >>>>> >>>>> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >>>>> wrote: >>>>> > Hi Manoj, >>>>> > >>>>> > I have heard that Visual Studio 2008 has problems that have to be > >>>>> > hacked >>>>> > around but I can't verify personally since I'm still using VS2005 for >>>>> > mp3-cms development. >>>>> > >>>>> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that >>>>> > > the >>>>> > key >>>>> > in your NHibernate configuration file look like this: >>>>> > >>>>> > <property name="connection.connection_string">Data Source=D:\ASP.NET >>>>> > SITE\App_Data \music.db3;Version=3;Page >>>>> > Size=4096;Synchronous=Off</property> >>>>> > >>>>> > R/ >>>>> > Neal >>>>> > >>>>> > -------------------------------------------------- >>>>> > From: "Manoj" <mp...@gm...> >>>>> > Sent: Friday, July 18, 2008 2:50 PM >>>>> > To: <mp3...@li...> >>>>> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >>>>> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >>>>> > >>>>> >> Hi all, >>>>> >> I exported the svn and opened it in VS2008 (was converted). >>>>> >> Compilation, Build all went fine. I got the following runtime error. >>>>> >> >>>>> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i >> >>>>> >> could >>>>> >> contribue what I could. >>>>> >> --Error follows below----- >>>>> >> >>>>> >> >>>>> >> Invalid ConnectionString format for parameter "D:\ASP.NET >>>>> >> SITE\App_Data\music.db3" >>>>> >> >>>>> >> Description: An unhandled exception occurred during the execution of >>>>> >> the current web request. Please review the stack trace for more >>>>> >> information about the error and where it originated in the code. >>>>> >> >>>>> >> Exception Details: System.ArgumentException: Invalid >> >>>>> >> ConnectionString >>>>> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >>>>> >> >>>>> >> Source Error: >>>>> >> >>>>> >> Line 83: ISession session = SessionManager.GetThreadSession(); >>>>> >> Line 84: >>>>> >> Line 85: ITransaction tx = session.BeginTransaction(); >>>>> >> Line 86: >>>>> >> Line 87: try >>>>> >> >>>>> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs >> >>>>> >> Line: >>>>> >> 85 >>>>> >> >>>>> >> Stack Trace: >>>>> >> >>>>> >> [ArgumentException: Invalid ConnectionString format for parameter >>>>> >> "D:\ASP.NET SITE\App_Data\music.db3"] >>>>> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >>>>> >> System.Data.SQLite.SQLiteConnection.Open() +162 >>>>> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >>>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >>>>> >> >>>>> >> [ADOException: cannot open connection] >>>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >>>>> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >>>>> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >>>>> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >>>>> >> isolationLevel) +320 >>>>> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >>>>> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >>>>> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >>>>> >> Repository.InitializeDatabase() in d:\ASP.NET >>>>> >> SITE\site\App_Code\Data\Repository.cs:85 >>>>> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >>>>> >> in d:\ASP.NET >>>>> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >>>>> >> >>>>> >> >>>>> >> >>>>> >> >>>>> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >>>>> >> +92 >>>>> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >>>>> >> Boolean& completedSynchronously) +64 >>>>> >> >>>>> >> >>>>> >> -- >>>>> >> _______________________________________ >>>>> >> Manoj >>>>> >> Do not expect from, or aspire for, for the more you do of either, >> >>>>> >> the >>>>> >> more your heart will ache; when aspirations fail and expectations >>>>> >> break. >>>>> >> >>>>> >> >>>>> >> >>>>> >> ------------------------------------------------------------------------- >>>>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>> >> challenge >>>>> >> Build the coolest Linux based applications with Moblin SDK & win >> >>>>> >> great >>>>> >> prizes >>>>> >> Grand prize is a trip for two to an Open Source event anywhere in >> >>>>> >> the >>>>> >> world >>>>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>> >> _______________________________________________ >>>>> >> Mp3-cms-svn mailing list >>>>> >> Mp3...@li... >>>>> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>>> >> >>>>> > >>>>> >>>>> >>>>> >>>>> -- >>>>> _______________________________________ >>>>> Manoj Pageni >>>>> Intersoft Corporation >>>>> 1101 15th St NW >>>>> Washington DC, 20005 >>>>> _______________________________________ >>>>> Do not expect from, or aspire for, for the more you do of either, the >>>>> more your heart will ache; when aspirations fail and expectations >>>>> break. >>>>> >>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>>> challenge >>>>> Build the coolest Linux based applications with Moblin SDK & win great >>>>> prizes >>>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>>> world >>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>> _______________________________________________ >>>>> Mp3-cms-svn mailing list >>>>> Mp3...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>> >>>> ________________________________ >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>> challenge >>>> Build the coolest Linux based applications with Moblin SDK & win great >>>> prizes >>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>> world >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> >>>> ________________________________ >>>> >>>> _______________________________________________ >>>> Mp3-cms-svn mailing list >>>> Mp3...@li... >>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>> >>> >>> >>> >>> -- >>> _______________________________________ >>> Manoj Pageni >>> Intersoft Corporation >>> 1101 15th St NW >>> Washington DC, 20005 >>> _______________________________________ >>> Do not expect from, or aspire for, for the more you do of either, the >>> more your heart will ache; when aspirations fail and expectations >>> break. >>> >> >> >> >> -- >> _______________________________________ >> Manoj Pageni >> Intersoft Corporation >> 1101 15th St NW >> Washington DC, 20005 >> _______________________________________ >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Neal B. <nea...@ho...> - 2008-07-22 13:40:47
|
Manoj, As the error states, your connectionString is not in the correct format. Here is the connection string you provide: <property name="connection.connection_string">D:\Mp3CMS\App_Data\music.db3;Version=3;Page Size=4096;Synchronous=Off</property > However a properly formatted connectionString looks like this: <property name="connection.connection_string">Data Source=C:\Users\Neal.Bailey\Documents\Visual Studio 2005\Projects\mp3cms-svn\trunk\site\App_Data\music.db3;Version=3;Page Size=4096;Synchronous=Off</property> You'll notice the missing directive "Data Source=". Looking over everything else it all looks ok. Once you change the connectionString to the correct format you should be good to go. I want to mention that you're using a physical path to scan in the AppSettings (D:\NepaliMusic 3 MN) and you may experience problems with this when you deploy to a server when it comes to security. I'd recommend that when you deploy to a server that you use a SMB path like \\ServerName\Music by creating a file server share called Music. Hope This Helps, --Neal -------------------------------------------------- From: "Manoj" <mp...@gm...> Sent: Monday, July 21, 2008 10:58 PM To: "Neal Bailey" <nea...@ho...> Cc: "Jeremy Mann" <je...@gm...>; <mp3...@li...> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format forparameter"D:\ASP.NET SITE\App_Data\music.db3" > Hello, > I followed the steps, I had basically done all those changes, but used > the same files : ). I again got the same error. Below is the error in > case (it was in the scanner_log file :) > I have attached the web and nhibernate files. > > 2008-07-21 22:43:48,531 [4] ERROR NHibernate.Tool.hbm2ddl.SchemaExport > [(null)] - Invalid ConnectionString format for parameter > "D:\Mp3CMS\App_Data\music.db3" > System.ArgumentException: Invalid ConnectionString format for > parameter "D:\Mp3CMS\App_Data\music.db3" > at System.Data.SQLite.SQLiteConnection.ParseConnectionString() > at System.Data.SQLite.SQLiteConnection.Open() > at NHibernate.Connection.DriverConnectionProvider.GetConnection() > at NHibernate.Tool.hbm2ddl.SchemaExport.Execute(Boolean script, > Boolean export, Boolean justDrop, Boolean format) > > > > > > Thanks, > > > > On Mon, Jul 21, 2008 at 9:17 PM, Manoj <mp...@gm...> wrote: >> Hello Neal, >> >> Looks like I disregarded it somehow, I will update what happens. In >> the meantime, the first I would want to add the following: >> >> 1. Add image for the artists too >> 2. Just like the album page, I would have an artist page, where >> description, image, list of their albums, key tracks can be displaced. >> 3. For providing song info, instead of loading the new page, i woul >> have some ajax work to display it on the same page neatly. >> >> Also, rating feature for artist and album besides tracks only. >> I think they are worth adding to the system :) >> >> >> Thanks, >> Manoj >> >> >> >> On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> >> wrote: >>> Thanks for clarifying that Jeremy. There was a user on the forums a >>> while >>> ago that had to do some work to get Visual Studio 2008 to work for him >>> but I >>> think that he worked out his problem ended up being a setting in Windows >>> Server 2008 and not VS2008. >>> >>> Manjo, so it looks like the issue has to reside in your configuration. >>> The >>> developer bits can be real tricky to get working and I apologize for >>> that. >>> Can you validate that you followed the developer instructions outlined >>> in >>> this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? >>> >>> ** DEVELOPER INSTRUCTIONS ** >>> >>> You need the source which can be downloaded from the SVN repository >>> >>> 1. Copy the sample_web.config file and paste it into the working >>> directory >>> as Web.Config >>> 2. Create a new folder in ~/config called my_settings >>> 3. Copy the configuration files in ~/config/default to >>> ~/config/my_settings >>> 4. Edit the AppSettings.config file. Set a scan path & turn the scanner >>> on >>> or off >>> 5. Edit the NHibernate.config file. In the SQLite >>> connection.connection_string property. >>> NOTE: This property must point to the fully qaulified path to your >>> App_Data >>> folder >>> 6. Edit the web.config file and replace all instances of /config/default >>> to >>> /config/my_settings >>> >>> If you've done all these steps correctly and are still having problems >>> can >>> you send the contents of your web.config file and NHibernate.config >>> file? >>> >>> Also, what are you wanting to add to the solution? Perhaps I can add it >>> for >>> you if you're not able to get the solution working for you in your >>> environment. >>> >>> R/ >>> --Neal >>> >>> >>> From: Jeremy Mann >>> Sent: Monday, July 21, 2008 8:20 PM >>> To: Manoj ; mp3...@li... >>> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >>> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >>> Manjo, >>> >>> Since you didnt mention it, did you verify your connection string is >>> valid >>> and follows the format in the configuration that Neal provided? For >>> reference I can run the project under VS2008 without a problem, so I'm >>> guessing the issue is elsewhere. >>> >>> If your new to SVN, I'd recommend using the VisualSVN plug in for >>> VisualStudio. It's basically a Visual Studio plugin/interface with >>> TortoiseSVN. They do give out licenses for open source project team >>> members >>> if you ask nicely. >>> >>> - Jeremy >>> >>> >>> On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >>>> >>>> Hello Neal, >>>> >>>> Helpless I went and installed visual studio 2005 too (which i had >>>> removed earlier) : ) >>>> Its still giving me the same error, Any ideas? >>>> >>>> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >>>> wrote: >>>> > Hi Manoj, >>>> > >>>> > I have heard that Visual Studio 2008 has problems that have to be >>>> > hacked >>>> > around but I can't verify personally since I'm still using VS2005 for >>>> > mp3-cms development. >>>> > >>>> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that >>>> > the >>>> > key >>>> > in your NHibernate configuration file look like this: >>>> > >>>> > <property name="connection.connection_string">Data Source=D:\ASP.NET >>>> > SITE\App_Data \music.db3;Version=3;Page >>>> > Size=4096;Synchronous=Off</property> >>>> > >>>> > R/ >>>> > Neal >>>> > >>>> > -------------------------------------------------- >>>> > From: "Manoj" <mp...@gm...> >>>> > Sent: Friday, July 18, 2008 2:50 PM >>>> > To: <mp3...@li...> >>>> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >>>> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >>>> > >>>> >> Hi all, >>>> >> I exported the svn and opened it in VS2008 (was converted). >>>> >> Compilation, Build all went fine. I got the following runtime error. >>>> >> >>>> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i >>>> >> could >>>> >> contribue what I could. >>>> >> --Error follows below----- >>>> >> >>>> >> >>>> >> Invalid ConnectionString format for parameter "D:\ASP.NET >>>> >> SITE\App_Data\music.db3" >>>> >> >>>> >> Description: An unhandled exception occurred during the execution of >>>> >> the current web request. Please review the stack trace for more >>>> >> information about the error and where it originated in the code. >>>> >> >>>> >> Exception Details: System.ArgumentException: Invalid >>>> >> ConnectionString >>>> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >>>> >> >>>> >> Source Error: >>>> >> >>>> >> Line 83: ISession session = SessionManager.GetThreadSession(); >>>> >> Line 84: >>>> >> Line 85: ITransaction tx = session.BeginTransaction(); >>>> >> Line 86: >>>> >> Line 87: try >>>> >> >>>> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs >>>> >> Line: >>>> >> 85 >>>> >> >>>> >> Stack Trace: >>>> >> >>>> >> [ArgumentException: Invalid ConnectionString format for parameter >>>> >> "D:\ASP.NET SITE\App_Data\music.db3"] >>>> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >>>> >> System.Data.SQLite.SQLiteConnection.Open() +162 >>>> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >>>> >> >>>> >> [ADOException: cannot open connection] >>>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >>>> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >>>> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >>>> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >>>> >> isolationLevel) +320 >>>> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >>>> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >>>> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >>>> >> Repository.InitializeDatabase() in d:\ASP.NET >>>> >> SITE\site\App_Code\Data\Repository.cs:85 >>>> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >>>> >> in d:\ASP.NET >>>> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >>>> >> >>>> >> >>>> >> >>>> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >>>> >> +92 >>>> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >>>> >> Boolean& completedSynchronously) +64 >>>> >> >>>> >> >>>> >> -- >>>> >> _______________________________________ >>>> >> Manoj >>>> >> Do not expect from, or aspire for, for the more you do of either, >>>> >> the >>>> >> more your heart will ache; when aspirations fail and expectations >>>> >> break. >>>> >> >>>> >> >>>> >> ------------------------------------------------------------------------- >>>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>> >> challenge >>>> >> Build the coolest Linux based applications with Moblin SDK & win >>>> >> great >>>> >> prizes >>>> >> Grand prize is a trip for two to an Open Source event anywhere in >>>> >> the >>>> >> world >>>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> >> _______________________________________________ >>>> >> Mp3-cms-svn mailing list >>>> >> Mp3...@li... >>>> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>>> >> >>>> > >>>> >>>> >>>> >>>> -- >>>> _______________________________________ >>>> Manoj Pageni >>>> Intersoft Corporation >>>> 1101 15th St NW >>>> Washington DC, 20005 >>>> _______________________________________ >>>> Do not expect from, or aspire for, for the more you do of either, the >>>> more your heart will ache; when aspirations fail and expectations >>>> break. >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>>> challenge >>>> Build the coolest Linux based applications with Moblin SDK & win great >>>> prizes >>>> Grand prize is a trip for two to an Open Source event anywhere in the >>>> world >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> _______________________________________________ >>>> Mp3-cms-svn mailing list >>>> Mp3...@li... >>>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>> >>> ________________________________ >>> >>> ------------------------------------------------------------------------- >>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>> challenge >>> Build the coolest Linux based applications with Moblin SDK & win great >>> prizes >>> Grand prize is a trip for two to an Open Source event anywhere in the >>> world >>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>> >>> ________________________________ >>> >>> _______________________________________________ >>> Mp3-cms-svn mailing list >>> Mp3...@li... >>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>> >> >> >> >> -- >> _______________________________________ >> Manoj Pageni >> Intersoft Corporation >> 1101 15th St NW >> Washington DC, 20005 >> _______________________________________ >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> > > > > -- > _______________________________________ > Manoj Pageni > Intersoft Corporation > 1101 15th St NW > Washington DC, 20005 > _______________________________________ > Do not expect from, or aspire for, for the more you do of either, the > more your heart will ache; when aspirations fail and expectations > break. > |
|
From: Manoj <mp...@gm...> - 2008-07-22 02:58:42
|
Hello, I followed the steps, I had basically done all those changes, but used the same files : ). I again got the same error. Below is the error in case (it was in the scanner_log file :) I have attached the web and nhibernate files. 2008-07-21 22:43:48,531 [4] ERROR NHibernate.Tool.hbm2ddl.SchemaExport [(null)] - Invalid ConnectionString format for parameter "D:\Mp3CMS\App_Data\music.db3" System.ArgumentException: Invalid ConnectionString format for parameter "D:\Mp3CMS\App_Data\music.db3" at System.Data.SQLite.SQLiteConnection.ParseConnectionString() at System.Data.SQLite.SQLiteConnection.Open() at NHibernate.Connection.DriverConnectionProvider.GetConnection() at NHibernate.Tool.hbm2ddl.SchemaExport.Execute(Boolean script, Boolean export, Boolean justDrop, Boolean format) Thanks, On Mon, Jul 21, 2008 at 9:17 PM, Manoj <mp...@gm...> wrote: > Hello Neal, > > Looks like I disregarded it somehow, I will update what happens. In > the meantime, the first I would want to add the following: > > 1. Add image for the artists too > 2. Just like the album page, I would have an artist page, where > description, image, list of their albums, key tracks can be displaced. > 3. For providing song info, instead of loading the new page, i woul > have some ajax work to display it on the same page neatly. > > Also, rating feature for artist and album besides tracks only. > I think they are worth adding to the system :) > > > Thanks, > Manoj > > > > On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> wrote: >> Thanks for clarifying that Jeremy. There was a user on the forums a while >> ago that had to do some work to get Visual Studio 2008 to work for him but I >> think that he worked out his problem ended up being a setting in Windows >> Server 2008 and not VS2008. >> >> Manjo, so it looks like the issue has to reside in your configuration. The >> developer bits can be real tricky to get working and I apologize for that. >> Can you validate that you followed the developer instructions outlined in >> this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? >> >> ** DEVELOPER INSTRUCTIONS ** >> >> You need the source which can be downloaded from the SVN repository >> >> 1. Copy the sample_web.config file and paste it into the working directory >> as Web.Config >> 2. Create a new folder in ~/config called my_settings >> 3. Copy the configuration files in ~/config/default to ~/config/my_settings >> 4. Edit the AppSettings.config file. Set a scan path & turn the scanner on >> or off >> 5. Edit the NHibernate.config file. In the SQLite >> connection.connection_string property. >> NOTE: This property must point to the fully qaulified path to your App_Data >> folder >> 6. Edit the web.config file and replace all instances of /config/default to >> /config/my_settings >> >> If you've done all these steps correctly and are still having problems can >> you send the contents of your web.config file and NHibernate.config file? >> >> Also, what are you wanting to add to the solution? Perhaps I can add it for >> you if you're not able to get the solution working for you in your >> environment. >> >> R/ >> --Neal >> >> >> From: Jeremy Mann >> Sent: Monday, July 21, 2008 8:20 PM >> To: Manoj ; mp3...@li... >> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >> Manjo, >> >> Since you didnt mention it, did you verify your connection string is valid >> and follows the format in the configuration that Neal provided? For >> reference I can run the project under VS2008 without a problem, so I'm >> guessing the issue is elsewhere. >> >> If your new to SVN, I'd recommend using the VisualSVN plug in for >> VisualStudio. It's basically a Visual Studio plugin/interface with >> TortoiseSVN. They do give out licenses for open source project team members >> if you ask nicely. >> >> - Jeremy >> >> >> On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >>> >>> Hello Neal, >>> >>> Helpless I went and installed visual studio 2005 too (which i had >>> removed earlier) : ) >>> Its still giving me the same error, Any ideas? >>> >>> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >>> wrote: >>> > Hi Manoj, >>> > >>> > I have heard that Visual Studio 2008 has problems that have to be hacked >>> > around but I can't verify personally since I'm still using VS2005 for >>> > mp3-cms development. >>> > >>> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that the >>> > key >>> > in your NHibernate configuration file look like this: >>> > >>> > <property name="connection.connection_string">Data Source=D:\ASP.NET >>> > SITE\App_Data \music.db3;Version=3;Page >>> > Size=4096;Synchronous=Off</property> >>> > >>> > R/ >>> > Neal >>> > >>> > -------------------------------------------------- >>> > From: "Manoj" <mp...@gm...> >>> > Sent: Friday, July 18, 2008 2:50 PM >>> > To: <mp3...@li...> >>> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >>> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >>> > >>> >> Hi all, >>> >> I exported the svn and opened it in VS2008 (was converted). >>> >> Compilation, Build all went fine. I got the following runtime error. >>> >> >>> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i could >>> >> contribue what I could. >>> >> --Error follows below----- >>> >> >>> >> >>> >> Invalid ConnectionString format for parameter "D:\ASP.NET >>> >> SITE\App_Data\music.db3" >>> >> >>> >> Description: An unhandled exception occurred during the execution of >>> >> the current web request. Please review the stack trace for more >>> >> information about the error and where it originated in the code. >>> >> >>> >> Exception Details: System.ArgumentException: Invalid ConnectionString >>> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >>> >> >>> >> Source Error: >>> >> >>> >> Line 83: ISession session = SessionManager.GetThreadSession(); >>> >> Line 84: >>> >> Line 85: ITransaction tx = session.BeginTransaction(); >>> >> Line 86: >>> >> Line 87: try >>> >> >>> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: >>> >> 85 >>> >> >>> >> Stack Trace: >>> >> >>> >> [ArgumentException: Invalid ConnectionString format for parameter >>> >> "D:\ASP.NET SITE\App_Data\music.db3"] >>> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >>> >> System.Data.SQLite.SQLiteConnection.Open() +162 >>> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >>> >> >>> >> [ADOException: cannot open connection] >>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >>> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >>> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >>> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >>> >> isolationLevel) +320 >>> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >>> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >>> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >>> >> Repository.InitializeDatabase() in d:\ASP.NET >>> >> SITE\site\App_Code\Data\Repository.cs:85 >>> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >>> >> in d:\ASP.NET >>> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >>> >> >>> >> >>> >> >>> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >>> >> +92 >>> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >>> >> Boolean& completedSynchronously) +64 >>> >> >>> >> >>> >> -- >>> >> _______________________________________ >>> >> Manoj >>> >> Do not expect from, or aspire for, for the more you do of either, the >>> >> more your heart will ache; when aspirations fail and expectations >>> >> break. >>> >> >>> >> >>> >> ------------------------------------------------------------------------- >>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >>> >> challenge >>> >> Build the coolest Linux based applications with Moblin SDK & win great >>> >> prizes >>> >> Grand prize is a trip for two to an Open Source event anywhere in the >>> >> world >>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>> >> _______________________________________________ >>> >> Mp3-cms-svn mailing list >>> >> Mp3...@li... >>> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>> >> >>> > >>> >>> >>> >>> -- >>> _______________________________________ >>> Manoj Pageni >>> Intersoft Corporation >>> 1101 15th St NW >>> Washington DC, 20005 >>> _______________________________________ >>> Do not expect from, or aspire for, for the more you do of either, the >>> more your heart will ache; when aspirations fail and expectations >>> break. >>> >>> ------------------------------------------------------------------------- >>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>> challenge >>> Build the coolest Linux based applications with Moblin SDK & win great >>> prizes >>> Grand prize is a trip for two to an Open Source event anywhere in the >>> world >>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>> _______________________________________________ >>> Mp3-cms-svn mailing list >>> Mp3...@li... >>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> >> ________________________________ >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> >> ________________________________ >> >> _______________________________________________ >> Mp3-cms-svn mailing list >> Mp3...@li... >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> > > > > -- > _______________________________________ > Manoj Pageni > Intersoft Corporation > 1101 15th St NW > Washington DC, 20005 > _______________________________________ > Do not expect from, or aspire for, for the more you do of either, the > more your heart will ache; when aspirations fail and expectations > break. > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Neal B. <nea...@ho...> - 2008-07-22 01:25:51
|
Ah.. yea those developer instructions can be tricky. We did it this way since all the developers have different setups and we got tired of having to keep changing our config files every time we updated the SVN server. Please let us know when you've got something. I think the AJAX feature would be outstanding, where you mouse over a track and get a nice AJAX popup of some kind that displays the lyrics or other things. Great Idea! If you'd like write access to the SVN server as a developer send me your sourceforge id and I'll add you as a developer on the project and then you can commit your changes directly and we all can start using your new features! R/ Neal -------------------------------------------------- From: "Manoj" <mp...@gm...> Sent: Monday, July 21, 2008 9:17 PM To: "Neal Bailey" <nea...@ho...> Cc: "Jeremy Mann" <je...@gm...>; <mp3...@li...> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format forparameter"D:\ASP.NET SITE\App_Data\music.db3" > Hello Neal, > > Looks like I disregarded it somehow, I will update what happens. In > the meantime, the first I would want to add the following: > > 1. Add image for the artists too > 2. Just like the album page, I would have an artist page, where > description, image, list of their albums, key tracks can be displaced. > 3. For providing song info, instead of loading the new page, i woul > have some ajax work to display it on the same page neatly. > > Also, rating feature for artist and album besides tracks only. > I think they are worth adding to the system :) > > > Thanks, > Manoj > > > > On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> > wrote: >> Thanks for clarifying that Jeremy. There was a user on the forums a while >> ago that had to do some work to get Visual Studio 2008 to work for him >> but I >> think that he worked out his problem ended up being a setting in Windows >> Server 2008 and not VS2008. >> >> Manjo, so it looks like the issue has to reside in your configuration. >> The >> developer bits can be real tricky to get working and I apologize for >> that. >> Can you validate that you followed the developer instructions outlined in >> this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? >> >> ** DEVELOPER INSTRUCTIONS ** >> >> You need the source which can be downloaded from the SVN repository >> >> 1. Copy the sample_web.config file and paste it into the working >> directory >> as Web.Config >> 2. Create a new folder in ~/config called my_settings >> 3. Copy the configuration files in ~/config/default to >> ~/config/my_settings >> 4. Edit the AppSettings.config file. Set a scan path & turn the scanner >> on >> or off >> 5. Edit the NHibernate.config file. In the SQLite >> connection.connection_string property. >> NOTE: This property must point to the fully qaulified path to your >> App_Data >> folder >> 6. Edit the web.config file and replace all instances of /config/default >> to >> /config/my_settings >> >> If you've done all these steps correctly and are still having problems >> can >> you send the contents of your web.config file and NHibernate.config file? >> >> Also, what are you wanting to add to the solution? Perhaps I can add it >> for >> you if you're not able to get the solution working for you in your >> environment. >> >> R/ >> --Neal >> >> >> From: Jeremy Mann >> Sent: Monday, July 21, 2008 8:20 PM >> To: Manoj ; mp3...@li... >> Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format >> forparameter"D:\ASP.NET SITE\App_Data\music.db3" >> Manjo, >> >> Since you didnt mention it, did you verify your connection string is >> valid >> and follows the format in the configuration that Neal provided? For >> reference I can run the project under VS2008 without a problem, so I'm >> guessing the issue is elsewhere. >> >> If your new to SVN, I'd recommend using the VisualSVN plug in for >> VisualStudio. It's basically a Visual Studio plugin/interface with >> TortoiseSVN. They do give out licenses for open source project team >> members >> if you ask nicely. >> >> - Jeremy >> >> >> On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >>> >>> Hello Neal, >>> >>> Helpless I went and installed visual studio 2005 too (which i had >>> removed earlier) : ) >>> Its still giving me the same error, Any ideas? >>> >>> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >>> wrote: >>> > Hi Manoj, >>> > >>> > I have heard that Visual Studio 2008 has problems that have to be >>> > hacked >>> > around but I can't verify personally since I'm still using VS2005 for >>> > mp3-cms development. >>> > >>> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that >>> > the >>> > key >>> > in your NHibernate configuration file look like this: >>> > >>> > <property name="connection.connection_string">Data Source=D:\ASP.NET >>> > SITE\App_Data \music.db3;Version=3;Page >>> > Size=4096;Synchronous=Off</property> >>> > >>> > R/ >>> > Neal >>> > >>> > -------------------------------------------------- >>> > From: "Manoj" <mp...@gm...> >>> > Sent: Friday, July 18, 2008 2:50 PM >>> > To: <mp3...@li...> >>> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >>> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >>> > >>> >> Hi all, >>> >> I exported the svn and opened it in VS2008 (was converted). >>> >> Compilation, Build all went fine. I got the following runtime error. >>> >> >>> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i >>> >> could >>> >> contribue what I could. >>> >> --Error follows below----- >>> >> >>> >> >>> >> Invalid ConnectionString format for parameter "D:\ASP.NET >>> >> SITE\App_Data\music.db3" >>> >> >>> >> Description: An unhandled exception occurred during the execution of >>> >> the current web request. Please review the stack trace for more >>> >> information about the error and where it originated in the code. >>> >> >>> >> Exception Details: System.ArgumentException: Invalid ConnectionString >>> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >>> >> >>> >> Source Error: >>> >> >>> >> Line 83: ISession session = SessionManager.GetThreadSession(); >>> >> Line 84: >>> >> Line 85: ITransaction tx = session.BeginTransaction(); >>> >> Line 86: >>> >> Line 87: try >>> >> >>> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs >>> >> Line: >>> >> 85 >>> >> >>> >> Stack Trace: >>> >> >>> >> [ArgumentException: Invalid ConnectionString format for parameter >>> >> "D:\ASP.NET SITE\App_Data\music.db3"] >>> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >>> >> System.Data.SQLite.SQLiteConnection.Open() +162 >>> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >>> >> >>> >> [ADOException: cannot open connection] >>> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >>> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >>> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >>> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >>> >> isolationLevel) +320 >>> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >>> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >>> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >>> >> Repository.InitializeDatabase() in d:\ASP.NET >>> >> SITE\site\App_Code\Data\Repository.cs:85 >>> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >>> >> in d:\ASP.NET >>> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >>> >> >>> >> >>> >> >>> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >>> >> +92 >>> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >>> >> Boolean& completedSynchronously) +64 >>> >> >>> >> >>> >> -- >>> >> _______________________________________ >>> >> Manoj >>> >> Do not expect from, or aspire for, for the more you do of either, the >>> >> more your heart will ache; when aspirations fail and expectations >>> >> break. >>> >> >>> >> >>> >> ------------------------------------------------------------------------- >>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >>> >> challenge >>> >> Build the coolest Linux based applications with Moblin SDK & win >>> >> great >>> >> prizes >>> >> Grand prize is a trip for two to an Open Source event anywhere in the >>> >> world >>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>> >> _______________________________________________ >>> >> Mp3-cms-svn mailing list >>> >> Mp3...@li... >>> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >>> >> >>> > >>> >>> >>> >>> -- >>> _______________________________________ >>> Manoj Pageni >>> Intersoft Corporation >>> 1101 15th St NW >>> Washington DC, 20005 >>> _______________________________________ >>> Do not expect from, or aspire for, for the more you do of either, the >>> more your heart will ache; when aspirations fail and expectations >>> break. >>> >>> ------------------------------------------------------------------------- >>> This SF.Net email is sponsored by the Moblin Your Move Developer's >>> challenge >>> Build the coolest Linux based applications with Moblin SDK & win great >>> prizes >>> Grand prize is a trip for two to an Open Source event anywhere in the >>> world >>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>> _______________________________________________ >>> Mp3-cms-svn mailing list >>> Mp3...@li... >>> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> >> ________________________________ >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> >> ________________________________ >> >> _______________________________________________ >> Mp3-cms-svn mailing list >> Mp3...@li... >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> > > > > -- > _______________________________________ > Manoj Pageni > Intersoft Corporation > 1101 15th St NW > Washington DC, 20005 > _______________________________________ > Do not expect from, or aspire for, for the more you do of either, the > more your heart will ache; when aspirations fail and expectations > break. > |
|
From: Manoj <mp...@gm...> - 2008-07-22 01:17:37
|
Hello Neal, Looks like I disregarded it somehow, I will update what happens. In the meantime, the first I would want to add the following: 1. Add image for the artists too 2. Just like the album page, I would have an artist page, where description, image, list of their albums, key tracks can be displaced. 3. For providing song info, instead of loading the new page, i woul have some ajax work to display it on the same page neatly. Also, rating feature for artist and album besides tracks only. I think they are worth adding to the system :) Thanks, Manoj On Mon, Jul 21, 2008 at 9:09 PM, Neal Bailey <nea...@ho...> wrote: > Thanks for clarifying that Jeremy. There was a user on the forums a while > ago that had to do some work to get Visual Studio 2008 to work for him but I > think that he worked out his problem ended up being a setting in Windows > Server 2008 and not VS2008. > > Manjo, so it looks like the issue has to reside in your configuration. The > developer bits can be real tricky to get working and I apologize for that. > Can you validate that you followed the developer instructions outlined in > this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? > > ** DEVELOPER INSTRUCTIONS ** > > You need the source which can be downloaded from the SVN repository > > 1. Copy the sample_web.config file and paste it into the working directory > as Web.Config > 2. Create a new folder in ~/config called my_settings > 3. Copy the configuration files in ~/config/default to ~/config/my_settings > 4. Edit the AppSettings.config file. Set a scan path & turn the scanner on > or off > 5. Edit the NHibernate.config file. In the SQLite > connection.connection_string property. > NOTE: This property must point to the fully qaulified path to your App_Data > folder > 6. Edit the web.config file and replace all instances of /config/default to > /config/my_settings > > If you've done all these steps correctly and are still having problems can > you send the contents of your web.config file and NHibernate.config file? > > Also, what are you wanting to add to the solution? Perhaps I can add it for > you if you're not able to get the solution working for you in your > environment. > > R/ > --Neal > > > From: Jeremy Mann > Sent: Monday, July 21, 2008 8:20 PM > To: Manoj ; mp3...@li... > Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format > forparameter"D:\ASP.NET SITE\App_Data\music.db3" > Manjo, > > Since you didnt mention it, did you verify your connection string is valid > and follows the format in the configuration that Neal provided? For > reference I can run the project under VS2008 without a problem, so I'm > guessing the issue is elsewhere. > > If your new to SVN, I'd recommend using the VisualSVN plug in for > VisualStudio. It's basically a Visual Studio plugin/interface with > TortoiseSVN. They do give out licenses for open source project team members > if you ask nicely. > > - Jeremy > > > On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >> >> Hello Neal, >> >> Helpless I went and installed visual studio 2005 too (which i had >> removed earlier) : ) >> Its still giving me the same error, Any ideas? >> >> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >> wrote: >> > Hi Manoj, >> > >> > I have heard that Visual Studio 2008 has problems that have to be hacked >> > around but I can't verify personally since I'm still using VS2005 for >> > mp3-cms development. >> > >> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that the >> > key >> > in your NHibernate configuration file look like this: >> > >> > <property name="connection.connection_string">Data Source=D:\ASP.NET >> > SITE\App_Data \music.db3;Version=3;Page >> > Size=4096;Synchronous=Off</property> >> > >> > R/ >> > Neal >> > >> > -------------------------------------------------- >> > From: "Manoj" <mp...@gm...> >> > Sent: Friday, July 18, 2008 2:50 PM >> > To: <mp3...@li...> >> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >> > >> >> Hi all, >> >> I exported the svn and opened it in VS2008 (was converted). >> >> Compilation, Build all went fine. I got the following runtime error. >> >> >> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i could >> >> contribue what I could. >> >> --Error follows below----- >> >> >> >> >> >> Invalid ConnectionString format for parameter "D:\ASP.NET >> >> SITE\App_Data\music.db3" >> >> >> >> Description: An unhandled exception occurred during the execution of >> >> the current web request. Please review the stack trace for more >> >> information about the error and where it originated in the code. >> >> >> >> Exception Details: System.ArgumentException: Invalid ConnectionString >> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >> >> >> >> Source Error: >> >> >> >> Line 83: ISession session = SessionManager.GetThreadSession(); >> >> Line 84: >> >> Line 85: ITransaction tx = session.BeginTransaction(); >> >> Line 86: >> >> Line 87: try >> >> >> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: >> >> 85 >> >> >> >> Stack Trace: >> >> >> >> [ArgumentException: Invalid ConnectionString format for parameter >> >> "D:\ASP.NET SITE\App_Data\music.db3"] >> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >> >> System.Data.SQLite.SQLiteConnection.Open() +162 >> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >> >> >> >> [ADOException: cannot open connection] >> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >> >> isolationLevel) +320 >> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >> >> Repository.InitializeDatabase() in d:\ASP.NET >> >> SITE\site\App_Code\Data\Repository.cs:85 >> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >> >> in d:\ASP.NET >> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >> >> >> >> >> >> >> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >> >> +92 >> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >> >> Boolean& completedSynchronously) +64 >> >> >> >> >> >> -- >> >> _______________________________________ >> >> Manoj >> >> Do not expect from, or aspire for, for the more you do of either, the >> >> more your heart will ache; when aspirations fail and expectations >> >> break. >> >> >> >> >> >> ------------------------------------------------------------------------- >> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> >> challenge >> >> Build the coolest Linux based applications with Moblin SDK & win great >> >> prizes >> >> Grand prize is a trip for two to an Open Source event anywhere in the >> >> world >> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> >> _______________________________________________ >> >> Mp3-cms-svn mailing list >> >> Mp3...@li... >> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> >> >> > >> >> >> >> -- >> _______________________________________ >> Manoj Pageni >> Intersoft Corporation >> 1101 15th St NW >> Washington DC, 20005 >> _______________________________________ >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Mp3-cms-svn mailing list >> Mp3...@li... >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn > > ________________________________ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > ________________________________ > > _______________________________________________ > Mp3-cms-svn mailing list > Mp3...@li... > https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Neal B. <nea...@ho...> - 2008-07-22 01:09:42
|
Thanks for clarifying that Jeremy. There was a user on the forums a while ago that had to do some work to get Visual Studio 2008 to work for him but I think that he worked out his problem ended up being a setting in Windows Server 2008 and not VS2008. Manjo, so it looks like the issue has to reside in your configuration. The developer bits can be real tricky to get working and I apologize for that. Can you validate that you followed the developer instructions outlined in this post: http://www.nealosis.com/forum/default.aspx?g=posts&t=40? ** DEVELOPER INSTRUCTIONS ** You need the source which can be downloaded from the SVN repository 1. Copy the sample_web.config file and paste it into the working directory as Web.Config 2. Create a new folder in ~/config called my_settings 3. Copy the configuration files in ~/config/default to ~/config/my_settings 4. Edit the AppSettings.config file. Set a scan path & turn the scanner on or off 5. Edit the NHibernate.config file. In the SQLite connection.connection_string property. NOTE: This property must point to the fully qaulified path to your App_Data folder 6. Edit the web.config file and replace all instances of /config/default to /config/my_settings If you've done all these steps correctly and are still having problems can you send the contents of your web.config file and NHibernate.config file? Also, what are you wanting to add to the solution? Perhaps I can add it for you if you're not able to get the solution working for you in your environment. R/ --Neal From: Jeremy Mann Sent: Monday, July 21, 2008 8:20 PM To: Manoj ; mp3...@li... Subject: Re: [Mp3-cms-svn] Invalid ConnectionString format forparameter"D:\ASP.NET SITE\App_Data\music.db3" Manjo, Since you didnt mention it, did you verify your connection string is valid and follows the format in the configuration that Neal provided? For reference I can run the project under VS2008 without a problem, so I'm guessing the issue is elsewhere. If your new to SVN, I'd recommend using the VisualSVN plug in for VisualStudio. It's basically a Visual Studio plugin/interface with TortoiseSVN. They do give out licenses for open source project team members if you ask nicely. - Jeremy On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: Hello Neal, Helpless I went and installed visual studio 2005 too (which i had removed earlier) : ) Its still giving me the same error, Any ideas? On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> wrote: > Hi Manoj, > > I have heard that Visual Studio 2008 has problems that have to be hacked > around but I can't verify personally since I'm still using VS2005 for > mp3-cms development. > > I assume that the directory D:\ASP.NET SITE\App_Data exists and that the key > in your NHibernate configuration file look like this: > > <property name="connection.connection_string">Data Source=D:\ASP.NET > SITE\App_Data \music.db3;Version=3;Page Size=4096;Synchronous=Off</property> > > R/ > Neal > > -------------------------------------------------- > From: "Manoj" <mp...@gm...> > Sent: Friday, July 18, 2008 2:50 PM > To: <mp3...@li...> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for > parameter"D:\ASP.NET SITE\App_Data\music.db3" > >> Hi all, >> I exported the svn and opened it in VS2008 (was converted). >> Compilation, Build all went fine. I got the following runtime error. >> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i could >> contribue what I could. >> --Error follows below----- >> >> >> Invalid ConnectionString format for parameter "D:\ASP.NET >> SITE\App_Data\music.db3" >> >> Description: An unhandled exception occurred during the execution of >> the current web request. Please review the stack trace for more >> information about the error and where it originated in the code. >> >> Exception Details: System.ArgumentException: Invalid ConnectionString >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >> >> Source Error: >> >> Line 83: ISession session = SessionManager.GetThreadSession(); >> Line 84: >> Line 85: ITransaction tx = session.BeginTransaction(); >> Line 86: >> Line 87: try >> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: 85 >> >> Stack Trace: >> >> [ArgumentException: Invalid ConnectionString format for parameter >> "D:\ASP.NET SITE\App_Data\music.db3"] >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >> System.Data.SQLite.SQLiteConnection.Open() +162 >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >> >> [ADOException: cannot open connection] >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >> NHibernate.Impl.SessionImpl.get_Connection() +32 >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >> isolationLevel) +320 >> NHibernate.Transaction.AdoTransaction.Begin() +28 >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >> Repository.InitializeDatabase() in d:\ASP.NET >> SITE\site\App_Code\Data\Repository.cs:85 >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >> in d:\ASP.NET SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >> >> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >> +92 >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >> Boolean& completedSynchronously) +64 >> >> >> -- >> _______________________________________ >> Manoj >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Mp3-cms-svn mailing list >> Mp3...@li... >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Mp3-cms-svn mailing list Mp3...@li... https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn -------------------------------------------------------------------------------- ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ -------------------------------------------------------------------------------- _______________________________________________ Mp3-cms-svn mailing list Mp3...@li... https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn |
|
From: Manoj <mp...@gm...> - 2008-07-22 01:07:31
|
Thanks Jeremy, Sorry I didnt mention it before.Yes I did verify the connection string. I will see what more information I can extract or figure out. And I went ahead and installed it during my office hours :p. i used to use the svn client but was not aware of the plugin. Thanks. On Mon, Jul 21, 2008 at 8:20 PM, Jeremy Mann <je...@gm...> wrote: > Manjo, > > Since you didnt mention it, did you verify your connection string is valid > and follows the format in the configuration that Neal provided? For > reference I can run the project under VS2008 without a problem, so I'm > guessing the issue is elsewhere. > > If your new to SVN, I'd recommend using the VisualSVN plug in for > VisualStudio. It's basically a Visual Studio plugin/interface with > TortoiseSVN. They do give out licenses for open source project team members > if you ask nicely. > > - Jeremy > > > On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: >> >> Hello Neal, >> >> Helpless I went and installed visual studio 2005 too (which i had >> removed earlier) : ) >> Its still giving me the same error, Any ideas? >> >> On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> >> wrote: >> > Hi Manoj, >> > >> > I have heard that Visual Studio 2008 has problems that have to be hacked >> > around but I can't verify personally since I'm still using VS2005 for >> > mp3-cms development. >> > >> > I assume that the directory D:\ASP.NET SITE\App_Data exists and that the >> > key >> > in your NHibernate configuration file look like this: >> > >> > <property name="connection.connection_string">Data Source=D:\ASP.NET >> > SITE\App_Data \music.db3;Version=3;Page >> > Size=4096;Synchronous=Off</property> >> > >> > R/ >> > Neal >> > >> > -------------------------------------------------- >> > From: "Manoj" <mp...@gm...> >> > Sent: Friday, July 18, 2008 2:50 PM >> > To: <mp3...@li...> >> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for >> > parameter"D:\ASP.NET SITE\App_Data\music.db3" >> > >> >> Hi all, >> >> I exported the svn and opened it in VS2008 (was converted). >> >> Compilation, Build all went fine. I got the following runtime error. >> >> >> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i could >> >> contribue what I could. >> >> --Error follows below----- >> >> >> >> >> >> Invalid ConnectionString format for parameter "D:\ASP.NET >> >> SITE\App_Data\music.db3" >> >> >> >> Description: An unhandled exception occurred during the execution of >> >> the current web request. Please review the stack trace for more >> >> information about the error and where it originated in the code. >> >> >> >> Exception Details: System.ArgumentException: Invalid ConnectionString >> >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >> >> >> >> Source Error: >> >> >> >> Line 83: ISession session = SessionManager.GetThreadSession(); >> >> Line 84: >> >> Line 85: ITransaction tx = session.BeginTransaction(); >> >> Line 86: >> >> Line 87: try >> >> >> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: >> >> 85 >> >> >> >> Stack Trace: >> >> >> >> [ArgumentException: Invalid ConnectionString format for parameter >> >> "D:\ASP.NET SITE\App_Data\music.db3"] >> >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >> >> System.Data.SQLite.SQLiteConnection.Open() +162 >> >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >> >> >> >> [ADOException: cannot open connection] >> >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >> >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >> >> NHibernate.Impl.SessionImpl.get_Connection() +32 >> >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >> >> isolationLevel) +320 >> >> NHibernate.Transaction.AdoTransaction.Begin() +28 >> >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >> >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >> >> Repository.InitializeDatabase() in d:\ASP.NET >> >> SITE\site\App_Code\Data\Repository.cs:85 >> >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >> >> in d:\ASP.NET >> >> SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >> >> >> >> >> >> >> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >> >> +92 >> >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >> >> Boolean& completedSynchronously) +64 >> >> >> >> >> >> -- >> >> _______________________________________ >> >> Manoj >> >> Do not expect from, or aspire for, for the more you do of either, the >> >> more your heart will ache; when aspirations fail and expectations >> >> break. >> >> >> >> >> >> ------------------------------------------------------------------------- >> >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> >> challenge >> >> Build the coolest Linux based applications with Moblin SDK & win great >> >> prizes >> >> Grand prize is a trip for two to an Open Source event anywhere in the >> >> world >> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> >> _______________________________________________ >> >> Mp3-cms-svn mailing list >> >> Mp3...@li... >> >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> >> >> > >> >> >> >> -- >> _______________________________________ >> Manoj Pageni >> Intersoft Corporation >> 1101 15th St NW >> Washington DC, 20005 >> _______________________________________ >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Mp3-cms-svn mailing list >> Mp3...@li... >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn > > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Jeremy M. <je...@gm...> - 2008-07-22 00:20:15
|
Manjo, Since you didnt mention it, did you verify your connection string is valid and follows the format in the configuration that Neal provided? For reference I can run the project under VS2008 without a problem, so I'm guessing the issue is elsewhere. If your new to SVN, I'd recommend using the VisualSVN plug in for VisualStudio. It's basically a Visual Studio plugin/interface with TortoiseSVN. They do give out licenses for open source project team members if you ask nicely. - Jeremy On Mon, Jul 21, 2008 at 4:29 PM, Manoj <mp...@gm...> wrote: > Hello Neal, > > Helpless I went and installed visual studio 2005 too (which i had > removed earlier) : ) > Its still giving me the same error, Any ideas? > > On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> > wrote: > > Hi Manoj, > > > > I have heard that Visual Studio 2008 has problems that have to be hacked > > around but I can't verify personally since I'm still using VS2005 for > > mp3-cms development. > > > > I assume that the directory D:\ASP.NET SITE\App_Data exists and that the > key > > in your NHibernate configuration file look like this: > > > > <property name="connection.connection_string">Data Source=D:\ASP.NET > > SITE\App_Data \music.db3;Version=3;Page > Size=4096;Synchronous=Off</property> > > > > R/ > > Neal > > > > -------------------------------------------------- > > From: "Manoj" <mp...@gm...> > > Sent: Friday, July 18, 2008 2:50 PM > > To: <mp3...@li...> > > Subject: [Mp3-cms-svn] Invalid ConnectionString format for > > parameter"D:\ASP.NET SITE\App_Data\music.db3" > > > >> Hi all, > >> I exported the svn and opened it in VS2008 (was converted). > >> Compilation, Build all went fine. I got the following runtime error. > >> > >> Any ideas. I wanted to do some enhancing. I am new to svn, but i could > >> contribue what I could. > >> --Error follows below----- > >> > >> > >> Invalid ConnectionString format for parameter "D:\ASP.NET > >> SITE\App_Data\music.db3" > >> > >> Description: An unhandled exception occurred during the execution of > >> the current web request. Please review the stack trace for more > >> information about the error and where it originated in the code. > >> > >> Exception Details: System.ArgumentException: Invalid ConnectionString > >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" > >> > >> Source Error: > >> > >> Line 83: ISession session = SessionManager.GetThreadSession(); > >> Line 84: > >> Line 85: ITransaction tx = session.BeginTransaction(); > >> Line 86: > >> Line 87: try > >> > >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: > 85 > >> > >> Stack Trace: > >> > >> [ArgumentException: Invalid ConnectionString format for parameter > >> "D:\ASP.NET SITE\App_Data\music.db3"] > >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 > >> System.Data.SQLite.SQLiteConnection.Open() +162 > >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 > >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 > >> > >> [ADOException: cannot open connection] > >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 > >> NHibernate.Impl.ConnectionManager.GetConnection() +85 > >> NHibernate.Impl.SessionImpl.get_Connection() +32 > >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel > >> isolationLevel) +320 > >> NHibernate.Transaction.AdoTransaction.Begin() +28 > >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 > >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 > >> Repository.InitializeDatabase() in d:\ASP.NET > >> SITE\site\App_Code\Data\Repository.cs:85 > >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) > >> in d:\ASP.NETSITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 > >> > >> > >> > System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() > >> +92 > >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, > >> Boolean& completedSynchronously) +64 > >> > >> > >> -- > >> _______________________________________ > >> Manoj > >> Do not expect from, or aspire for, for the more you do of either, the > >> more your heart will ache; when aspirations fail and expectations > >> break. > >> > >> > ------------------------------------------------------------------------- > >> This SF.Net email is sponsored by the Moblin Your Move Developer's > >> challenge > >> Build the coolest Linux based applications with Moblin SDK & win great > >> prizes > >> Grand prize is a trip for two to an Open Source event anywhere in the > >> world > >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >> _______________________________________________ > >> Mp3-cms-svn mailing list > >> Mp3...@li... > >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn > >> > > > > > > -- > _______________________________________ > Manoj Pageni > Intersoft Corporation > 1101 15th St NW > Washington DC, 20005 > _______________________________________ > Do not expect from, or aspire for, for the more you do of either, the > more your heart will ache; when aspirations fail and expectations > break. > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Mp3-cms-svn mailing list > Mp3...@li... > https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn > |
|
From: Manoj <mp...@gm...> - 2008-07-21 20:29:33
|
Hello Neal, Helpless I went and installed visual studio 2005 too (which i had removed earlier) : ) Its still giving me the same error, Any ideas? On Mon, Jul 21, 2008 at 11:33 AM, Neal Bailey <nea...@ho...> wrote: > Hi Manoj, > > I have heard that Visual Studio 2008 has problems that have to be hacked > around but I can't verify personally since I'm still using VS2005 for > mp3-cms development. > > I assume that the directory D:\ASP.NET SITE\App_Data exists and that the key > in your NHibernate configuration file look like this: > > <property name="connection.connection_string">Data Source=D:\ASP.NET > SITE\App_Data \music.db3;Version=3;Page Size=4096;Synchronous=Off</property> > > R/ > Neal > > -------------------------------------------------- > From: "Manoj" <mp...@gm...> > Sent: Friday, July 18, 2008 2:50 PM > To: <mp3...@li...> > Subject: [Mp3-cms-svn] Invalid ConnectionString format for > parameter"D:\ASP.NET SITE\App_Data\music.db3" > >> Hi all, >> I exported the svn and opened it in VS2008 (was converted). >> Compilation, Build all went fine. I got the following runtime error. >> >> Any ideas. I wanted to do some enhancing. I am new to svn, but i could >> contribue what I could. >> --Error follows below----- >> >> >> Invalid ConnectionString format for parameter "D:\ASP.NET >> SITE\App_Data\music.db3" >> >> Description: An unhandled exception occurred during the execution of >> the current web request. Please review the stack trace for more >> information about the error and where it originated in the code. >> >> Exception Details: System.ArgumentException: Invalid ConnectionString >> format for parameter "D:\ASP.NET SITE\App_Data\music.db3" >> >> Source Error: >> >> Line 83: ISession session = SessionManager.GetThreadSession(); >> Line 84: >> Line 85: ITransaction tx = session.BeginTransaction(); >> Line 86: >> Line 87: try >> >> Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: 85 >> >> Stack Trace: >> >> [ArgumentException: Invalid ConnectionString format for parameter >> "D:\ASP.NET SITE\App_Data\music.db3"] >> System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 >> System.Data.SQLite.SQLiteConnection.Open() +162 >> NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 >> >> [ADOException: cannot open connection] >> NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 >> NHibernate.Impl.ConnectionManager.GetConnection() +85 >> NHibernate.Impl.SessionImpl.get_Connection() +32 >> NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel >> isolationLevel) +320 >> NHibernate.Transaction.AdoTransaction.Begin() +28 >> NHibernate.Impl.ConnectionManager.BeginTransaction() +39 >> NHibernate.Impl.SessionImpl.BeginTransaction() +41 >> Repository.InitializeDatabase() in d:\ASP.NET >> SITE\site\App_Code\Data\Repository.cs:85 >> DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) >> in d:\ASP.NET SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 >> >> >> System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() >> +92 >> System.Web.HttpApplication.ExecuteStep(IExecutionStep step, >> Boolean& completedSynchronously) +64 >> >> >> -- >> _______________________________________ >> Manoj >> Do not expect from, or aspire for, for the more you do of either, the >> more your heart will ache; when aspirations fail and expectations >> break. >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Mp3-cms-svn mailing list >> Mp3...@li... >> https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn >> > -- _______________________________________ Manoj Pageni Intersoft Corporation 1101 15th St NW Washington DC, 20005 _______________________________________ Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Neal B. <nea...@ho...> - 2008-07-21 15:33:34
|
Hi Manoj, I have heard that Visual Studio 2008 has problems that have to be hacked around but I can't verify personally since I'm still using VS2005 for mp3-cms development. I assume that the directory D:\ASP.NET SITE\App_Data exists and that the key in your NHibernate configuration file look like this: <property name="connection.connection_string">Data Source=D:\ASP.NET SITE\App_Data \music.db3;Version=3;Page Size=4096;Synchronous=Off</property> R/ Neal -------------------------------------------------- From: "Manoj" <mp...@gm...> Sent: Friday, July 18, 2008 2:50 PM To: <mp3...@li...> Subject: [Mp3-cms-svn] Invalid ConnectionString format for parameter"D:\ASP.NET SITE\App_Data\music.db3" > Hi all, > I exported the svn and opened it in VS2008 (was converted). > Compilation, Build all went fine. I got the following runtime error. > > Any ideas. I wanted to do some enhancing. I am new to svn, but i could > contribue what I could. > --Error follows below----- > > > Invalid ConnectionString format for parameter "D:\ASP.NET > SITE\App_Data\music.db3" > > Description: An unhandled exception occurred during the execution of > the current web request. Please review the stack trace for more > information about the error and where it originated in the code. > > Exception Details: System.ArgumentException: Invalid ConnectionString > format for parameter "D:\ASP.NET SITE\App_Data\music.db3" > > Source Error: > > Line 83: ISession session = SessionManager.GetThreadSession(); > Line 84: > Line 85: ITransaction tx = session.BeginTransaction(); > Line 86: > Line 87: try > > Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: 85 > > Stack Trace: > > [ArgumentException: Invalid ConnectionString format for parameter > "D:\ASP.NET SITE\App_Data\music.db3"] > System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 > System.Data.SQLite.SQLiteConnection.Open() +162 > NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 > NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 > > [ADOException: cannot open connection] > NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 > NHibernate.Impl.ConnectionManager.GetConnection() +85 > NHibernate.Impl.SessionImpl.get_Connection() +32 > NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel > isolationLevel) +320 > NHibernate.Transaction.AdoTransaction.Begin() +28 > NHibernate.Impl.ConnectionManager.BeginTransaction() +39 > NHibernate.Impl.SessionImpl.BeginTransaction() +41 > Repository.InitializeDatabase() in d:\ASP.NET > SITE\site\App_Code\Data\Repository.cs:85 > DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) > in d:\ASP.NET SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 > > System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() > +92 > System.Web.HttpApplication.ExecuteStep(IExecutionStep step, > Boolean& completedSynchronously) +64 > > > -- > _______________________________________ > Manoj > Do not expect from, or aspire for, for the more you do of either, the > more your heart will ache; when aspirations fail and expectations > break. > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Mp3-cms-svn mailing list > Mp3...@li... > https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn > |
|
From: Manoj <mp...@gm...> - 2008-07-18 18:50:39
|
Hi all, I exported the svn and opened it in VS2008 (was converted). Compilation, Build all went fine. I got the following runtime error. Any ideas. I wanted to do some enhancing. I am new to svn, but i could contribue what I could. --Error follows below----- Invalid ConnectionString format for parameter "D:\ASP.NET SITE\App_Data\music.db3" Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.ArgumentException: Invalid ConnectionString format for parameter "D:\ASP.NET SITE\App_Data\music.db3" Source Error: Line 83: ISession session = SessionManager.GetThreadSession(); Line 84: Line 85: ITransaction tx = session.BeginTransaction(); Line 86: Line 87: try Source File: d:\ASP.NET SITE\site\App_Code\Data\Repository.cs Line: 85 Stack Trace: [ArgumentException: Invalid ConnectionString format for parameter "D:\ASP.NET SITE\App_Data\music.db3"] System.Data.SQLite.SQLiteConnection.ParseConnectionString() +390 System.Data.SQLite.SQLiteConnection.Open() +162 NHibernate.Connection.DriverConnectionProvider.GetConnection() +97 NHibernate.Impl.SessionFactoryImpl.OpenConnection() +60 [ADOException: cannot open connection] NHibernate.Impl.SessionFactoryImpl.OpenConnection() +125 NHibernate.Impl.ConnectionManager.GetConnection() +85 NHibernate.Impl.SessionImpl.get_Connection() +32 NHibernate.Transaction.AdoTransaction.Begin(IsolationLevel isolationLevel) +320 NHibernate.Transaction.AdoTransaction.Begin() +28 NHibernate.Impl.ConnectionManager.BeginTransaction() +39 NHibernate.Impl.SessionImpl.BeginTransaction() +41 Repository.InitializeDatabase() in d:\ASP.NET SITE\site\App_Code\Data\Repository.cs:85 DataManagementHttpModule.OnBeginRequest(Object sender, EventArgs e) in d:\ASP.NET SITE\site\App_Code\Extensions\DataManagementHttpModule.cs:44 System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64 -- _______________________________________ Manoj Do not expect from, or aspire for, for the more you do of either, the more your heart will ache; when aspirations fail and expectations break. |
|
From: Neal B. <nea...@ho...> - 2008-03-17 17:58:09
|
MP3-CMS Users, It's been a tough couple of weeks since the MP3-CMS team announced v1.5.0 was available for download. Since then we have released 3 service revisions to fix minor processing bugs identified by our users. This message is a friendly notification that we have released v1.5.0.3 and we feel that it resolved the identified bugs and will probably become our mainstream release. There has been a wiki established to provide installation support: http://www.nealosis.com/wiki/ As well as a blog, though this will contain more than just MP3-CMS news: http://www.nealosis.com/blog/ Thanks everyone for the support. We're glad to be able to share our passion with all of you. MP3-CMS Admin From: Neal Bailey Sent: Saturday, March 08, 2008 1:35 AM To: Neal Bailey ; las...@gu... ; Dom Donoflio ; qum...@ya... ; rl...@gm... ; sae...@ya... ; baz...@ho... ; jt...@ho... ; sid...@gm... ; ddh...@gm... ; nu...@ya... ; je...@di... ; hm_...@ho... ; luc...@ya... ; fu...@sb... ; sy...@ho... ; hyp...@ya... ; joh...@ms... ; awd...@ya... ; nw...@si... ; eri...@gm... ; ma...@gm... ; bob...@ho... ; lu...@de... ; da...@da... ; shi...@gm... ; hr...@po... ; Mark Polczynski ; James Bailey ; Joe Zobac ; Lee Lorenz ; Mike Steinmetz ; Louis Rodriguez Subject: MP3CMS v1.5.0.1 Released Comprehensive re-write from v1.2.0. Release Notes: http://www.nealosis.com/forum/default.aspx?g=posts&t=39 The MP3-CMS Team is proud to present revision 1.5.0. This is the culmination of a LOT of time and effort and we're excited about what we've been able to accomplish in this lifecycle. There is just too much to annotate all the changes here since but here are the major changes: Major Changes: * No more MS SQL Server: the backend runs entirly on SQLite (a free open source database) * No more Impersonation: The website now uses forms authentication * Scanner integration: The scanner is now built into the website entirely. It watches your music path and adds/removes records accordingly * User specific profiles: Each user now has data specific to his/her usage. This includes: + Users can rate tracks and those ratings only apply to them + Users have their own private playlists + Users can comment on albums * Online album review scraping: You can now scrape album reviews from online sources * Song Lyrics: Consume lyrics from lyricWiki.org and save them in the database * Usage Monitoring: The CMS now keeps track of the amount of times you play specific songs * New Smart Playlists: + Generate playlists based on your star ratings + Generate playlists based on the most played tracks in your collection * Simple setup: The only settings to enter are the path to your App_Data folder and the path to scan (watch) * Dynamic playlists/album art: Playlists are generated on the fly and not cached and album are is extracted directly from mp3 files if there is no folder.jpg file found .... And much, much more. Regards, MP3-CMS Admin |
|
From: Neal B. <nea...@ho...> - 2008-03-08 01:54:08
|
It's been a long time coming but we're proud to announce the next revision of the MP3-CMS http://www.nealosis.com/forum/default.aspx?g=posts&t=39 |
|
From: Neal T B. <nea...@ho...> - 2007-12-18 19:52:32
|
Just wanted to let all know that I've checked in my latest changes which = adds a comment system into the get album page. Users can now leave = comments for others to read and interact with. Please take a look at the = implementation and let me know if I missed anything. I placed the logic = into AlbumRepository.cs. Also, I didn't know if we wanted a collapsible = AJAX panel for that section or not so I just left it alone for now.=20 Also, I've added a few new playlists into the playlist page but I'm not = quite sure how to implement them yet with the custom DTO objects being = used now. Symon, perhaps you can take a look whenever you have a bit of = time.=20 I'm going to begin work moving the embedded csharp code from the pages = and place them into a clean code-behind.=20 --neal |
|
From: Neal T B. <nea...@ho...> - 2007-12-18 15:39:23
|
Guys, Starting a new thread for this one. This morning is the first time I've = been able to run the v1.5 revision as I work and I noticed that the = session (or AppPool) is timing out.=20 I generated a random playlist of tracks and 20 tracks into the 50 chosen = the connection times out and I cannot listen to the rest of the playlist = until I re-log into the site.=20 Any ideas on what we need to do in order to get an unlimited timeout = period or to set it as a user controlled var? --Neal |
|
From: Neal T B. <nea...@ho...> - 2007-12-12 17:50:02
|
Symon,=20
I still have not been able to track down where the scanner is dying. =
Yesterday I tried to run a scan in debug mode from within the website on =
a server that has Visual Studio installed but I have not been successful =
in identifying where the scan is failing. I also spent a little time =
playing around with the log4net configuration file trying to get the =
scanner to log to a file but the attempts have failed. Could you edit =
the log4net config to log to a file so I can track down where the =
scanner is failing?=20
Thanks,
--Neal
From: Symon Rottem=20
Sent: Monday, December 03, 2007 2:51 AM
To: Neal T Bailey=20
Subject: Re: [Mp3-cms-svn] Bugs
Hi Neal,
You are correct - you can move the stuff from the Global.asax.cs to an =
EXE if you want to. I'm more interested in why it stopped. My =
collection is about 80Gb as well and I normally scan it across the =
network, so it's pretty slow too, but not as slow as you're seeing. =
There is a log4net.config in the root of the site that controls the =
debug output - at the moment it is logged to the debug output so it can =
be seen using debugview.exe, but it can be reconfigured to write to a =
file. You can find documentation on configuring log4net on the web or =
I'll set it up to log to a file when I get a chance and check in the =
change.=20
Cheers,
Symon.
On Dec 3, 2007 4:30 AM, Neal T Bailey <nea...@ho...> wrote:
It's been 10 hours now and the scan is still not completed yet (and =
the music is on the same server as the IIS). I manually added statistics =
so I could run the site and it's no where near completed yet. In fact it =
never even got half way done. Perhaps the process crashed? Is there a =
log I can consult that will show me where it stopped? I've got 5 of my 9 =
genres in the database but looking over the genres that are there most =
of the albums are missing. I'm starting to think that we're going to =
need to run a separate scanner for the initial scan and use the web =
process for the updates or adding new files once the database is =
established. How large is the music collection you're using for testing? =
It works fine for me on my development machines with 20-30 albums but on =
my production server (1000+ albums) it's choking.=20
What are your thoughts? Would it be difficult to copy the scanner =
logic into a standalone exe with a running log so I can get my =
collection into the new system and track the status of the publishing =
process? If I remember the process being called in the global.asax file =
is the new scanner which I assume I can change to be a standalone exe?
--Neal
From: Symon Rottem=20
Sent: Sunday, December 02, 2007 2:30 PM
To: Neal T Bailey=20
Subject: Re: [Mp3-cms-svn] Bugs
Mind you, I haven't checked in the change because I've got other =
broken stuff. You can do it by hand easily enough though.
Cheers,
Symon.
On Dec 2, 2007 8:29 PM, Symon Rottem < s.r...@gm...> wrote:
Yeah, sorry about that. I discovered the same error this morning =
and put together a ticket about it. I've made a change Repository class =
to check if the Statistics class it tries to load is null and if not to =
return a new Statistics class (unsaved). That works.=20
Cheers,
Symon.=20
On Dec 2, 2007 6:14 PM, Neal T Bailey < nea...@ho...> =
wrote:
Ok, I've got my production server running but I cannot access the =
website because it errors out while calculating statistics. I think this =
is because there are no statistics yet because this is the first scan. =
Is there any way to let the user know that the initial scan is still =
underway so you cannot use the site until the first scan completes? I =
have 80GB+ worth of music so I presume this will take a while.=20
--Neal
From: Symon Rottem=20
Sent: Sunday, December 02, 2007 10:56 AM
To: Neal T Bailey=20
Subject: Re: [Mp3-cms-svn] Bugs
Hmmm. I've just done the same here - since some of the DLLs in =
the website are generated when you compile the rest of the project you =
get some problems. Did you pre-compile the site before deployment and =
then use the publish option in VS2005?=20
Cheers,
Symon.
On Dec 2, 2007 4:19 PM, Neal T Bailey <nea...@ho...> =
wrote:
Yup, will do. Right now I have not yet been able to install on a =
non-development machine. I'm going to try to redo the install on a VPC =
which has Visual Studio installed so I can try to debug. On my primary =
production server the SQLlite database gets created but the tables in =
the db don't get created and the site errors out an any read operation.=20
From: Symon Rottem=20
Sent: Sunday, December 02, 2007 10:07 AM
To: mp3...@li...=20
Subject: [Mp3-cms-svn] Bugs
Hi Neal,
There are still a couple of bugs open in the tracker that we =
should probably close before the next release. I know you've been =
installing on your server and will be testing over the next couple of =
weeks - if you put any bugs you find into the tracker as soon as you =
find them the rest of us can keep an eye out and see if there are any =
fixes we can contribute.=20
Let me know when you've done the interface for the new dynamic =
playlists and I'll do the back end.
Cheers,
Symon.
------------------------------------------------------------------------
=
-------------------------------------------------------------------------=
SF.Net email is sponsored by: The Future of Linux Business White =
Paper
from Novell. From the desktop to the data center, Linux is =
going
mainstream. Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4=20
------------------------------------------------------------------------
_______________________________________________
Mp3-cms-svn mailing list
Mp3...@li...
https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn=20
|
|
From: Neal T B. <nea...@ho...> - 2007-12-02 15:16:19
|
I'll gladly do them or I may be able to get Mark P to assist as well but = I need to get past the SQLlite issues I'm having first. I'll let you = know what I come up with as I try different machines.=20 --Neal From: Symon Rottem=20 Sent: Sunday, December 02, 2007 10:04 AM To: mp3...@li...=20 Subject: [Mp3-cms-svn] RoleProvider Hi Guys, I've just started work on the Role Provider so we can support multiple = roles in the application, allowing us to have specific users that can = manage other users and the application in general. It'll probably take = me a little while, but I'm going to have a default "Administrator" user = generated when the DB is created that will have full rights. We'll need = to mark segments of the site with permission demands to make sure = they're not available unless the appropriate permissions are available.=20 Right now you can create your own login, but there's no way to maintain = it. We'll need to create a series of pages to handle user management = that will be available to administrators so I've created a ticket in the = tracker to that effect. Is anyone prepared to take on the development = of those pages? I'm happy to explain what we need in more detail if = there's a need.=20 Cheers, Symon. -------------------------------------------------------------------------= ------- -------------------------------------------------------------------------= SF.Net email is sponsored by: The Future of Linux Business White Paper from Novell. From the desktop to the data center, Linux is going mainstream. Let it simplify your IT future. http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4=20 -------------------------------------------------------------------------= ------- _______________________________________________ Mp3-cms-svn mailing list Mp3...@li... https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn |
|
From: Neal T B. <nea...@ho...> - 2007-12-02 15:14:56
|
Yup, will do. Right now I have not yet been able to install on a = non-development machine. I'm going to try to redo the install on a VPC = which has Visual Studio installed so I can try to debug. On my primary = production server the SQLlite database gets created but the tables in = the db don't get created and the site errors out an any read operation.=20 From: Symon Rottem=20 Sent: Sunday, December 02, 2007 10:07 AM To: mp3...@li...=20 Subject: [Mp3-cms-svn] Bugs Hi Neal, There are still a couple of bugs open in the tracker that we should = probably close before the next release. I know you've been installing = on your server and will be testing over the next couple of weeks - if = you put any bugs you find into the tracker as soon as you find them the = rest of us can keep an eye out and see if there are any fixes we can = contribute.=20 Let me know when you've done the interface for the new dynamic playlists = and I'll do the back end. Cheers, Symon. -------------------------------------------------------------------------= ------- -------------------------------------------------------------------------= SF.Net email is sponsored by: The Future of Linux Business White Paper from Novell. From the desktop to the data center, Linux is going mainstream. Let it simplify your IT future. http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4=20 -------------------------------------------------------------------------= ------- _______________________________________________ Mp3-cms-svn mailing list Mp3...@li... https://lists.sourceforge.net/lists/listinfo/mp3-cms-svn |