Delete wiki entries

Does anyone know how to delete wiki entries from the OS file system command line?  My wiki got spammed, and I have lots of entries to delete.  I don't want to have to open each entry and click on -, and specifiy to 'permantantly delete' each spam entry.
For one spam entry, I tried deleting the /Library/Collaboration/Groups/MyWiki/wiki/#####.page directory, but that leaves a link to the spam entry in my 'Recent Changes' list on the wiki page.  And when I click on that entry, I get 'page not found'.  So, there is another place that the spam entry is listed, but where???
Sometimes you have to delete a db file and rebuild it, but I have no idea if that's the case here or what db file that would be.
Any ideas?
Thanks in advance.
Stephanie

You're in the wrong forum.

Similar Messages

  • Deleting wiki files

    Does anyone know how to delete wiki entries from the OS file system command line?  My wiki got spammed, and I have lots of entries to delete.  I don't want to have to open each entry and click on -, and specifiy to 'permantantly delete' each spam entry.
    For one spam entry, I tried deleting the /Library/Collaboration/Groups/MyWiki/wiki/#####.page directory, but that leaves a link to the spam entry in my 'Recent Changes' list on the wiki page.  And when I click on that entry, I get 'page not found'.  So, there is another place that the spam entry is listed, but where???
    Sometimes you have to delete a db file and rebuild it, but I have no idea if that's the case here or what db file that would be.
    Any ideas?
    Thanks in advance.
    Stephanie

    They _should_ be under your XDG_DATA_DIR I think. But I don't know if Gnome does that.

  • Help, how to restore an accidentally deleted Wiki

    Hi All,
    I have been running the wiki on my OS X server for some time now.  Currently using Mavericks 10.9.1 and I went to delete a page from one of the wiki's and when prompted I didn't read the dialog box and clicked om "permenantly delete" and my whole wiki disappeared.  I have two others on different topics that still appear and operate just fine but the other wiki is now nowhere to be found.  I've found old posts when the wiki was stored in /Library/Collaboration/.... but nothing on the "latest" wiki locations.  Can someone point me at a method to restore (from time machine) my wiki.  I have not make any changes to any of the wiki's since I accidentally deleted this wiki, I'm hoping it is as simple a restoring a file or files from time machine.
    TIA
    ron

    Well I have resolved the issue and thought I would post here to let anyone else know how it was done.
    First using the original input from Linc Davis that I should restore /Library/Server/Wiki I gave that a shot, however the restore aborted after a couple seconds with the error the PostgreSocket was in use.  This caused some problems since some of the other files in the directory were deleted or something during this activity.  Now I had no wiki's and any attempt to access the wiki resulted in a crash of the wiki. (Remember I had 3 wiki's and accidentially deleted one).  So some head scratching ensued, I absolutely did not want to even consider restoring OS X in its entirety from a backup, this was just a non-starter for me.
    So back into time machine and this time I restored the /Library/Server/Wiki directory from time machine and by right clicking (or CTRL + click) in the Wiki entry in time machine it prompts for an alternate location to restore to, I had it restore the Wiki directory into /Library/Server/Wiki so now my old Wiki was in /Library/Server/Wiki/Wiki.  From here I booted into the Mavericks recovery partition (hold the Option key when starting the machine), then began a terminal session and renamed /Library/Server/Wiki to "xyzzy" and then within /Library/Server/xyzzy entered mv Wiki .. which moved the restored wiki data back to /Library/Server and then I removed rm -rf /Library/Server/xyzzy to get rid of the corrupted Wiki.  Started up the Wiki within the server again and I was back in business.
    I don't know that this is an officially sanctioned approach but it worked just dandy for me.

  • How to delete the entries in the given field box

    Hi Every One,
    How can I delete the entries which I have given in example SE37 box.
    When I press Backspace button the entries which I have given will appear so I want to delete these entries.
    With Regards,
    Venkat

    Hi,
    Goto ==> Customize Local Layout (Alt + F12) , then Options ====> LocalData=======> Clear History
    This process should clear your history.

  • Delete all entries from the following tables - Follow-up Activities (oracle)

    Hello,
    I performed a homogeneous system copy of our development BW system with the database (oracle 11.2.0.3) from the BW production system!
    I already start the oracle database and the SAP system in the target system/server (development BW system) and I´m doing some follow-up activities. One of this activities is (at the system copy guide 6.2.3.2 Activities at Database Level) is to delete all entries from the following tables:
    DBSTATHORA, DBSTAIHORA, DBSTATIORA, DBSTATTORA
    I tried to delete them using SQL Plus:
    sqlplus /nolog
    SQL> connect /as sysdba
    SQL> delete from DBSTATTORA;
    delete from DBSTATTORA
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ... and it show me that error message.
    This is strange because when I go to transaction SE14 and check the DBSTATTORA I see that table exist and contain a lot of entries!
    Why this is happened in SQL Plus!? I´m running the correct SQL statement for doing this type of task or not?
    How can I delete the entries of that tables? Can I do that using the transaction SE14?
    Can you help me please?
    Thank you,
    samid raif

    Hello
    sqlplus /nolog
    SQL> connect /as sysdba
    SQL> delete from DBSTATTORA;
    delete from DBSTATTORA
    ERROR at line 1:
    ORA-00942: table or view does not exist
    It doesn't surprise me as you are not mentioning the schema name here. Instead it should be
    delete from SAPSR3.DBSTATTORA;
    Assuming the schema owner is SAPSR3. if the owner is different then replace that with the correct one.
    Regards
    RB

  • To delete multiple entries in table control in module pool

    Hi,
    Please help me out to know , <b>how to delete multiple entries from table control</b> when multiple lines in table control are selected.
    Regards,
    Irfan Hussain

    hai,
        you can do it inthis way.
    in the PAI event.
    loop at <table control name>
      module del_itab.
    endloop.
    in the nodule,write the folowing code.
    if <tablecontrol>-fieldname = 'X'.
    delete <tablecontrol-itab>
    endif.
    cheers

  • How to delete the entries in internal table

    Hi Experts,
    I have 2 internal tables ,
    if i find any same entries of 2 internal tables,  i have to delete that entries in first internal table.
    Regards,
    Srinivasu

    hi check this..
    report .
    data:begin of itab occurs 0,
         f1 type c ,
         f2 type i,
         end of itab .
    data:begin of itab1 occurs 0,
         f1 type c ,
         end of itab1 .
         itab-f1 = 'A'.
         itab-f2 = 12.
         append itab .
         itab-f1 = 'b'.
         itab-f2 = 12.
         append itab .
         itab-f1 = 'c'.
         itab-f2 = 12.
         append itab .
         itab1-f1 = 'A'.
         append itab1 .
    loop at itab1 .
    read table itab with key f1 = itab1-f1 .
    if sy-subrc  = 0.
    delete itab where  f1 = itab1-f1 .
    endif .
    endloop.
    loop at itab.
    write:/ itab-f1,itab-f2.
    endloop.

  • How to delete the entries from NAST table

    Hi,
    Please help me out by providing any function module that delete's the entries from hte NAST table.
    Regards,
    Kiran.L

    REPORT ZSCD_TEST13.
    delete from nast where VSTAT = '1'.
    =====
    If you see the FM : NAST_DELETE_OBJECT, its only useful when NACHA = 7 (i.e. message transmission medium = Simple Mail)
    For others its not useful.
    We had similar issue few days back and after long RnD, we straightaway deleted the entries using the Zprogram.
    regards,
    Edited by: Pranu Pranu on Aug 19, 2008 1:42 PM

  • How to delete the entries from the transport request

    i need to delete the entries programatically from the transport request for all the entries which is exists in the package for the tables e070 and e071.

    Hi,
    I think you need to have authorization for that thru auth group SA.
    One more thing is where ever its created like source client only you can do if u have authorization.
    Regds
    Sivaparvathi
    Please reward points if helpful...

  • How to delete duplicate entries in table for the object DNL_CUST_BASIS2

    Hi All,
    I am trying to download the object DNL_CUST_BASIS2.
    In the SMQ2 the status is SYSFAIL.
    I checked in the ST22 for dumps.It says about the error while accessing the table T006.
    While analysing this,i found some duplicate entries in the related tables of this object.
    Can somebody help me how to delete these duplicate entries?
    Thanks,
    Senthil.

    Delete them directly from the table using se16:
    select the entries in the classic view (not ALV or grid view).
    activate the debugger.
    press the view button. --> you'll enter in the debugger
    press F7
    locate the sy-ucomm variable & change it to "DELE".
    press F8
    delete the entries.
    Trick-shots
    but it works!
    Michael.

  • How to delete duplicate entries in address book

    Is there an easy way to delete duplicate entries in Address Book?

    I have an iPhone where I create new contact details and a MB Air running OX X 10.7.3
    In Address Book I see duplicate entries across the whole book. The other day I was traveling without my MB and needed to urgently reach someone who's number I knew was in my iPhone contact list for sure but searched and search and couldn't find it.
    Turns out that when I had been going through the Adress Book on the MB Air trying to eliminate some of the duplicates I had chosed --without even knowing it or realzing it-- the card that I guess sync with my iPhone. It was gone. Sure enough, when I got back and looked it up on the MB Air it was still there not syncing to my iPhone.
    I have used Address Book / Card / Look for Duplicates ...
    I have also followed the Help suggesting and pressed Control / select to highlight two duplicate cards and even though the First / Last / Company / phone numbers / etc. are all the same I get the message: "The cards could not be merged because they came from different accounts."
    I have checked with guys from the office who have the exact same problem with no idea how to solve the problem.
    Is it that in order to use Address Book on both an iPhone and an OS X machine you've just got to be smarter, more sophisticated, more IT oriented?
    Seems like a pretty easy thing not to be struggling with.
    I should mention that I was a Mobile Me subscriber and now use iCloud which I'm sure has something to do with all of this.
    But it seems pretty basic to me. If I have an Address Book it should synchronize between OX X and IOS.

  • How to delete duplicate entries in match code

    I want to delete duplicate entries in match code.

    If you go down the search exit route, using function module F4_IF_SHLP_EXAMPLE or function module F4_IF_SHLP_EXIT as a template you want it where callcontrol-step = 'DISP'.  You would sort the table: SORT RECORD_TAB BY STRING and then delete adjacent duplicates. If this does not wok because of the fields you have in your search help, you will need to select the data into another internal table and match the relevant entries from your internal table  with the relevant position in field STRING of RECORD_TAB.  The positions in STRING will be as per the order of the parameters  you have defined in the search help.
    Hope this helps.
    Regards
    Larissa

  • How to track , who has deleted table entry

    Hi Experts,
    Is there any way so that i can know that who has manually deleted few entries(data records) from my table,actually my table has "Display maintenance allowed" property set.
    Can we track it anyway that when and who has deleted that table record.
    Regards,
    Abhishek

    Hi Abhishek,
    Actually the changes made for an entry into table will have two effects.
    Changes at the data element level and another at the entire db table level all these changes will have an entry only if the change documentation is activated.
    Table logging concept wherein SAP records all insertions, deletions, and changes in tables
    OSS note 139418 will gibe you general information on logging user actions.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eaf9446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/Helpdata/EN/7e/c81ebb52c511d182c50000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/a0/7d1020dac8994fa63ff270dbceb87f/content.htm
    revert for further clarification,
    Thanks and Regards
    Srikanth.P

  • "WF-USER can only delete this entry" error while deleting entry in tRFC

    Hello Experts,
    We have a scenario wherein the outbound IDoc from our SAP system consists of lot of IDoc data segments. Becase if this large size, the EAI Middleware is getting out of memory exception while processing it before sending it to the receiving system with an error "Trnasaction XXXXXXXXX rolled back" (Committing is geting failed). And it is not possible from EAI Middleware side to increase the memory. Because of this, other outbound IDocs getting struck in the tRFC (IDoc status  = 03, Data Passed to Port OK) queue and thereby delaying the process.
    We would like to delete the entry (TID) of this particular IDoc from the tRFC queue. When we try to do taht, we are getting the error message "WF-BATCH can only delete this entry" which is actually the system Workflow user.
    Could anyone suggest me the way to delete the entries? We hav one option where we can that system user name to our user name in "Debug Change'. Becasue of some authorozation problems, we would not be getting that.
    Could you please suggest me about any alternative. Appriciate your help. Thanks in advance.
    Best regards,
    Kishore.

    Hello Kishore,
    I also encountered the same problem in transaction SWU2.
    I could bypass the message in debuging mode only.
    I put a breakpoint in report RSARFCRD, and, in debug mode, I skip the following check:
          if sy-lisel+1(12) <> sy-uname.
            message e019 with  sy-lisel+1(12).
          endif.
    Best Regards,
    Alexandre.

  • BPM question - Delete all entries in a table and Insert data

    Hello,
    I'm new to PI BPM and have this scenario to implement.
    I'm supposed to delete all entries in a table and then insert data to the same table.
    Is BPM necessary? If it is, what is the best practice to implement my scenario?
    I want to make sure that all entries were successfully deleted before insert data.
    How do I check if all entries in the table were deleted successfully before
    initiating insert.
    Thank you.
    -Won

    Hi Won,
    Yes, this is possible without BPM.
    You have to create 2 separate mappings, each for deleting & inserting the records.
    You will have 2 different Interface mappings as well.
    But in ID, create a single interface determination.
    In that, configure Deletion interface mapping first and in the second row, configure Insertion interface mapping.
    Please make sure that the parameter 'Mainain Order At runtime' is checked in interface determination.
    -Supriya.

Maybe you are looking for

  • How to get the selected items from listbox

    Regarding listbox i have two questions 1) I want to get the selected items as per the order in which ihave selected.Presently i'm getting in the ascending order.For example after selcting the 1,2,6 if i select 3 then its giving 1,2,3,6.But i want it

  • Adding a custom field to the property inspector in JDev 10.1.3

    Hello All I have a requirement where i have to add some custom entries to the property inspector.Say if we choose a text field in html there will be some standard values in property inspector.Now i want to add my own custom entry always on selection

  • HT201317 No video via photo stream into iPhoto with iOS7?

    I can see the video I shared with my 5s iOS7 on other devices with iOS7 (iPad, other phones with iOS7) but not in my photo shared folder my own iPhoto on an iMac? My iMac is updated. Is there an update coming our way to allow this to happen?

  • Data contained in Logical Column w.r.t mapped columns

    Hi, A logical column (say A) of BMM layer is mapped to two different columns of separate tables (T1 and T2). What data will the column A (of BMM layer) contain (data corresponding to column of table T1 or T2) ? Regards

  • Error after approve leave

    Hi, I am facing issue whereby user created leave via Self Service and manager approved the leave. However SYSADMIN receives the below error notification: "The approval process for 'requestor' has halted and will be delayed until the approval chain fr