Posts

Showing posts with the label access

Apache Server Web directories access restrictions

Image
Clash Royale CLAN TAG #URR8PPP Apache Server Web directories access restrictions I have set up an apache server, hosting a website. For example In my website you can play with an online javascript atari roms. Whenever you load a rom in the website, the javascript temporarily downloads it to your browsers cache. If you for example write website.com/roms/atari.zip you can download this rom. I do not want this. Is there a way to forbid direct access to this file but also whitelisting access from within the javascript requests? Many thank you in advance. you can require a specific request header, which you supply with javascript request, and forbid access without that header. However, if someone knows and provides that header, the file would be accessible with direct link as well. would that be what you want? – eis 1 hour ago ...

Grab and return Item from one form to other in Access VBA

Image
Clash Royale CLAN TAG #URR8PPP Grab and return Item from one form to other in Access VBA Since it's the first time I do this, I want to know the best approach or right way to get the result. I have a form (Quote) where I have a List Box to add items. I also have another form (Search Item) where I can find all the items in my database. Where I want to do is to grab an item from the Search Item box and put it in my Quote Form List Box. I was thinking to put a Global Variable that will store the ID of the item and use this as pin point reference to paste in the Quote List Box. Is this the right way to it or am I missing something here? 1 Answer 1 To reference the form you're currently on: Me To reference a textbox control in the form you're currently on: Me.txtbox_name_here To reference a form from another form: Dim frm As Form 'first you need to open the form to reference it DoCmd.Open...