Skip to main content
 

Developers Blog

Go Search
Home
Getting Started
Points to Share
Developers Blog
More About Sharepoint360
  

Categories
WebParts
Features
Other Blogs
Points To Share
TechCenter > Developers Blog > Posts > Free WSS Copy and Paste V1.0 is here!
Free WSS Copy and Paste V1.0 is here!
Over the years our team has often been asked, "Isn't there an easier way to move documents around in SharePoint?".
 
The truth is moving between libraries and sites can be a hassle. Our development team has anwsered the problem with this easy to use feature. Users can now access copy, cut and paste from the document drop down.
 
Please let us know what you think by adding your comments.
 
Thanks,
Ricardo Flores
SP360 Development
 

Comments

Larry Milask

Got this message when trying to deploy solution:

This solution contains no resources scoped for a Web application and cannot be deployed to a particular Web application.

Any ideas?

lmilask@ideatech.com
at 2/1/2008 12:24 PM

Todd

Here is what I get when I run "stsadm -o deploysolution -name sp360.copyandpaste.wsp –url <SiteURL> –immediate"

: This solution contains no resources scoped for a Web application and cannot be deployed to a particular Web application.
at 2/4/2008 1:00 PM

Romero

Quick question (perhaps should be obvious to me),

Noticed that it indicates that it is a WSS component and references that installation process.

Does it work on SPSt 2003?


at 2/19/2008 7:45 AM

Charlieg

I just installed your cut and paste on to my sharepoint site.  I like the features very much.  It even will copy a folder if it has one item in it.  but I think that that might be a bug rather than a feature.

At first I appreciated the message boxes that put up to tell me that the paste was completed but or there was nothing to paste.  But I think that it might be better eliminate or be able to turn off the message boxes in the next version.

Great Job.  This utility is very useful. keep up the good work and Thanks

Charlieg
at 2/26/2008 11:33 AM

Kate Kneafsey

I'm getting the following error using this solution:


An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file.
at 2/26/2008 11:37 AM

Restrict Copying

Hi,

Is there a way to restrict the copy feature but retain the cut and paste?
at 3/4/2008 7:31 PM

Ty

I installed the WSS Copy and Paste and I'm receiving an error when attempting to copy/cut a file.

"An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file. "

Any ideas?
at 3/13/2008 7:51 PM

Ricardo Flores

Sorry Larry Milask and Todd

this is the line you have to run after the solution is installed

stsadm -o deploysolution -name sp360.copyandpaste.wsp  –immediate

SharePoint360 - Sr. Software Developer
System Account at 4/3/2008 11:48 AM

Ricardo Flores

Romero, only works on WSS 3.0 because is a feature, WSS 2.0 (2003) does not allow to install and deploy features

SharePoint360 - Sr. Software Developer
System Account at 4/3/2008 11:53 AM

Ricardo Flores

Thanks Charlieg, we will work on these messages on the next version.

SharePoint360 - Sr Software Developer
System Account at 4/3/2008 11:58 AM

Ricardo Flores

Kate Kneafsey, this is a bug we are working on, this happens when you copy and paste a subfolder to the parent folder

SharePoint360 - Sr Software Developer
System Account at 4/3/2008 12:00 PM

Ricardo Flores

Kate Kneafsey, this is a bug we are working on, this happens when you copy and paste a subfolder to the parent folder

SharePoint360 - Sr Software Developer
System Account at 4/3/2008 12:02 PM

Parik Chokshi

When I try to paste, I get 404 File Not Found. Please help
at 4/16/2008 12:44 PM

Ricardo Flores

Parik Chokshi, first make sure the feature is install correctly, un order to check this, Deactivate the feature and activate it again This will add all required files to the site collection root.

SharePoint360 - Sr Software Developer
System Account at 4/18/2008 2:59 PM

Osky

I installed and I got this error whenever I try :

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: Code blocks are not allowed in this file.

Source Error:


Line 9:  <h2>Copy and Paste</h2>
Line 10:
Line 11: <script runat="server">
Line 12:    
Line 13:     /*
 

Source File: /CopyAndPasteModule.aspx    Line: 11


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42
at 5/14/2008 9:17 PM

Ricardo Flores

Osky, this is a common situation when you modify the page with SharePoint Designer.

  There is two way to solve this.
1 Is to reset the page, “Reset to Site Definition” option on SharePoint Designer
2. Allow code blocks to run on this pages. Add this code to Web.config.

<PageParserPaths>
                <PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true"/>
 </PageParserPaths>

SharePoint360 - Sr Software Developer
System Account at 5/16/2008 9:36 AM

Osky

Ricardo,
It works!!!!
Thanks a lot
at 5/18/2008 7:05 PM

Clif Dunaway

I am also getting this error any time I try to copy something:


An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file.
at 5/29/2008 12:57 PM

Raj

I have deployed Copy and Paste, I can copy a document but when i try to paste it takes me to CopyAndPasteModule.aspx
Then nothing happens
at 6/3/2008 11:42 AM

kelz1004

Has this been fixed.  I am trying to copy from the parent not a lower level.
 
An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file. 
 
at 6/18/2008 11:00 AM

Marlon

stsadm.exe –o addsolution –filename C:\SPoint\SP360.CopyAndPaste.wsp. When running this command I keep on getting a command line error. What is it that I'm doing wrong?
at 6/25/2008 12:14 AM

mohsin

hi, i also get 404 File Not Found when i do a paste. i deactivated it and activated it again. still does not work.
at 7/17/2008 2:09 AM

Ricardo Flores

Sorry everybody for the delay to respond your question.
 
Clif i did provide information to solve this issue on my previous comment.

This is the solution.
Osky, this is a common situation when you modify the page with SharePoint Designer.

  There is two way to solve this.
1 Is to reset the page, “Reset to Site Definition” option on SharePoint Designer
2. Allow code blocks to run on this pages. Add this code to Web.config.

<PageParserPaths>
                <PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true"/>
 </PageParserPaths>

Thanks.


SharePoint360 - Sr Software Developer
at 7/23/2008 8:14 AM

Ricardo Flores

Raj.

This is a known issues, this happen when you copy and paste from a folder to a root Document library.

this issue will be fixed on the next release

SharePoint360 - Sr Software Developer
at 7/23/2008 8:21 AM

Ricardo Flores

kelz1004..

This is not a copy and paste feature error, this is a sharepoint security message, to fix this please refer to previous comments.

SharePoint360 - Sr Software Developer
at 7/23/2008 8:25 AM

Ricardo Flores

Marlon.

if you can provide the error message i will give you a detail solution for this issue.

Probably is because, if you have not copy stsadm.exe to c:\windows\system32, you must run the stsadm.exe command from SharePoint bin folder, Coping the file to the c:\windows\system32 folder will allow you to run stsadm.exe commands from c:\

"C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN"

SharePoint360 - Sr Software Developer
at 7/23/2008 8:39 AM

Ricardo Flores

mohsin

would you please provide more information about your deployment

Thank you

SharePoint360 - Sr Software Developer
at 7/23/2008 8:47 AM

John K

I was getting the error:

An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file. 

I worked the mods to web.config as posted earlier:

<PageParserPaths>
                <PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true"/>
 </PageParserPaths>

Now it seems to work fine.

I notice that "Cut" does not delete the document until it is pasted somewhere else.

I also notice that after "paste" the document cannot be pasted a second time to a second location.

I would also suggest suppressing the "paste" icon in the title bar unless there is a document on the clipboard to be pasted.

In all, this is a great solution.

Thanks!
JK
at 8/1/2008 8:57 AM

Nick

I am also getting a 404 error when pasting - i have deactivated and reactivated the solution.  I have retracted, and redeployed the solution.  I am currently running a single server farm on win 2003 x64.
at 9/16/2008 8:05 AM

JSmith

I have a document library in a sub-site (portal.company.com/site_a) from where I copied a subfolder, and tried to paste into a subdfolder within a top-level site (portal.company.com/sites/site_b) document library.

However, all I am getting is a pop-up saying 'No items to paste'

Help!!
at 9/18/2008 11:16 AM

Patrick

We have a Dutch version of MOSS Does it works on other languages
at 10/5/2008 11:25 AM

Greg Hart

Also getting paste error.  Have tried deactivating and activating.  Same issue.  Have not seen any update to this issue since 9/16/2008.  Please advise.

at 11/19/2008 5:47 PM

OBO

Hi,
I also encounter the 404 issue when pasting. Is it because I'm running a non US version of WSS (WSS v3 french) ?
Any help would be appreciated. :-)
at 12/2/2008 12:14 AM

Kundan Ghimire

It worked in my dev environemnt but in my prod environment it have strange behavious . When ever I do the paste it will not paste and will have this message
Copy and Paste

Destination:http://nasharepoint/sites/comops/VaxShare
/sites/comops/VaxShare/Shared Documents/Hall of Honor Rules/2008 Hall of Honor Rules DDRA f.doc
http://nasharepoint/sites/comops/VaxShare
/sites/comops/VaxShare/Shared Documents/Powerpoint Templates

This is the web address I will be redirecting when i click on paste

http://nasharepoint/CopyAndPasteModule.aspx?toolbar::{2f8bfab5-e197-4761-aa55-26bab6698dcd}::http://nasharepoint/sites/comops/VaxShare::http://nasharepoint/sites/comops/VaxShare/Shared%20Documents/Forms/AllItems.aspx?RootFolder=%2fsites%2fcomops%2fVaxShare%2fShared%20Documents%2fPowerpoint%20Templates&FolderCTID=&View=%7bB824D66D%2dD076%2d40FF%2dA425%2d75B4B912D691%7d
Any Idea

at 12/3/2008 10:36 AM

Ricardo Flores

John K

We are currently working on the next release of copy and paste for WSS and MOSS.

Thank you for all you suggestions.


SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 11:16 AM

Chris

It works in my main site that is http://nasharepoint perfectly but when I tried to ue it in my site collection
http://nasharepoint/sites/comops it does not work it give me path
Copy and Paste
Destination:http://nasharepoint/sites/is
/sites/is/Shared Documents/create site by program.txt
http://nasharepoint/sites/is
/sites/is/Shared Documents/Doc1

Any Idea
at 12/3/2008 11:22 AM

Ricardo Flores

Nick

I will require more information, usually this happens because the Feature is not deploy

Just for testing set Web.config trust level to full, and let me know if works

<trust level="Full" originUrl="" />


SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 11:29 AM

Ricardo Flores

JSmith

base on the URL path, you have a MOSS installation?

this Feature was designed for WSS only, but we are currently working on the MOSS version

Thanks

SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 11:33 AM

Ricardo Flores

Patrick

This Feature works on WSS only, i will let everybody knows by email when the MOSS version or the new WSS version are out

Thanks

SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 11:36 AM

Ricardo Flores

Greg Hart

See a previous post

Thanks

SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 11:37 AM

Ricardo Flores

OBO

I have not try installing the feature on a different language, check the previous post and let me know if works for you

Thanks

SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 11:56 AM

Ricardo Flores

Kundan Ghimire

is this MOSS?

SharePoint360 - Sr Software Developer
Ricardo Flores at 12/3/2008 12:01 PM

Greg Hart

Hello,

I was hoping I would at least get the benefit of the doubt that I had read all the previous posts before posting my issue.  I did state that I tried to activate and deactive.  I have also removed and reinstalled the solution.    Any other thoughts? 

When I got to the library:

http://<servername>:90/sites/gregtest/Test%20Lib/Forms/AllItems.aspx

and hit the paste, I get the 404 error and the URL changes to:

http://<servername>:90/CopyAndPasteModule.aspx?toolbar::{f1dd09f3-1c11-49e9-9b50-2cee24166cc4}::http://<servername>:90/sites/gregtest::http://cafou01svs2k8vm:90/sites/gregtest/Test%20Lib/Forms/AllItems.aspx
at 12/4/2008 8:07 AM

Cory

I am getting a 404 error when I paste????
at 12/4/2008 9:03 AM

Kundan

Yes this is MOSS
at 12/4/2008 9:33 AM

susan mccoy

We have deployed the cut/past feature as a solution and can see it listed in Central Administration>Operations>Solution Management.

However, I cannot see it listed in Home > Site Settings > Site Features to activate.

What did we do wrong? :)
at 12/8/2008 10:54 AM

Ricardo Flores

Greg Hart

I think your problem is on  the URL, try assigning a host header in IIS instead of using the server name and port.

Thanks

SharePoint360 - Software Development Manager
Ricardo Flores at 12/8/2008 11:36 AM

Ricardo Flores

Cory

i need more information about your deployment.

if was install on WSS or MOSS?

Thank you

SharePoint360 - Software Development Manager
Ricardo Flores at 12/8/2008 11:38 AM

Ricardo Flores

Kundan

this Feature was designed for WSS only, but we are currently working on the MOSS version, i will post as soon as the feature is ready

SharePoint360 - Software Development Manager
Ricardo Flores at 12/8/2008 11:46 AM

Paul Noonr

Please add me to the email list when a MOSS version of this is available.

Quick question: does the Paste function retain all metadata and version history?
at 1/13/2009 3:54 PM

Tuoc

I'm getting 404 error on when doing a paste in Site Collection but not at the Central Administration site.
at 1/24/2009 9:43 PM

panoone

When you say WSS only, does this mean it can be deployed on MOSS but can only be activated on WSS site templates?
at 1/26/2009 5:59 PM

David More

can you copy and paste a file to same location? For example:
copy doc1.doc to test folder and paste doc1.doc to test folder and I should have:
doc1.doc
doc1 - copy.doc

under test folder
at 2/5/2009 9:22 AM

James

this feature suddenly stopped working in one site collection, but works fine in another site collection.  I am running WSS 3.0.

any information to get it working again?
at 3/16/2009 11:37 AM

Michel

First time we did get the error message : An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file.
We did copy the line to the web.config file
<PageParserPaths>
                <PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true"/>
 </PageParserPaths>

If we now copy a file and paste it we get COPY AND PASTE in bold on our screen

Any ideas?
at 4/1/2009 12:14 AM

John

WRT to query from Paul Noonr on 1/13/09, I tried to use this feature to move a document with an extensive version history and only the latest version was moved.  This would be a GREAT solution IF it added the ability to move all the metadata and version history along with the document.  There are a lot of "develop this yourself" posts around the web with code that explains how to parse the version history.  I'd like to strongly encourage the developers to add that functionality (and save me the time of creating a SharePoint development environment and figuring out how to create features like this!)
at 5/1/2009 8:56 AM

Richard

Excellent work - saved our staff some serious time. Looking forward to the MOSS version. If I could be included in the list for updates. :)
at 5/7/2009 4:08 AM

Peter

Great. But finally we are using the SPSProfessional Cut/Copy/Paste that also copy metada information.
at 6/11/2009 11:09 AM

Jouni

I have deployed this feature on my web application and it appears to work fine, but I think I have a permission problem or I have deployed this somehow in a wrong place.

I have a default web application which wss 3.0 installation created. By default this site has a wrong language and to solve this I created a lower level site with a language that I wanted. URL http://server/site. I ran the stsadm commands and activated it from the upper level site (default site) "site collection features".(lower level site doesn't have that). For the common users I have denied access to the main site http://server for comfort and safety reasons. Only sharepoint administrators have access to it. In lower level site I have a document library, but only sharepoint administrators can use this feature in there and for the common users application shows an error: access denied. Could you show me the proper way to do this?
at 7/2/2009 4:11 AM

Phil A

I was getting the error:

An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file. 

I worked the mods to web.config as posted earlier:

<PageParserPaths>
                <PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true"/>
 </PageParserPaths>

I changed the web.config to include the PageParserPaths as specified, i now get the following error, any clue as to what i need to do next?

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

Cannot complete this action.

Please try again.
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.Runtime.InteropServices.COMException: Cannot complete this action.

Please try again.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

Stack Trace:


[COMException (0x80004005): Cannot complete this action.

Please try again.]
   Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocId, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder) +0
   Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocId, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder) +215

[SPException: Cannot complete this action.

Please try again.]
   Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocId, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder) +256
   Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage, Byte& verGhostedPage, String& siteRoot, Guid& siteId, Int64& bytes, Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean& ObjectIsList, Guid& listId) +1552
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean& fGhostedPage, Byte& verGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes) +692
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetFileForRequest(HttpContext context, SPWeb web, Boolean exclusion, String virtualPath) +209
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.InitContextWeb(HttpContext context, SPWeb web) +79
   Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) +364
   Microsoft.SharePoint.WebControls.SPControl.GetContextWeb(HttpContext context) +25
   Microsoft.SharePoint.WebControls.SPControl.GetContextSite(HttpContext context) +27
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetSiteForRequestFile() +33
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean& fGhostedPage, Byte& verGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes) +919
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformation(HttpContext context, String path, Boolean impersonate, Boolean& fGhostedPage, Byte& verGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& level, String& masterpageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData) +132
   Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetWebPartPageData(HttpContext context, String path, Boolean throwIfFileNotFound) +773
   Microsoft.SharePoint.ApplicationRuntime.SPVirtualFile.GetFile(String virtualPath, Boolean fetchContent) +78
   Microsoft.SharePoint.ApplicationRuntime.SPVirtualFile.GetFile(String virtualPath) +30
   Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetFile(String virtualPath) +172
   System.Web.Hosting.VirtualPathProvider.GetFile(String virtualPath) +18
   System.Web.Hosting.VirtualPathProvider.GetFileWithCheck(String virtualPath) +11
   System.Web.FormatterWithFileInfo.GetSourceFileLines(String fileName, Encoding encoding, String sourceCode, Int32 lineNumber) +229
   System.Web.DynamicCompileErrorFormatter.get_MiscSectionContent() +926
   System.Web.ErrorFormatter.GetHtmlErrorMessage(Boolean dontShowSensitiveInfo) +818
   System.Web.HttpResponse.WriteErrorMessage(Exception e, Boolean dontShowSensitiveErrors) +645
   System.Web.HttpResponse.ReportRuntimeError(Exception e, Boolean canThrow, Boolean localExecute) +271
   System.Web.HttpRuntime.FinishRequest(HttpWorkerRequest wr, HttpContext context, Exception e) +338

 


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
at 8/12/2009 8:59 AM

Greg Palmes

Hello,

thanks for providing this. It installs and works pretty clean, BUT it doesn't seem to maintain version history.

I know it's free, but do you have a "pay for" version that has this more robust capabilities?

Thanks,
Greg
at 8/20/2009 3:16 PM

Jake

I am running WSS 3.0.  I had already been running WSS 2.0 and upgraded my existing Sharepoint sites to the new 3.0.  I have installed CopyandPaste and it is active.  I get Cut/Copy and the Paste command to show up on the different sites.  However everytime I try and run it I get the code block error: "An error occurred during the processing of /CopyAndPasteModule.aspx. Code blocks are not allowed in this file. "  I have tried your PageParserPaths and changed the trust level to full, but none of that works.  I did not create the Sharepoint site using Designer and have never ran Designer. 
So now what do I do??
at 10/13/2009 9:48 AM

Ricardo Flores

Jake, usually that is all you need

Did you try iisreset after changing web.config.?

Do you have a farm or only one front end? 


Thanks

SharePoint360 - Sr Software Developer
Ricardo Flores at 10/13/2009 2:51 PM

Ricardo Flores

Greg

On this version we are not maintain history, and we will wait until SharePoint 2010 to develop the new copy and paste with version control

sorry for that

Thanks

SharePoint360 - Software Developer Manager
Ricardo Flores at 10/13/2009 2:53 PM

Jake

I have tried 'iisreset' several times but it still does not work.  The reason for several times is I keep doing a minor change to the <PageParserPaths> that you say to do.  Since I am not a programer I am not sure of the indents, etc. in the 'web. config' file.  I also am not sure if there should be a space inbetween '="true"(space?)/>'.  I also am not sure just what you mean by 'farm or only one front end?'  I have a single copy of SBS 2008 running with WSS 3.0 and a single 'portal.????.com' with several 'portal.????.com/XXX' running.  If I was a little more sure about things I might get this running!!
By the way thank you for the support!!
at 10/14/2009 12:48 PM

Tyler

Can your Copy/Paste move list items to folders within that same list or does it just work on document libraries?
at 12/10/2009 2:02 PM

Isleme BEN ABDA

Thanks a lot !!
at 2/11/2010 2:41 AM

Andy

anyword on a sharepoint 2010 version of this tool?
at 8/18/2010 12:49 PM

Add Comment

Items on this list require content approval. Your submission will not appear in public views until approved by someone with proper rights. More information on content approval.

Your Name *


Body *


Email


If you want to receive updates about our free features, please provide your email. (email will not be post on this site)
Attachments