Navigate to Local Computer Policy > Computer Configuration > Administrative Templates > System > Filesystem
Then enable ‘Enable Win32 long paths’.
Of kijk hier.
Van alles en nog wat en dingen die ik anders telkens opnieuw moet uitzoeken
Navigate to Local Computer Policy > Computer Configuration > Administrative Templates > System > Filesystem
Then enable ‘Enable Win32 long paths’.
Of kijk hier.
Have a look here.
U kunt EnableAddAccounts instellen door het bestand ‘EnableAddAccount.reg’ te implementeren op de computers van uw gebruikers. Dit bestand maakt deel uit van het OneDrive-implementatiepakket. Hiermee wordt de volgende registersleutel toegevoegd:
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\OneDrive] "EnableAddAccounts"=dword:00000001
The Python Tools for Visual Studio extension is completely free, and there are many free Visual Studio editions that can use it. Read about it here and decide what version to install:
Help
and Install New Software
. XXhttp://pydev.org/updates
into the Work with text box and press EnterZie ook:
Vagrant vs Docker: Which is better for WordPress development?
After reading the above article I’ve decided to start with Vagrant, and maybe some other time I’ll use Docker.
Vagrant – the command line utility for managing the lifecycle of virtual machines.
First install VirtualBox (other virtualization-software also possible):
Then install Vagrant:
mkdir vagrant_getting_started cd vagrant_getting_started vagrant init
Read this:
Open a Command Prompt (Admin) and type this command:
setx VAGRANT_HOME "X:/your/path" /M
That’s it.
Boxes are added to Vagrant with vagrant box add. This stores the box under a specific name so that multiple Vagrant environments can re-use it.
vagrant box add hashicorp/precise64
Or, download a different box, see: https://atlas.hashicorp.com/boxes/search.
Now that the box has been added to Vagrant, we need to configure our project to use it as a base. Open the Vagrantfile and change the contents to the following:
Vagrant.configure("2") do |config| config.vm.box = "hashicorp/precise64" end
The “hashicorp/precise64” in this case must match the name you used to add the box above. This is how Vagrant knows what box to use. If the box was not added before, Vagrant will automatically download and add the box when it is run.
It is time to boot your first Vagrant environment. Run the following from your terminal:
vagrant up
You will not actually see anything though, since Vagrant runs the virtual machine without a UI. To prove that it is running, you can SSH into the machine:
vagrant ssh
This command will drop you into a full-fledged SSH session.
When you are done fiddling around with the machine, run
vagrant destroy
back on your host machine, and Vagrant will terminate the use of any resources by the virtual machine.
The vagrant destroy command does not actually remove the downloaded box file. To completely remove the box file, you can use the
vagrant box remove NAME
command.
Step 1: Create Ad Account
Step 2: Create Developer Account
Step 3: Create a New App
Step 4: Configure Facebook App Settings
Step 5: Install Facebook SDK’s
Step 6: Getting a User Access Token via Facebook Login
I managed to do this via the Python / PHP via Graph API Explorer. Open this Graph API Explorer and select your app on the right hand site, using the Get Token dropdown. The page refreshes. Hit Get Token
> Get User Access Token
. In Extended Permissions
choose ads_management
and/or ads_read
. Click Get Access Token
and use the user access token that will be presented to you in the access token
form input field.
pip install facebookads