PDA

View Full Version : لاگین نشدن در سایت روی هاست



jigily
دوشنبه 17 مهر 1391, 13:28 عصر
من از لاگین خود asp استفاده می کنم... و دیتابیس مربوط به اون را بک آپ گرفتم و توی سایتم restore کردم و
توی وب کانفیگ مثل بقیه دیتابیس هام براش connectionstring به صورت زیر نوشتم ...

<add name="ASPNETDBConnectionString" connectionString="Data Source=.\SQL2008R2;Initial Catalog=myasp;User ID=myuser;Password=">

و اینکه من صفحه ای به نام login ندارم. و اینکه حتی موقع ساختن کاربری هم باز همین خطا را میده.
حالا میخوام بدونم این خطایی که میده چیه؟
Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".

<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="Off"/> </system.web></configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web></configuration>

aliblue
دوشنبه 17 مهر 1391, 14:37 عصر
این خطایی که گذاشتین یه خطای عمومی هست یعنی برای همه خطا ها اینو نشون میده.برای این که جزئیاتش رو ببینی باید همونطور که خودش هم گفته داخل فایل web.config ، بری و customErrors mode="Off" قرار بدی.

jigily
دوشنبه 17 مهر 1391, 16:12 عصر
Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed.

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.

SQLExpress database file auto-creation error:


The connection string specifies a local Sql Server Express instance using a database location within the application's App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database:


If the application is running on either Windows 7 or Windows Server 2008R2, special configuration steps are necessary to enable automatic creation of the provider database. Additional information is available at: http://go.microsoft.com/fwlink/?LinkId=160102. If the application's App_Data directory does not already exist, the web server account must have read and write access to the application's directory. This is necessary because the web server account will automatically create the App_Data directory if it does not already exist.
If the application's App_Data directory already exists, the web server account only requires read and write access to the application's App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the application's App_Data directory. Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the web server account's credentials are used when creating the new database.
Sql Server Express must be installed on the machine.
The process identity for the web server account must have a local user profile. See the readme document for details on how to create a local user profile for both machine and domain accounts.

jigily
دوشنبه 17 مهر 1391, 17:26 عصر
کسی نیست جواب بده