Error in Publishing a page in Tridion? [closed] - tridion

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using Tridion 2011. The problem is- whenever i try to publish a page,its publishing gets failed. When I checked Publish Transaction, it shows that publishing is getting failed in Deployment phase.
Can anyone suggest what might be the issue and how to correct it?
Thanks.

There can be literally a million reasons why deployment fails:
Database is not connected
Database is mis-configured
Ran out of disk space
Password is wrong
User running deployer doesn't have permissions to write to file system
and many many more.
The easiest way to figure out what's wrong is to look at the logs that your deployer provides, you're likely to find the error in cd_core_.log or cd_deployer_.log. Check logback.xml for the location of these files.
If you can get the error from these files and post it here we may have better suggestions for you.

Try giving permissions to user -NetworkService on folder where the package is deployed.
Also could you please specify the detailed error?

Related

How to create a new R workspace [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I tried resetting my R using the rm comand but now it does not recognize the csv import code. I know the code is right because I gave up and started using my laptop. However, now my R on my desktop is completely useless and I'd rather it not be that way. I have deleted and reinstalled R multiple times and it still refuses to work. Any suggestions?
There is potential for corruption of the default saved workspace file which is named .Rdata. In both Windows and MacOS, this file is by default invisible (aka a dot-file or system-file). The default history file, .Rhistory is also susceptible to corruption. If this is your problem you need to use you system functions from the command line to delete to corrupt files and then restart R.

adding dll to project in Visual Studio [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I added dlls. My project get's updated. But My team could not get the updatesfrom Source control. What should I do? Please help
I'm assuming you mean that the project isn't updated in source control.
Are you sure you saved your project's changes? Use Ctrl+Shift+S to save everything (including solution/project files)
Try committing again then. Check the log in your source control tool to make sure that the project files were actually updated in the repository

Is it pages will compile in server? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I have been asked these question in interviews...
Is it pages will compile in server?
In server pages will compile or execute?
When application object will create?
Can anyone explain them in detail...
Is it pages will compile in server?
Yes the code behind compiles on server with the first call and product dlls.
In server, pages will compile or execute?
After the pages have been compiled on dlls, on every call the system use the dll + aspx to create the page. You can call it execution, maybe not of the page but of the pool.
Actually the pool, use the strings-html that find on aspx, with the dll of the page that is used to make the cycle of an aspx page and create the final html
When application object will create?
The application object will created when you start the WWW service and signal the Application_OnStart, one object per pool, and is stop when system finds the app_offline.htm, or you close the WWW service and signal the Application_OnEnd.

password protect asp.net application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have built an ASP.NET application that needs to be password protected. This application will be installed on multiple offline computers, and we need to make sure that when being installed it requires a password. But even if it requires a password, someone can easily copy the database and the published folder and duplicate the application on their system right?
I need a way to prevent this. Any ideas? It should only work on laptops that we have installed it on.
You could create a licensing tool like any other client app. Check the license key during app startup and occasionally during the runtime. Look at this post for ideas: Protect .NET code from reverse engineering?

What is the architecture of BlogEngine.net extension manager? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was just wondering that what is the architecture of blogengine.net extension manager ?
How it loads the extension dynamically, how can I use same kind of functionality in my web applications ? so that every time i just create one class and corresponding page then just plug into the website.
Moreover I am interested to know the architecture as I didnt find any article or tutorial on it.
Any help would be appreciable.
You can see for yourself the code is on codeplex
You can read about what it is and how it works in the wiki docs.
Blogengine uses reflection to find and instantiate types attributed as "extension" and extensions itself use event listeners to communicate with core library. Extension manager is basically API and admin front-end for all extensions running on the blog.
Maybe the Plugin Pattern, have a look here how this works..

Resources