Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20100101 Firefox/8.0
A:
I have just found the solution to my problem. I just needed to add a line into my Firefox profile:
cookies.accept_third_party.patterns = (
".*"
)
I just had to enter this into my Firefox profile settings.
I added this line into my Firefox profile after I have installed the two necessary libraries to support the SQLite 3.1.0.
The problems I experienced before when I had earlier installed the libraries, I have just found out that it was because of my Windows system date settings and because I had uninstalled the.NET 2.0 from my computer.
For those who encounter the same problem, you can download the two libraries from here
I hope that this helps others who might also encounter the same problem.
Thank you.
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// UNSUPPORTED: c++03, c++11, c++14
//
// class directory_entry
// directory_entry(const path& p, const directory_options& opts, fs::file_status st);
#include "filesystem_include.h"
#include
#include "filesystem_test_helper.h"
namespace fs = std::experimental::filesystem;
int main(int, char**)
{
fs::path p1 = fs::path("/foo");
fs::directory_options opts;
fs::directory_entry de(p1, opts, fs::directory_options());
assert(de.is_directory());
Related links:
Comments