Stop users from posting BMPs

It's a good thing that the forum prevents users from posting a *.bmp file. However it would be nice if the actual content of other image-types (png, jpg, gif) are checked upon uploading for the actual data type.
Ton
(personally I think those users should be banned.)
Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas
LabVIEW, programming like it should be!
Solved!
Go to Solution.

Here we have a case where a small image of a broken run arrow takes up ~3MB!
(I have a 200MB/month limit on my cell phone data plan, so that image alone would cost me half my daily allowance!)
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • Stopping Users from Web Surfing Externally Using IE?

    We have a lot of legacy internal application that can only be accessed using IE.
    Due to the recent Microsoft announcement concerning IE versions and support/patching. We want to stop users from surfing externally using IE, is there a policy setting (or proxy config, host file mod etc.) that we can use to force this?

    Hello,
    block your firewall for port 80/443 explicit and then open only required ports for your requirements.
    For controlling internet access you have the need for proxy server. A free proxy server is SQUID
    http://www.squid-cache.org/
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Prevent user from posting invoices

    Hello Profs
    How would one generally/theoritically or practically prevent user from posting invoices >1000 rs (arbitary value), in MM Invoice verification.
    some thoughts please
    Thanks

    Sunil,
    As per my knowledge, there is no option to prevent user posting invoices if the invoice amount exceeds Rs.1000/-. And it can not be possible with standard /default LIV in MM.
    You can do so for the PO's, since there is a procedure called release procedure and for each release code you can set the amount limit and if it falls within that, then he can release the PO (by configuring the release procedure based on total net order value with classification).
    Similar to the above you can not do for the Invoices, but this can be possible to the user through workflow to the logistics inovice verification process. For that you need to activate the workflow concept for the LIV (i.e. you can set the workflow for your invoice verification process, if the invoice verification is done by more than one accounts payable processer (i.e user), like first invoice is parked by user1 and then later the user2 will verify (complete) and post the invoice verification process. And for that you can setup workflow concept, so that the next user gets intimated once the first user is completes his process in the LIV. But i don't think it is possible to stop or prevent if the invoice amount exceeds.
    But, this can be possible to the some extent, that is though the configuration of attributes of system messages in LIV (by that the user will be notified with a text (i.e. error) message on the status bar, when the user is posting the invoice document which exceeds, hence he can not post the inovice in this case and also try by maintaining the user default paramer (i.e.WLC: Workflow -User specific settings (i.e. to be maintained in parameter id in in user master).
    Suggestion:
    Refer useful link for more information on workflow:
    http://help.sap.com/saphelp_47x200/helpdata/en/9b/572614f6ca11d1952e0000e82dec10/frameset.htm
    http://help.sap.com/search/highlightContent.jsp
    Hope this will clarifies you,
    Reward, if it helps,
    Regards,
    Srin.K

  • Stopping user from making in app purchases on a live iPhone app

    Hi
                   I am trying to stop user from making in app purchases on a live iPhone app. What i have done is i made  Cleared for Sale: No in itunesconnect product id and Status is changed to Status: Developer Removed from Sale. But still i am able to do in app purchase in the app. Any idea why is it? anything i should do? Last Thureday night i have done this changes in itunes connect. i don't want to delete the product id from the itunesconnect.
    Thanks
    Anish

    Hey Michael,
    Is that the only way to stop in app purchase? delete the product ids from the itunes connect?
    Thanks
    Anish

  • Please,I want to stop users from visiting particular wensites while connected to the internet. How do I configure Firefox to automatically stop users from visiting such dangerous sites?

    Please,I want to stop users from visiting particular wensites while connected to the internet. How do I configure Firefox to automatically stop users from visiting such dangerous sites?

    Thanks, Ronda! I haven't been able to try your suggestion because I fried my router! So I need to get a new wireless router before proceeding.
    (I may start a new thread about getting a new router, but I will look for answers first to my questions and only start one if I cannot find answers.)
    After I get a new router, I will try what you suggested and report back here.

  • WRV54V how to filter or stop users from downloading videos

    I don't know how to configure this router to stop users from downloading video like from Google, Torren. I've heard people is using DD-WRT firmware for some linksys routers, but not with this model. I don't want to stop my users from browsing internet, read news, social networking but they watch online video and download stuffs like 10Gbs a day. It doesn't work for me. Thanks

    You can block the video files by managing the firewall on the computer in such way that the video extension files would be blocked....

  • Blocking Users from Posting

    Hi,
    We are auditing this company and we noted that there are three dormant company codes. They became dormant because these companies were already dissolved and liquidated. Currently. these three are set to non-productive.
    My question is: Is there a way to block users, who have access to all company codes, from posting to these company codes? I was hoping maybe there is some configuration that will prevent the users from posting any transaction to these company codes. We don't want to clean up the roles since this is a big exercise.
    Appreciate if you can help me on this matter.
    Thanks in advance.

    Post it in Netweaver--- security forum.
    For your question..I think it can be done through configuration...If there is no existing company code..how can they post?

  • How to stop user from referencing a PR Item multiple times in an RFQ

    the same PR item is being referenced in the RFQ Muliple times. How can i control/stop the user from doing it.
    IS there a message which i need to set as error?

    Hi,
    You need to set the Message settings in
    MM--Purchasing -- environment data -- Define system messages or Tcode--OMCQ
    set the message number 06 076 as error message , then system will not allow the same line item to cross the PR qty
    rgds
    gsc

  • Stop user from cliking back button after logging out

    How can I stop the user from clicking the back when they had clicked the log out link...?
    <%@ page language="java" %>
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
    </body>
    <script language="JavaScript" type="text/JavaScript">
    function refreshIt() {
    setTimeout('window.parent.location.reload()', 7 * 1000);
    <%
    session.removeAttribute("username");
    session.invalidate();
    response.sendRedirect( response.encodeRedirectUrl("index.jsp?message=You had logged out from the system"));
    %>
    document.onload = refreshIt();
    </script>
    </html>

    You can NOT stop the user from clicking the "back" button.
    However, all is not lost.
    Since you're invalidating the session, simply have every page that requires the user to be logged in check for a valid session before proceeding. Put that code into an "include" file. If the session is invalidated, redirect the user back to the "Please Login" page. Do this IMMEDIATELY before doing ANYTHING.
    Another technique, but is essentially the same thing, is to "logout" to a page with javascript that redirects the user to the "You are Now Logged Out" page, with either a "redirect" or a "window.forward()" call. When the user clicks "back", they'll return to the page with the javascript that redirects the user to the "You are Now Logged Out" page. The only problem with that is that savvy users using IE can click the "history" portion of the "back" button, and go back 2, 3, 4, etc. pages if they want to.
    Therefore, you'll still have to write the code at the beginning of every page that kicks the user back to "Please Login" if the session was invalidated.

  • How to stop user from forwarding his mail

    Dear Experts,
    I  am using the class cl_bcs to generate mails to some users , it would be great if i can stop those users from forwarding such mails to some unauthorised people. I understand that the add_recipient method has the parameter I_NO_FORWARD which should probably do the job when set to 'X' . But unfortunately it still doesnt stop the users from forwarding.
    Is there any other way of achieving my requirement.
    Thanks in Advance,
    Chaitanya.

    Hi,
    You need to set the Message settings in
    MM--Purchasing -- environment data -- Define system messages or Tcode--OMCQ
    set the message number 06 076 as error message , then system will not allow the same line item to cross the PR qty
    rgds
    gsc

  • What stops users from extracting the JAR, decompiling to get FTP details?

    So I have made an applet to upload files to a server which uses FTp details. How can I stop them from getting the JAR file , extracting the files and decompiling the classes to get the FTP details.
    When I sign the pplet, the process asks for a passwors, will the extraction process ask for this password?
    Thanks

    Hi,
    From what I've seen the JAR file can be extracted easily with WinRar (or WinZip if you rename to .zip extension!). The signing just verifies that the contents of the jar haven't been changed by someone since it was created.
    Heh it looks like we're working on the same problem...!
    What I'm doing with my applet (based on the ZUpload applet from Sourceforge) is have it to read in the ftp connection params from an encrypted file. In my case the users are "semi trusted" so I am just trying to prevent someone casually lifting the ftp login and bypassing the applet. Obviously in theory someone could still decompile my classes and get the secret key then decrypt the params, but in my case this is unlikely to be a problem.
    I'd love to hear if you find a better way!

  • Can we stop users from Split Coding Requisitions in iProcurement?

    Is there a profile setting that prevents users from being able to split code charge accounts on requisition lines in iProcurement 11.5.10.2?
    Thanks
    Jim

    Hi Jim
    I am just thinking of Personalizing and disable the Split functionality....
    Regds
    Ravi

  • How do I stop users from using the standard inbuilt VPN connection in Windows

    We have a UAG Portal setup to check the security of users computers etc then if it is all correct they are presented with the log in and once logged in the are connected to the corpirate network via a SSTP connection.  The all works fine but the issue
    I have is users can bypass all the checking but just going into network connections on their local computer and creating a SSTP VPN connection, like on this webpage http://blogs.technet.com/b/tugait/archive/2011/10/12/how-to-publish-a-vpn-sstp-using-your-uag-in-a-https-trunk.aspx
    Any idea how to stop users being able to do this and forcing them to use Internet Explorer?

    Found my answer on this page  http://technet.microsoft.com/en-us/library/ee809077.aspx 
    "To enforce Forefront UAG portal authentication, do not set users dial-in properties to Allow
    access."

  • How to stop user from moving position of a column in a JTable

    hello,
    can anyone tell me how to disallow the user from moving the column or a row in a JTable.

    setReorderingAllowed() of JTableHeader

  • Stop user from Deleting Staffing Data

    Hi Friends,
    We are implementing cProjects.  We need to control Deleting of Staffing from a project, because the deletion of staffing record is a hard delete.  The data is removed from the staffing tables of cProjects.  So if someone is staffed, data saved and then is deleted we are not able to capture this information as who was staffed earlier whose record is no more now.
    When some user changes the staffing dates, we are able to capture this in the BADI DPR_ATTRIBUTES, as the check method gives us the old attributes of the record as well as the new one that has been changed.
    But if some staffing is deleted, the DPR_ATTRIBUTES does not indicates
    through some variable that delete action has been performed for a
    record.
    Request you to suggest which BADI shall be implemented to capture
    Delete staffing data event that brings in the role that is being
    deleted such that we can stop the record from deleting in case we want to do so.
    We are very near to go-live and have already missed two deadlines till
    date, so request you all to help.
    Regards, Sandeep

    Hi,
    the BAdI DPR_ATTRIBUTES also has a method called DELETE_CHECK, this is called when staffing is deleted (called in class CL_DPR_PARTICIPANT and method DELETE_CHECK), so you could implement your own logic here.
    Regards,
    Silvia

Maybe you are looking for

  • Officejet 6310 all in one will no longer communicate with pc.

    router died. had to replace. tried reloading drivers&set up. this pc pluged into router as is printer . All phones and notebooks work fine!! what up?? 

  • IPhoto -- In Event -- Key Photos not showing up

    I choose the key photo, but the event still only shows the palm tree iphoto icon. Most of my older events still show the key photos, but now I have several that only show the palm tree. Not sure why. Any ideas?

  • Dreamweaver CS6 Fluid Grid Layout

    I fear there may not be a solution to this issue! I have placed several hotspots on an image in a Fluid Grid Layout div in DW CS6 and the problem is quite straightforward. Whilst the "image" reduces perfectly when viewed in Tablet and Smartphone scre

  • XML data sets in FC

    wouldn't it be great if you could import xml data into design time data sets or the ability to use a single data list for multiple components..

  • Is there a way to sync my iPod Touch 4th Generation to a linux computer?

    I just bought an iPod Touch 4th Generation, and the computer I use runs on linux Ubuntu. Is there any way to sync my iPod to my linux computer, whether it be legally jailbreaking the iPod, putting another operating system on my iPod, a program/plugin