History file is empty - google-chrome

I try to export data from chrome history file
located at : "\AppData\Local\Google\Chrome\User Data\Default"
unfortunately I got empty list
I deleted the history file and created new one - this time i got error telling tables doesn't exist
I Reinstalled chrome ( uninstalled it before ) , same problem occurs
next thing I installed Win10 with Chrome on VM , seems to work there
can you suggest how to trouble shot this case?
I use python & sqlite3

Related

Unable to open any URL in Chrome

I am encountering a strange issue in Chrome after receiving the latest update. Wherever I enter any URL such as youtube.com nothing happens no error nothing, just the page does not load.
Here is what I already tried
Uninstalled Chrome
Run a repair from control panel
delete the file local state under users/user/appdata/local/google/chrome/user data
Signed out of the browser
delete the file name master_preferences under c/program files/google/chrome/application
Installed an older version
But unfortunately unable to load any URL, also I did check the console logs and there are no data at all, neither 200 or 204
The funny fact is that it works if I do the following
Open in Incognito or lunch Chrome in compatibility mode and select Windows 8
The version I am running is 106.0.5249.91
Any ideas/suggestions?
Thank you in advance!
Manage to get it sorted by deleting the following folder: "C:\Users\useraccount\AppData\Local\Google\Chrome\User Data\Default"

File not exist when run mysql database migrations on windows

I cloned an existing repository (repository created by a team in my office which deals with subscriptions in a certain app we are working on) which have some database migration files inside the path ..\internal\db\migrations , this is migration files path.
First of all i run the command docker compose up .for an existing docker.yaml , then i run the command go build then go run . .
I made a debug and the app reaches the point when it is about to run the migration file then it displays an error:
Failed to initialize App. Error: first D:\subscription-store: file does not exist
although I checked the paths through debugging and they are correct and at the same time the migration files all are exists.
I am using visual studio code as an editor, Go version 1.15 ,docker and MySQL. I am running on enviroment windows 10.
After debugging and searching , it was found that the repository uses some paths to get the migration files from the local drive . the paths was written for Mac in the code base and i cloned the repository on a windows machine so it didn't work .
The error specifically happened in the call of the function
migrate.NewWithDatabaseInstance(
fmt.Sprintf("file://%s", fullPath),
"mysql",
driver,
)
The generated path for the first parameter was
file//d:\\subscription-store\\....\\db\\migrations
And this is wrong for windows as the driver d: shouldn't be supported in the path .
it is resolved as following
"file:///"+"subscription-store\\....\\db\\migrations"
When the above URL sent to the function rather than the old one , it worked successfully.

I can't start wampserver (0x000007b)

I get the error message:
wampserver cant start correctly (0x000007b).
Initially, wampserver was working well on my pc. Then, I had to delete some folders. I was prompted by windows that a system file was part of the files I was deleting and if I continue, a program might not work properly.
I ignored this because the folders I was deleting were on my desktop, but not directly in drive C.
After this, wamserver stopped working.
I uninstalled it and installed it again, and then I was prompted of some missing files (MSVCP120.dll and MSVCR120.dll).
I downloaded and pasted them in my drive c path :// drive c / windows / sysWOW64 /
I wasn't prompted of missing files anymore, but rather had this message anytime I start wamp:
wampserver cannot start correctly (0x000007b)
I checked and my windows is up to date and am using Direct X 12. I also have the latest .NetFrame work. Please what can I do? Please help.

Xcode - Submission error - Unable to create configuration directory

I was trying to submit my second app update and it failed submission after passing validation. This is the error:
"Unable to create configuration directory:/Application/Xcode.app/Contents/iTMSTransportation.woa/.itmstransporter. Cannot save local copy of remote diagnostic configuration;local path is not writable".
My screen shot of the error cannot be attached. I know it is not a network error at Apple's end because it specified a path in the Application Loader in Xcode. Since the system has read and write permissions here, it cannot be because I changed something. I submitted another app successfully earlier on the same day without a problem (as usual). I am at my wits’ end. Anyone experienced this?
Since there is no “Build for Archiving” in Xcode 5 (like in Xcode), I started with following steps:
1 - From the Xcode Product menu I selected “Archive” item
2 - After the Build, the organizer window appeared in the foreground with my archive in it.
3 - I clicked the “Validate…” button and it executed that successfully.
4 - When I clicked the “Distribute…” button, it started uploading the app but failed and came back with the aforementioned error. I went to the folder to see if any folder in the directory path is locked and also to see who has read and write permissions. It is not me but the system. I did a Disk Permission Repair in Disk Utility but that didn't help.
I then removed the offending file “.itmstransporter.” and tried to submit but got a different error. I put it back and took out the other two (ITMSTransporter.cmd and WOBootstrap.jar” but produced a different error. So I restored the folder to its original contents and returned to where I started - stymied. I have considered installing a new version of Xcode 5.0 but I don't know if that will help.
My OS:Mountain Lion 10.8.5, Xcode 5.0, MacBook Retina (first retina in 2012). Project compiled for iOS 7 in the Build Settings.
Thanks for any pointers.

I had the same issue. I copied the whole "Application Loader" out of the XCode package to somewhere else and after that, uploading from the Application Loader worked fine.

Uploading small .sql file to MySQL database file returns error (XAMPP on OS X)

I am running a fresh install of XAMPP 1.8.2 for OSX and am currently trying to upload an exported database that is 171kb in size.
Getting hit with this error
Warning: File upload error - unable to create a temporary file in Unknown on line 0
From what I have discovered it may have something to do with write permissions to a /tmp file which doesn't seem to exist on my system.
Trying to set this up so I can make changes locally on a clients website without breaking the live site.
Cheers and thanks for taking a look.
Solved
within the file uploads section of your php.ini there resides this:
;upload_tmp_dir =
To allow for uploads uncomment and give the tmp dir a home:
upload_tmp_dir = "/tmp"
The the most recent default installation of XAMPP on Lion has a couple of very important lines commented out (in regards to phpmyadmin/mysql). Not sure why, but I would love to learn the reasoning behind it.