CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.dotnetnuke.getting_started Tags:
Item Type: NewsGroup Date Entered: 10/27/2004 8:28:13 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 0 Views: 18 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
6 Items, 1 Pages 1 |< << Go >> >|
Lordakira2
Asp.Net User
Error uploading10/27/2004 8:28:13 AM

0/0

Hy all!! I've proved locally dotnetnuke 2.1.2,sql server, xp prof,I've commented the verifedfolder perimissions before and it works. Then I've changed the web config to point to the blank sql database in the host server, and also upload the code, and I'm getting this error:

Server Error in '/' Application.
--------------------------------------------------------------------------------

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: No se pudo cargar el tipo 'DotNetNuke.Global'.

Source Error:


Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="DotNetNuke.Global" %>



Source File: D:\XVRT\myweb.com\Html\global.asax Line: 1


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

I don't know what to do. Please, can you help me?

My web config is this(if helps):
<configuration>

<!-- register local configuration handlers -->
<configSections>
<sectionGroup name="dotnetnuke">
<section name="data" type="DotNetNuke.ProviderConfigurationHandler, DotNetNuke" />
</sectionGroup>
<section name="exceptionManagement" type="Microsoft.ApplicationBlocks.ExceptionManagement.ExceptionManagerSectionHandler,Microsoft.ApplicationBlocks.ExceptionManagement" />
</configSections>

<!-- Sql Server connection string for support of pre DNN 2.0 Private Assemblies
The new connection string (for DNN 2.0) is in the section dotnetnuke (providers) -->
<appSettings>
<add key="connectionString" value="Server=lwda787.xxxx.net;Database=xxxx;uid=xxxx;pwd=xxxx;" />
</appSettings>

<system.web>

<!-- set debugmode to false for running application -->
<compilation debug="false" />

<!-- permits errors to be displayed for remote clients -->
<customErrors mode="Off" />

<!-- Forms or Windows authentication -->

<!--<identity impersonate="false"/>-->
<authentication mode="Forms">
<forms name=".DOTNETNUKE" protection="All" timeout="60" />
</authentication>
<!--
<identity impersonate="true"/>
<authentication mode="Windows">
</authentication>
-->

<!-- allow large file uploads -->
<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="8192" />

<!-- GLOBALIZATION
This section sets the globalization settings of the application.
Utf-8 is not supported on Netscape 4.x
If you need netscape compatiblity leave iso-8859-1.
UTF-8 is recommended for complex languages
-->
<globalization culture="en-US" uiCulture="en" requestEncoding="UTF-8" responseEncoding="UTF-8" fileEncoding="UTF-8" />
<!--<globalization culture="en-US" uiCulture="en" fileEncoding="iso-8859-1" requestEncoding="iso-8859-1" responseEncoding="iso-8859-1"/>-->

<!-- page level options -->
<pages validateRequest="false" enableViewStateMac="true" />

</system.web>

<dotnetnuke>
<data defaultProvider="SqlDataProvider" >
<providers>
<clear/>
<add name = "SqlDataProvider"
type = "DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider"
connectionString = "Server=lwda787.servidoresdns.net;Database=xxxx;uid=xxxx;pwd=xxxx;"
providerPath = "~\Providers\DataProviders\SqlDataProvider\"
objectQualifier = ""
databaseOwner = "xxxx"
/>
<add name = "AccessDataProvider"
type = "DotNetNuke.Data.AccessDataProvider, DotNetNuke.AccessDataProvider"
connectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;"
providerPath = "~\Providers\DataProviders\AccessDataProvider\"
objectQualifier = "DotNetNuke"
databaseFilename = "DotNetNuke.mdb.resources"
/>
</providers>
</data>
</dotnetnuke>
<exceptionManagement mode="on">
<!-- The fileName attribute below should always have a ".resources" extension so it cannot be downloaded from the web -->
<publisher assembly="DotNetNuke" type="DotNetNuke.XMLExceptionPublisher" fileName="Exceptions.xml.resources" include="*" exceptionFormat="xml" />
</exceptionManagement>
</configuration>
cjsmitty
Asp.Net User
Re: Error uploading10/27/2004 10:26:35 AM

0/0

Lordakira2 ,

Double check to see if all the files (namely all the '.dll's') are indeed on the server. The error you are getting is normaly caused by a missing '.dll'.
~Chris

Net Data Design
706Horsman.us
Lordakira2
Asp.Net User
Re: Error uploading10/27/2004 5:46:02 PM

0/0

thanks, I've fixed that but now I'm getting another error:

An error has occurred writing to the exception log. The permissions are not set properly on the log file or directory, or the log file has been marked as READ-ONLY

I'm not sure if this error is for the tables in the db or due to restrictions in the subfolders, ( I don't think is the last one, becuase I gave permsions for reading, writing, etc.. in the main folder)
cjsmitty
Asp.Net User
Re: Error uploading10/27/2004 6:39:18 PM

0/0

The log directory located "..\Portals\_default\Logs" , NEtwork Service or ASPNET need RWX rights...
~Chris

Net Data Design
706Horsman.us
Lordakira2
Asp.Net User
Re: Error uploading10/28/2004 7:06:19 AM

0/0

Thanks Chris, i think I'm going to kill the hosters, it was supposed that the permissions heritages from the main folder. Now, the next step until I can get the web online is to fix this new error(again):

Column 'HomeTabId' does not belong to table .
[ArgumentException: Column 'HomeTabId' does not belong to table .]
System.Data.DataRow.get_Item(String columnName) +120
DotNetNuke.PortalSettings.GetPortalSettings(Int32 TabId, Int32 PortalId) in C:\Downloads\Dotnetnuke\69neuronas\components\Configuration.vb:270
DotNetNuke.PortalSettings..ctor(Int32 tabId, Int32 PortalId) in C:\Downloads\Dotnetnuke\69neuronas\components\Configuration.vb:199
DotNetNuke.Global.Application_BeginRequest(Object sender, EventArgs e) in C:\Downloads\Dotnetnuke\69neuronas\Global.asax.vb:142
System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +59
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87

I've read in a post that in some sql configurations is needed to change Id by ID can be this the solution?
thanks
cjsmitty
Asp.Net User
Re: Error uploading10/28/2004 9:53:03 AM

0/0

Check that your web.config has 'databaseOwner = "dbo"', or the correct owner of the database objects. The error your getting can be caused by the database objects having a different owner that what is called in the web.config.
~Chris

Net Data Design
706Horsman.us
6 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
PHP Solutions, Dynamic Web Design Made Easy: Dynamic Web Design Made Easy Authors: David Powers, SpringerLink (Online service, Pages: 0, Published: 2006
Flickr Mashups Authors: David Wilkinson, Pages: 419, Published: 2007
Beginning Ajax with PHP: From Novice to Professional Authors: Lee Babin, Pages: 253, Published: 2007
PHP and MySQL Web Development Authors: Luke Welling, Laura Thomson, Pages: 871, Published: 2003
Advanced PHP for Web Professionals Authors: Christopher Cosentino, Pages: 339, Published: 2003
Internet Programming with Visual Basic Authors: Budi Kurniawan, Pages: 521, Published: 2000
CGI Programming with Perl Authors: Scott Guelich, Shishir Gundavaram, Gunther Birznieks, Pages: 451, Published: 2000
Java Servlet Programming Authors: Jason Hunter, William Crawford, Pages: 753, Published: 2001
Beginning PHP and Oracle: From Novice to Professional Authors: W. Jason Gilmore, Bob Bryla, Pages: 763, Published: 2007

Web:
Joomlatools • View topic - Error Uploading. - Directory problem ... I've had the error message "error uploading. directory problem" with DOCman 1.4 RC3, debugged the code and found the solution - it is a bug ...
WordPress › Support » HTTP Error Uploading Images HTTP Error Uploading Images (1 post). gta4onlineguide Member Posted 1 week ago # . Hi,. When I go to write a new post and upload an image I choose my files ...
error uploading images | Gallery I have some weird issues uploading to my gallery. In many cases, uploads will work ok (usually I upload using the Adobe Lightroom gallery2 plugin), ...
Re: [Help-gnunet] Error uploading file Re: [Help-gnunet] Error uploading file. Christian Grothoff Fri, 16 Dec 2005 19: 50:30 -0800. On Friday 16 December 2005 12:00 pm, David Kuehling wrote: > Dec ...
Error uploading files with php - HowtoForge Forums | HowtoForge ... Error uploading files with php Programming/Scripts.
WordPress IO Error uploading Images | Lancelhoff.com Sep 12, 2008 ... IO Error Uploading Images in WordPress. When browsing a local drive for a picture to upload, you may encounter the: IO error. ...
Using Moodle: Error uploading user CSV file When I try to upload the csv file I get an error saying ""username" is ... Re: Error uploading user CSV file. by dan roggenkamp - Tuesday, ...
Joomla! • View topic - "There was an error uploading this file to ... Post subject: "There was an error uploading this file to the server." Post Posted: Thu Oct 23, 2008 3:26 am. Joomla! Apprentice. Joomla! Apprentice. Offline ...
Recently active topics in SlideShare tagged with error uploading mp3 Find answers using people-powered customer service & support for SlideShare.
ERROR UPLOADING VIDEO - Publishing Trouble | Google Groups Local: Mon, Oct 27 2008 8:32 am. Subject: ERROR UPLOADING VIDEO ... Upon attempting to upload a video, I am receiving this error message: ...

Videos:
how to upload vids from windows movie maker (vista) tutorial for uploading probs
Youtube Upload Error - Connection Interrupted/Reset Are you having problems uploading your videos to Youtube? When you try to, does it say that the connection has been reset or interrupted or that the ...
Moodle Quiz Upload Error: A by product of user error I made an error in the formatting the GIFT questions and lo! Moodle complained. Lesson learned. Keep the GIFT formatting clean.
Uploading error on YouTube Correct video format , correct video size , cleaned out my cache files ,tried firefox and internet explorer and turned off any firewall running and ...
how to fix http error on word press how to fix http error for uploading media files wordpress to get the zip file go to www.learnaniche.com/cool-tools
Let's Play Mario's Golden World [3] Sorry for the error uploading guys heres the upload hope you enjoy it.
Reptillia Rock Band A video of Albel and DemonLord playing Rock Band. Albel is playing Guitar on the Left, and DemonLord is playing Drums on the right.[br] [br] This is...
"Destiny Calling" Samsung Upstage (Directed By Logan Roos) By the Roos brothers from Boulder, Colorado. Featuring their great grandma, 88 years young Earline Jeffress. Thanks to Everybody For All Your Support...
Shurlohori 2006 l Shurlohori ( ATLANTA BASED BANGLADESHI STUDENT ASSOCIATION) performed in 26th march. Name of the performance is Prottashar Alo. First dance she je bo...
"Let's Rock": Pre-Event Ideas I had an error uploading the first time, so I dont care to put much information in this box this time :)




Search This Site:










adding roles that can update caledar, news, photos etc...

disabling the web server controls inside the div tags

dynamic theme example

web deployment project path problem

get userid when createuserwizard1_createduser()

error editing users

errors compiling dotnetnuke

read this after first installing the portal

how can imanaging db transactions between asp pages...

need urgent help

faster pickup...

listbox order of items is changes automatically on select

improving the comment experience

visual studio application

adding an ok/cancel confirmation box

pass username iframe but with more security

error solpartmenu 1.3.0.6 and dnn 2.1.2

no post back

what have i done?

embed an .rtf in the project - pull it up in code, replace keywords... what to use?

seem too many steps to load my first login page

help ??

running a nightly job

cssselectorclass doesn't validate

5 exceptions for breakfast--i don't understand any of them, but i need help!

n-tier

who can convert this asp page to asp.net page?

where to check if cookie exists?

sitemappath control in master page

how do i test for double quotes in a regular expression?

 
All Times Are GMT