Drag & Drop or Duplicate layers from PSD to JPEG when creating action

Hey everyone,
I have been trying the last few hours to create an instagram Polaroid action for my JPEG files.
I have the picture, and i have the PSD file with a few layers such as virulence gradient map etc...
When creating the action, first I drag all the layers from my PSD to the JPEG file. Problem is, every time when i finish recording the action, photoshop doesnt seem to know or understand the layers i moved.
It keeps running, without copying the layers.
I tried to do it the other way around - recording - opening the PSD - dragging the JPEG (which this time worked)
but then, when saving the file, it cant be saved as JPEG, because i last modified the psd file. and it will not work when doing batch because i opened specific JPEG when recording.
I have no problem saving the PSD as PNG, then just running it which will work fine.
But problem is when flattening, then i just lost the layers which create the effect.
Any help?
Thanks

anyone?

Similar Messages

  • Text layers from PSD is converted as images when imported to Muse

    I want to import text layers from PSD files into Muse as text and not as images. Currently when I insert the text layers, they are converted into images. Is there a way to do this?

    Hi Jeffree, I have lot of content in my page and I need the same exact position of the text in my page. I am trying to automate it so that I can avoid copy paste error. Is there a way to make the psd text layer import to export as text in MUSE?
    Appreciate your help.

  • Duplicate Layers from Selection to Group

    I want to take the layers within a selection, copy only the portion of the the layer that is within the selection into a layer group but keep the layers from the selection separate when placed into the layer group ? I've been tinkering with how to do this for a while and I can't come to any solution !

    I want to cut the layers from the selection then copy those cut layers into a layer group, same as I said in my original post
    I've thought about another way of doing this, but for what I want to do, there is no other way, which gives me the control and flexibility yet saves some time.

  • A way to move layers from one file to another in actions?

    Ok, question for the gurus out there - rather than try to explain, I'll give you an example: Lets say I have a series of adjustment layers that I want to apply to a sequence of 40 images. The adjustments are in a layer group, and are saved as a separate file.
    I DON'T want to drag and drop them, I want to run an action that will copy the adjustments to each image- now I know I can save down each adjustment as a separate file, lets a curve (acv) a selective color (ahu) file and load THAT in as part of my action. But I don't want to do that either, because these adjustments will change and I want to easily re-render my changes on all 40 images in one step.
    I also don't want to use After Effects to do it, because my client doesn't own it. There used to be
    a way to move layers from one file to another in actions because I seem to remember doing it. The answer is not Duplicate Group either because that needs you to specify a destination file name.
    Is it possible to do this without scripting? I'm pretty sure it used to be because I seem to remember doing it, just cant remember HOW I did. Maybe I'm wrong about this though.
    Thanks and sorry for the long post, this has been baffling me for weeks.

    Thanks Ed, but as I explained above
    "I know I can save down each adjustment as a separate file, lets a curve (acv) a selective color (ahu) file and load THAT in as part of my action. But I don't want to do that either"
    What I want to know is is there a way to move adjustment layers from one file to another in an action. I know also that you can use the clipboard to move pixel layers, but I've yet to find a way to move adjustments.

  • Bridge: when I want to export from .psd to .jpeg the export window opens but the target (Ziel) window is empty, thus no target can be selected. This happens since a brigde shut down after "out of memory"

    Bridge: when I want to export from .psd to .jpeg the export window opens but the target (Ziel) window is empty, thus no target can be selected. This happens since a brigde shut down after "out of memory"
    Felix

    Not quite following your terminology.
    Möchten Sie es vielleicht mal auf Deutsch versuchen?

  • Issue with Drag/Drop of multiple rows from ListView

    I am working on a sample application with 2 list views i.e. players and team, and implement drop and drop such that players can be dropped from one list view to the other. Everything is working as expected when there is single selection model is enabled on the source list view. However, if I enabled Multiple selection model and drag 2 or more rows from source list view to target list view, seeing the following exception after the drop is completed.
    Exception:
    java.lang.IllegalArgumentException: Only serializable objects or ByteBuffer can be used as data with data format [subListPlayers]
      at com.sun.javafx.tk.quantum.QuantumClipboard.putContent(QuantumClipboard.java:513)
      at javafx.scene.input.Clipboard.setContent(Clipboard.java:230)
    1) What should be the DataFormat used in order to be able to drag and drop multiple rows? Looks like we do not have for Object type, so I have created the following one which does not solve the problem.
       private DataFormat dataFormat = new DataFormat("subListPlayers");
    2) I have made changes to support serialization on the data object which also does not seem to solve the issue. Tried by implementing Serializable interface as well as by implementing Externalize interface.
    Can someone please guide if there is an easy way to implement this behavior?
    Code:
    public class Player
       private String name;
       public Player(String name)
          this.name = name;
       public String getName()
          return name;
       public void setName(String name)
          this.name = name;
       @Override
       public boolean equals(Object o)
          if (this == o) return true;
          if (o == null || getClass() != o.getClass()) return false;
          Player player = (Player) o;
          if (name != null ? !name.equals(player.name) : player.name != null) return false;
          return true;
       @Override
       public int hashCode()
          return name != null ? name.hashCode() : 0;
    public class JavaFXDnDApplication extends Application
       private static final ListView<Player> playersListView = new ListView<Player>();
       private static final ObservableList<Player> playersList = FXCollections.observableArrayList();
       private static final ListView<Player> teamListView = new ListView<Player>();
       private static final GridPane rootPane = new GridPane();
       private DataFormat dataFormat = new DataFormat("subListPlayers");
       public static void main(String[] args)
          launch(args);
       @Override
       public void start(Stage primaryStage)
          primaryStage.setTitle("Drag and Drop Application");
          initializeComponents();
          initializeListeners();
          buildGUI();
          populateData();
          primaryStage.setScene(new Scene(rootPane, 400, 325));
          primaryStage.show();
       private void initializeListeners()
          playersListView.setOnDragDetected(new EventHandler<MouseEvent>()
             @Override
             public void handle(MouseEvent event)
                System.out.println("setOnDragDetected");
                Dragboard dragBoard = playersListView.startDragAndDrop(TransferMode.MOVE);
                ClipboardContent content = new ClipboardContent();
    //            content.putString(playersListView.getSelectionModel().getSelectedItem().getName());
                content.put(dataFormat, playersListView.getSelectionModel().getSelectedItems());
                dragBoard.setContent(content);
          teamListView.setOnDragOver(new EventHandler<DragEvent>()
             @Override
             public void handle(DragEvent dragEvent)
                dragEvent.acceptTransferModes(TransferMode.MOVE);
          teamListView.setOnDragDropped(new EventHandler<DragEvent>()
             @Override
             public void handle(DragEvent dragEvent)
    //            String player = dragEvent.getDragboard().getString();
    //            ObservableList<Player> player = (ObservableList<Player>) dragEvent.getDragboard().getContent(dataFormat);
                String player = dragEvent.getDragboard().getString();
                teamListView.getItems().addAll(new Player(player));
                playersList.remove(new Player(player));
                dragEvent.setDropCompleted(true);
       private void buildGUI()
    //      rootPane.setGridLinesVisible(true);
          rootPane.setPadding(new Insets(10));
          rootPane.setPrefHeight(30);
          rootPane.setPrefWidth(100);
          rootPane.setVgap(20);
          rootPane.setHgap(20);
          rootPane.add(playersListView, 0, 0);
          rootPane.add(teamListView, 1, 0);
       private void populateData()
          playersList.addAll(
                new Player("Adam"), new Player("Alex"), new Player("Alfred"), new Player("Albert"),
                new Player("Brenda"), new Player("Connie"), new Player("Derek"), new Player("Donny"),
                new Player("Lynne"), new Player("Myrtle"), new Player("Rose"), new Player("Rudolph"),
                new Player("Tony"), new Player("Trudy"), new Player("Williams"), new Player("Zach")
          playersListView.setItems(playersList);
       private void initializeComponents()
          playersListView.setPrefSize(250, 290);
          playersListView.setEditable(true);
          playersListView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
          playersListView.setCellFactory(new Callback<ListView<Player>, ListCell<Player>>()
             @Override
             public ListCell<Player> call(ListView<Player> playerListView)
                return new ListCell<Player>()
                   @Override
                   protected void updateItem(Player player, boolean b)
                      super.updateItem(player, b);
                      if (player != null)
                         setText(player.getName());
          teamListView.setPrefSize(250, 290);
          teamListView.setEditable(true);
          teamListView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
          teamListView.setCellFactory(new Callback<ListView<Player>, ListCell<Player>>()
             @Override
             public ListCell<Player> call(ListView<Player> playerListView)
                return new ListCell<Player>()
                   @Override
                   protected void updateItem(Player player, boolean b)
                      super.updateItem(player, b);
                      if (player != null)
                         setText(player.getName());

    Yeah, this is a pain. I filed https://javafx-jira.kenai.com/browse/RT-29082 a while back. Go ahead and vote for it if you are inclined...
    I think the issue in your case is that the observable list provided by MultipleSelectionModel.getSelectedItems() is not Serializable. So even if you make your Player class Serializable, the list itself isn't. The first thing I would try, I think, is to make Player implement Serializable and then pass in an ArrayList instead of the observable list. So you can do
    content.put(dataFormat, new ArrayList<Player>(playersListView.getSelectionModel().getSelectedItems()));
    and
    List<Player> player = (List<Player>) dragEvent.getDragboard().getContent(dataFormat);
    teamListView.getItems().addAll(player);
    If that doesn't work, a workaround is just to store the "dragged list" in a property:
    final ListProperty<Player> draggedPlayers = new SimpleListProperty<Player>();
    // Drag detected handler:
    content.putString("players");
    draggedPlayers.set(playersListView.getSelectionMode().getSelectedItems());
    // Drag dropped handler:
    if (dragboard.hasString() && dragboard.getString().equals("players")) {
         teamListView.getItems().addAll(draggedPlayers.get());
         draggedPlayers.set(null);

  • Can't drag, drop, or move icons from dock

    The issue exactly is that I can no longer move icons to the dock, remove them from the dock, reorder them, or delete them. The context menu still works fine, I just can't drag and drop. Furthermore, if I attempt to drag and drop from a stack, it reads the action as if I am trying to open the file.
    I'm running Yosemite 10.10.1
    Things I've tried so far:
    Repair disk permissions
    Repair ACL permissions
    Rebuild directories
    Relaunch dock
    Reset dock to defaults
    Rebooting/logging out (both fix the problem temporarily, however it returns within an hour of regular use)
    Trying to hunt down any extensions that might be causing issues...can't find anything (problem persists in guest account as well)
    Rebuild and repair kexts
    Cleaned out all caches
    Reinstalled OS X
    Wiped disk and performed clean install.
    I don't have anything installed that does any low level modifications (no third party antivirus or tweaking/tune up tools). For the life of me I can't figure this one out and it's really getting annoying to not be able to use my dock.

    Applications/Utilities/Terminal enter the command
    killall Dock
    Log out/in test. If it works okay, delete the .db from the desktop.
    If the Dock is the same, return the .db to where you got them from, overwriting the newer ones.
    If you prefer to make your user library permanently visible, go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Learned from leonie.

  • Moving layers from document to another when in TAB mode isn't possible.

    Hi there,
    why isn't it allowed to move a layer from one open document to another one when in the tabbed view? I can't drag&drop the layer on the doc's name in the tab row and have the layer appear in the document?
    Why?
    And, will this get fixed?
    Thanks a lot in advance, cheers,
    - L. Dubeda

    Wow! You made my day! I've been trying to figure this out for months and never tried dragging from the image vice the layer.
    I would add that once the image activates whose tab you are pointing at, you have to continue dragging the mouse pointer into the newly activated image to get the plus sign and then let go of the mouse to paste the layer.
    Also, computer speed makes a big difference in how fast this works. I have a faster PC and it only takes a fraction of a second for the second image to activate once I point at it's tab.
    It's wonderful to know how to do it, finally.
    Ric

  • HT2688 I don't want duplicate music from my husbands account when we homeshare

    My husband and I used to have an option at the bottom of itunes in home sharing where we could choose to see either all of each others music or songs we didn't have in our personal libraries. It made it so much easier because we didn't need to search through each others music for songs that each of us already had.  How come this feature is no longer available? I don't want duplicate songs in my iTunes but we each have music the other wants. Does anyone know if this option is gone for good or if something is wrong with our itunes accounts?

    The feature still exists, but you need to be logged in with the same Apple-ID on both computers.
    So as an example:
    Computer 1 logged in with Apple-ID [email protected]
    Computer 2 logged in with Apple-ID [email protected]
    If not, home sharing does not work

  • I SELECT A GROUP OF FILES AND GO TO IMAGE PROCESSOR TO CONVERT FROM PSD TO JPEG. THE IMAGE PROCESSOR DOES NOT APPEAR ONLY A BLANK PS SCREEN

    How do I find image processor? It does not appear when I go to, tools, photoshop, image processor?

    Double click the thumbnails you want in Bridge to open in Photoshop.
    You can also first open the Image Processor and select a folder that you keep your files in. You do not have to open them first.

  • Exception from HRESULT: 0x80131904 - Error when creating a team site

    Hi,
    I am a SharePoint Administrator. I have a SharePoint 2010 site collection that had been migrated successfully from MOSS 2007 2 years ago. This site collection has some custom solutions and is very large (~200GB).
    Everything works fine but since last week, I can NOT create any team site as subsite in this site collection. Error message is Exception from HRESULT: 0x80131904 
    I checked SP log and found some errors from SQL Server side:
    05.22.2014 08:30:33.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880i High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880k High at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) at Microsoft.SharePoint.Library.SPRequestInternalClass.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.Library.SPRequest.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.SPField.set_SchemaXml(String value) at Microsoft.SharePoint.SPList.FixFieldsFromColumnTemplate() at Microsoft.SharePoint.SPWeb.SyncNewLists() at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(String strWebTemplate) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.CreateSite() at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.RenderControl(HtmlTextWriter writer) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderPartContents(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderWebPart(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderZoneCell(HtmlTextWriter output, Boolean bMoreParts, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderWebParts(HtmlTextWriter output, ArrayList webParts) at Microsoft.SharePoint.WebPartPages.WebPartZone.Render(HtmlTextWriter output) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Page.Render(HtmlTextWriter writer) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryPage.Render(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_addgallery_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Incorrect syntax near 'FC7D0500'.' Source: '.Net SqlClient Data Provider' Number: 102 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'.' Source: '.Net SqlClient Data Provider' Number: 105 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 5586 Critical Unknown SQL Exception 102 occurred. Additional error information from SQL Server is included below. Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzku High ConnectionString: 'Data Source=ch01sw0482;Initial Catalog=SharePoint_Collaboration_GRDRO;Integrated Security=True;Enlist=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzkv High SqlCommand: 'BEGIN TRAN;UPDATE AllUserData SET nvarchar3 = REPLACE(nvarchar3, ''', '') WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET float2 = CASE WHEN ISNUMERIC(nvarchar3) = 1 AND nvarchar3 != '$' AND nvarchar3 != '.' AND nvarchar3 != ',' AND nvarchar3 != '+' AND nvarchar3 != '-' THEN nvarchar3 ELSE NULL END WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET nvarchar3 = NULL WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; COMMIT TRAN' CommandType: Text CommandTimeout: 0 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database d0d6 High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80131904 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    I also checked my SQL Server. The tempdb is ok. The content database is fine, have enough free space for data files and log file. 
    Here is log entries that are related to this error:
    05.22.2014 08:30:12.20 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://siteurl/_layouts/AddGallery.aspx) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:12.20 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/siteurl 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:12.22 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 90hv Unexpected Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before. Stack trace: at Microsoft.SharePoint.WebControls.ScriptLink.SharePointClientJs_Register(Page page) at Microsoft.SharePoint.WebControls.ScriptLink.InitJs_Register(Page page) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language) at Microsoft.SharePoint.WebControls.ScriptLink.Register(Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language, String uiVersion) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Page page, String strKey, String strFile, Boolean localizable) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterCore(Page page, Boolean defer) at Microsoft.SharePoint.WebPartPages.SPWebPartManager.RegisterOWSScript(Page page, SPWeb web) at Microsoft.SharePoint.WebPartPages.WebPartPage.FormOnLoad(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_addgallery_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:12.70 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Fields 88y1 Medium No document templates uploaded for list "$Resources:core,MasterPageGallery;" -- none found for list template "100". 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.08 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Creating Web test). Execution Time=4832.14849932044 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.37 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 85m6 Medium Applying web template 'STS#0' on web url 'http://siteurl/test' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.37 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 85m7 Medium Actual web template to apply to Url 'http://siteurl/test' is 'STS#0' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.37 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72h7 Medium Applying template "STS#0" to web at URL "http://siteurl/test". 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.86 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8l1c Medium Preparing 21 features for activation 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.87 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8l1d Medium Feature Activation: Batch Activating Features at URL http://siteurl/test 'AnnouncementsList' (ID: '00bfea71-d1ce-42de-9c63-a44004ce0104'), 'ContactsList' (ID: '00bfea71-7e6d-4186-9ba8-c047ac750105'), 'CustomList' (ID: '00bfea71-de22-43b2-a848-c05709900100'), 'DataSourceLibrary' (ID: '00bfea71-f381-423d-b9d1-da7a54c50110'), 'DiscussionsList' (ID: '00bfea71-6a49-43fa-b535-d15c05500108'), 'DocumentLibrary' (ID: '00bfea71-e717-4e80-aa17-d0c71b360101'), 'EventsList' (ID: '00bfea71-ec85-4903-972d-ebe475780106'), 'ExternalList' (ID: '00bfea71-9549-43f8-b978-e47e54a10600'), 'GanttTasksList' (ID: '00bfea71-513d-4ca0-96c2-6a47775c0119'), 'GridList' (ID: '00bfea71-3a1d-41d3-a0ee-651d11570120'), 'IssuesList' (ID: '00bfea71-5932-4f9c-ad71-1557e5751100'), 'LinksList' (ID: '00bfea71-2062-426c-90bf-714c59600103'), 'NoCodeWorkflowLibrary' (ID: '00bfea71-f600-43f6-a895-40c0de7b0117'), 'PictureLibrary' (ID: '00bfea71-52d4-45b3-b544-b1c71b620109'), 'SurveysList' (ID: '00bfea71-eb8a-40b1-80c7-506be7590102'), 'TasksList' (ID: '00bfea71-a83e-497e-9ba0-7a5c597d0107'), 'WebPageLibrary' (ID: '00bfea71-c796-4402-9f2f-0eb9a6e71b18'), 'workflowProcessList' (ID: '00bfea71-2d77-4a75-9fca-76516689e21a'), 'WorkflowHistoryList' (ID: '00bfea71-4ea5-48d4-a4ad-305cf7030140'), 'XmlFormLibrary' (ID: '00bfea71-1e1d-4562-b56a-f05371bb0115'), 'TeamCollab' (ID: '00bfea71-4ea5-48d4-a4ad-7ea5c011abe5'), . 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.94 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8l1f Medium Feature Activation: Batch Activated Features at URL http://siteurl/test 'AnnouncementsList' (ID: '00bfea71-d1ce-42de-9c63-a44004ce0104'), 'ContactsList' (ID: '00bfea71-7e6d-4186-9ba8-c047ac750105'), 'CustomList' (ID: '00bfea71-de22-43b2-a848-c05709900100'), 'DataSourceLibrary' (ID: '00bfea71-f381-423d-b9d1-da7a54c50110'), 'DiscussionsList' (ID: '00bfea71-6a49-43fa-b535-d15c05500108'), 'DocumentLibrary' (ID: '00bfea71-e717-4e80-aa17-d0c71b360101'), 'EventsList' (ID: '00bfea71-ec85-4903-972d-ebe475780106'), 'ExternalList' (ID: '00bfea71-9549-43f8-b978-e47e54a10600'), 'GanttTasksList' (ID: '00bfea71-513d-4ca0-96c2-6a47775c0119'), 'GridList' (ID: '00bfea71-3a1d-41d3-a0ee-651d11570120'), 'IssuesList' (ID: '00bfea71-5932-4f9c-ad71-1557e5751100'), 'LinksList' (ID: '00bfea71-2062-426c-90bf-714c59600103'), 'NoCodeWorkflowLibrary' (ID: '00bfea71-f600-43f6-a895-40c0de7b0117'), 'PictureLibrary' (ID: '00bfea71-52d4-45b3-b544-b1c71b620109'), 'SurveysList' (ID: '00bfea71-eb8a-40b1-80c7-506be7590102'), 'TasksList' (ID: '00bfea71-a83e-497e-9ba0-7a5c597d0107'), 'WebPageLibrary' (ID: '00bfea71-c796-4402-9f2f-0eb9a6e71b18'), 'workflowProcessList' (ID: '00bfea71-2d77-4a75-9fca-76516689e21a'), 'WorkflowHistoryList' (ID: '00bfea71-4ea5-48d4-a4ad-305cf7030140'), 'XmlFormLibrary' (ID: '00bfea71-1e1d-4562-b56a-f05371bb0115'), 'TeamCollab' (ID: '00bfea71-4ea5-48d4-a4ad-7ea5c011abe5'), . 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.95 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'MobilityRedirect' (ID: 'f41cc668-37e5-4743-b4a8-74d1db3fd8a4') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.97 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72ix Medium Not enough information to determine a list for module "mobile". Assuming no list for this module. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'MobilityRedirect' (ID: 'f41cc668-37e5-4743-b4a8-74d1db3fd8a4') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Feature Activation: Activating Feature 'MobilityRedirect' (ID: 'f41cc668-37e5-4743-b4a8-74d1db3fd8a4') at URL http://siteurl/test.). Execution Time=48.2382537445402 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75fb Medium Calling 'FeatureActivated' method of SPFeatureReceiver for Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053'). 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:19.31 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e1f High Failed to find the XML file at location '14\Template\Features\FacetedSearch\feature.xml' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:19.31 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8gru Medium Exception thrown while determining definition for Feature with ID '4ad6146d-6ada-4931-ab81-0e179de7008e': Microsoft.SharePoint.SPException: Failed to find the XML file at location '14\Template\Features\FacetedSearch\feature.xml' at Microsoft.SharePoint.SPXmlDocCache.GetGlobalXmlDocument(String pathTemplateRelativeXml, SPFeatureDefinition featdef) at Microsoft.SharePoint.Administration.SPFarmFeatureDefinitionContext.LoadFileAsXmlDocument(SPFeatureDefinition featdef, String featureRelativePath) at Microsoft.SharePoint.Administration.SPFeatureDefinition.EnsureGlobalDefinition() at Microsoft.SharePoint.Administration.SPFeatureDefinition.EnsureElementManifestList() at Microsoft.SharePoint.Administration.SPFeatureDefinition.GetElementDefinitions(CultureInfo ciElements) at Microsoft.SharePoint.SPElementProvider.QueryForElementsJoinOR[TElementType](List`1 lstdictAttrPatterns, List`1 lstfeatdefsOfInterest, List`1 listofOptionalElementsToQuery, CultureInfo ciElements, Int32 webUIVersion). Skipping this feature for element querying consideration. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:19.31 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Template Cache g09v Medium Caching global fields. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (List Creation: SitePages). Execution Time=2121.04722806949 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:21.33 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=261.695550691499 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:21.88 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (List Creation: SiteAssets). Execution Time=1697.65654573416 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:22.41 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72nz Medium Videntityinfo::isFreshToken reported failure. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:26.45 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData#1). Execution Time=3056.27083889153 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.14 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (DocId.ItemChangedInternal). Execution Time=5035.19776954892 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.14 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, Microsoft.Office.DocumentManagement.Internal.DocIdHandler)). Execution Time=5098.96313637627 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.25 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=86.6235792537878 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.78 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData#1). Execution Time=176.816606579887 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.95 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (DocId.ItemChangedInternal). Execution Time=438.837617630174 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.95 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, Microsoft.Office.DocumentManagement.Internal.DocIdHandler)#2). Execution Time=439.110557347372 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.02 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.02 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Feature Activation: Activating Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053') at URL http://siteurl/test.). Execution Time=10017.3097418806 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'RelatedLinksScopeSettingsLink' (ID: 'e8734bb6-be8e-48a1-b036-5a40ff0b8a81') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'RelatedLinksScopeSettingsLink' (ID: 'e8734bb6-be8e-48a1-b036-5a40ff0b8a81') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'SlideLibrary' (ID: '0be49fe9-9bc9-409d-abf9-702753bd878d') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.08 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'SlideLibrary' (ID: '0be49fe9-9bc9-409d-abf9-702753bd878d') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.08 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'BaseWeb' (ID: '99fe402e-89a0-45aa-9163-85342e865dc8') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'BaseWeb' (ID: '99fe402e-89a0-45aa-9163-85342e865dc8') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'ObaSimpleSolution' (ID: 'd250636f-0a26-4019-8425-a5232d592c01') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'ObaSimpleSolution' (ID: 'd250636f-0a26-4019-8425-a5232d592c01') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Feature Infrastructure 8e14 Medium Feature 'SlideLibrary' (ID: '0be49fe9-9bc9-409d-abf9-702753bd878d') was already activated at scope 'http://siteurl/test'. No further action necessary for this feature. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75fb Medium Calling 'FeatureActivated' method of SPFeatureReceiver for Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668'). 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.11 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.11 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Feature Activation: Activating Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668') at URL http://siteurl/test.). Execution Time=17.9978181584531 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.75 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Office Parser ey9c Medium Metadata parse dirty the file, Csi PreserveCellStorageStateInFfm skipped 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.75 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Office Parser ey9f Medium Metadata demote dirty the file, Csi PreserveCellStorageStateInFfm skipped 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72ix Medium Not enough information to determine a list for module "Default". Assuming no list for this module. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General tkmz Medium The WebPartOrder attribute is unspecified, a default of 1 will be used. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.19 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72h8 Medium Successfully applied template "STS#0" to web at URL "http://siteurl/test". 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.19 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Applying Named Web Template: STS#0). Execution Time=13810.9050172578 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:32.66 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=7.89876925698657 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880i High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880k High at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) at Microsoft.SharePoint.Library.SPRequestInternalClass.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.Library.SPRequest.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.SPField.set_SchemaXml(String value) at Microsoft.SharePoint.SPList.FixFieldsFromColumnTemplate() at Microsoft.SharePoint.SPWeb.SyncNewLists() at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(String strWebTemplate) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.CreateSite() at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.RenderControl(HtmlTextWriter writer) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderPartContents(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderWebPart(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderZoneCell(HtmlTextWriter output, Boolean bMoreParts, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderWebParts(HtmlTextWriter output, ArrayList webParts) at Microsoft.SharePoint.WebPartPages.WebPartZone.Render(HtmlTextWriter output) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Page.Render(HtmlTextWriter writer) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryPage.Render(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_addgallery_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Incorrect syntax near 'FC7D0500'.' Source: '.Net SqlClient Data Provider' Number: 102 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'.' Source: '.Net SqlClient Data Provider' Number: 105 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 5586 Critical Unknown SQL Exception 102 occurred. Additional error information from SQL Server is included below. Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzku High ConnectionString: 'Data Source=ch01sw0482;Initial Catalog=SharePoint_Collaboration_GRDRO;Integrated Security=True;Enlist=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzkv High SqlCommand: 'BEGIN TRAN;UPDATE AllUserData SET nvarchar3 = REPLACE(nvarchar3, ''', '') WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET float2 = CASE WHEN ISNUMERIC(nvarchar3) = 1 AND nvarchar3 != '$' AND nvarchar3 != '.' AND nvarchar3 != ',' AND nvarchar3 != '+' AND nvarchar3 != '-' THEN nvarchar3 ELSE NULL END WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET nvarchar3 = NULL WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; COMMIT TRAN' CommandType: Text CommandTimeout: 0 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database d0d6 High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80131904 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e1d High Deleting the web at http://siteurl/test . 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:35.36 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Render WebPart AddGalleryWebPart). Execution Time=23135.9471664695 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:35.36 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Render WebPart Zone g_77836901A6DE4DAC9F882928CFDFC358). Execution Time=23136.0167283831 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:35.36 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://siteurl/_layouts/AddGallery.aspx)). Execution Time=23153.4689464722 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    Any suggestions as how to resolve this issue?
    Best regard,
    Nhat Phan
    Nhat Phan

    Hi,
    Please try creating other sites liike publishing site to check if error persists?
    Refer the links
    http://spdiaries.net/fix-exception-hresult-0x80131904/ 
    if you want to shrink the logs.
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • LABVIEW.LIB was not called from a LabVIEW process when creating unit tests

    We are developing a DLL to be integrated in LabVIEW using CLFs. So far we have the system working, but we wanted to create some unit tests in C as part of our release process. The problem is that when I link labview.lib in VS C++ and then call the EXE generated I get an error saying: "LABVIEW.LIB was not called from a LabVIEW process". As mentioned in http://zone.ni.com/reference/en-XX/help/371361J-01/lvexcodeconcepts/debug_dlls_and_dll_calls/:
    "Calling the shared library from another C program is also another way to debug the shared library. By calling the shared library from another C program, you have a means of testing the shared library independent of LabVIEW, thus helping you to identify any problems, sooner."
    Some of our functions, however, use LabVIEW specific instructions and we would like to test them in a realistic environment (i.e., calling to the actual functions instead of creating stubs).
    Is there any workaround to this problem?
    Thanks!!

    Hello SaraGr,
    Welcome to the NI Discussion Forums! I have a couple of questions to better determine the issue here:
    1. What is the LabVIEW version that you are using?
    2. Does your DLL uses Serial Compatibility VIs? If so, try using your development on NI-VISA instead of Serial.
    3. Are you using a Code Interface Node (CIN)? If you do, I see that from the help file you would need to compile the code for the new platform. Also, please remember that functions specifc to CINs (such as SetCINArraySize) will not work in a DLL.
    4. Be sure to include the header files in your program, like extcode.h. Please follow this white paper to link labview.lib to your program, or follow the Alternate Method.
    Regards,
    Daniel REDS
    RF Systems Engineer
    Help us grow.
    If a post solves your question, mark it as The Solution.
    If a post helps, give Kudos to it.

  • Charge Account Is Not Copied From PR to PO When Created From PR to RFQ to Quotation to PO

    Hi,
    We are using Autocreate functionality (Forms) for creating PO.
    Now when we create PO directly from PR, distribution account gets copied correctly from PR, but when when we create PR>>RFQ>>Quotation>>PO , it takes from Inventory org material account.
    I want to use the same account from PR to be copied into PO.
    Please Advise,
    Thanks Nikhil

    You may find the following links to be helpful
    Incorrect PO Accrual Account when PO is created from a Purchase Requisition (Doc ID 1136853.1)
    How to Set Up and Use Category-based Account Default in Purchasing (Doc ID 293046.1)
    How To Diagnose Issues In Autocreate (CREATEPO) Workflow (Doc ID 559009.1)

  • Premiere Pro v6.0.3 won't accept drag & dropped files from Sony's XDCAM Browser v2.1

    Premiere Pro reports a "generic file import" error when I try to drag & drop my video files (.mxf) from Sony's XDCAM browser directly into Premiere Pro project window.  However, I can drag & drop the same file(s) directly from a file folder on my computer and I can also use the "file import" from Premiere Pro drop down menu to import the same files with no problems.
    Also, I can successfully drag & drop video files (.m2ts) from Sony's Content Management Utility into Premiere.
    But why can't I drag and drop the same files (.mxf) directly from my Sony XDCAM Browser.   It appears to me that my issue is related specifically to XDCAM Browser & the .mxf files it supports (note:  Sony's Content Management Utility does support .mxf files so I can't simply use that Utility).
    Windows 7, 64bit
    CS6
    Sony XDCAM Browser v2.1
    Sincerely,
    Joe

    I try to drag & drop my video files (.mxf) from Sony's XDCAM browser directly into Premiere Pro project window.
    You need to use the Media Browser within Premiere
    to import these files.
    Copy the entire contents of the media card to an internal drive first.

  • How do I duplicate layers & groups without automatically adding a "copy", "copy 1", "copy #" at the end of the new group?

    How do I duplicate layers & groups without automatically adding a "copy", "copy 1", "copy #" at the end of the new group?
    It's been pestering me for quite a while now, since I often work with the same elements over and over again. Its frustrating to have to change the name of each layer manually, especially if I'm copying a whole group.
    Is there a setting in Photoshop or perhaps an external script that can help fix this for me?
    Cheers,
    Qiming

    There is no way to defeat this within the program itself. Here's the workaround:
    Duplicate the file (from the Image menu).
    Drag the Group or layers from the Layers list from the duplicate to the image window of the original , while holding down Shift.
    That will make a "copyless" copy and reposition the copyed material in the exact same position it was on the original.

Maybe you are looking for

  • How to insert a set of rows at a time from another table

    Hello! I have a table1 and table 2 - i want to insert a set of rows at a time from table1 to table 2. Then do a COMMIT. Then continue inserting another set of rows and so on.... say i want to insert into table 2 i million records at a time and then d

  • Is there a way to read All UI Item Values through XML?

    We do a lot of validations before adding or updating AR documents in SAP 2007 (soon to be 8.8). Since these updates have not yet been sent to the database, we are reading the UI item values one by one off of the form, and this is slow to write and no

  • Madwifi-ng preup/predown script question [solved]

    Hi, I recently installed Arch 0.7.1 on my laptop. So far I am very impressed with the speed and the simplicity :-) I just have one small problem: madwifi-ng Currently, I have to manually create the ath0 interface with wlanconfig, which is annoying. O

  • .zip files opening with iTunes

    When I double-click a .zip file, it opens in iTunes. How do I get it to unzip? Thanks

  • Mount Point / ????

    Hey everyone. Thanks for viewing my post. I am in terrible need of anyone's help! It is absolutely life or death for both my macs. Any advice/solutions will be greatly appreciated. Here is my situation in great detail to help those of you that might