Unidentified translation file found for installed mods prestashop - prestashop

Im working on a store in prestashop, and i tried to import the translation from another store into it (they are using the same theme). To do this i simply exported the files from one store and tried to import them into the other.
What happened is that i received this message:
1.Unidentified file found: modules/blocknewsletter/mails/pt/._newsletter_conf.html
2.Unidentified file found: modules/blocknewsletter/mails/pt/._newsletter_conf.txt
3.Unidentified file found: modules/blocknewsletter/mails/pt/._newsletter_verif.html
4.Unidentified file found: modules/blocknewsletter/mails/pt/._newsletter_verif.txt
5.Unidentified file found: modules/blocknewsletter/mails/pt/._newsletter_voucher.html
6.Unidentified file found: modules/blocknewsletter/mails/pt/._newsletter_voucher.txt
7.Unidentified file found: modules/sendtoafriend/mails/pt/._send_to_a_friend.html
8.Unidentified file found: modules/sendtoafriend/mails/pt/._send_to_a_friend.txt
I have made sure that both of the stores have the same modules installed, as well as the same versions of these modules, but the same message appears.
thank you.

You're using a Mac ._ are hidden files added by the system when you downloaded and explored the exported files. Then when you uploaded this export to the new site, those hidden files got uploaded too and Prestashop doesn't recognize it.
You should use dot_clean /path_to_your_extract command with Mac command line tool. This will remove all those unwanted ._ files. Then you will be able to import those files in your new shop.

Related

how to solve module build failed after changing file extension ( *.ts => *.tsx )?

after changing a specific file's extension from .ts to .tsx I get:
Compiled with problems:X
ERROR in ./src/components/SomeComp/someFile.ts
Module build failed (from ./node_modules/source-map-loader/dist/cjs.js):
Error: ENOENT: no such file or directory, open '.../someFile.ts'
ERROR
No files matching 'C:\Users...\src\components\SomeComp\someFile.ts' were found.
it has happened recently and somehow figured out on its own,
then i switched branches and when returned it happened again
I tried what was suggested here, clearing the browser cache How to get Chrome to reload source maps?
also restarted the react dev server couple of times
but still it tries to find the file with the old .ts extension...
searched as much as I could but didn't find a solve...
edit:
after changing the extension back and forth and restarting the dev server it has figured out, but I would still love to know what was happening and what perhaps what should be done to handle this situation correctly in the future

ERROR: [Radix Wallet Chrome Extension Load Unpack] : Manifest file is missing or unreadable. Could not load manifest

I am trying to follow the babylon gumball machine https://github.com/radixdlt/babylon-alphanet/tree/main/gumball-machine-example
I tried to install Radix Wallet Chrome Extension from :
https://docs.radixdlt.com/main/scrypto/alphanet/wallet-extension.html
I am getting following error :
Manifest file is missing or unreadable. Could not load manifest.
I tried to search for manifest.json , but I was not able to find it anywhere and in any sub-directory.
I tried to follow this stackoverflow : Chrome says my extension's manifest file is missing or unreadable
Can I get some help/guidance for resolving this bug?
As of 12/11/2022, the latest release for the alphanet wallet is 0.1.1 and the 0.1.5 release states there are no changes to the wallet so you just need to download the latest release with alphanet-walletextension-vX.X.X.zip, in this case:
alphanet-walletextension-v0.1.1.zip

Neo4j Desktop | Neo.ClientError.Statement.ExternalResourceFailed

Here, I simply introduce my situation about configuration:
System: Windows 11
Neo4j Desktop Version: 1.4.15
when I had finished that imports csv file to the C:\Users\ouyangkang\.Neo4jDesktop\relate-data\dbmss\dbms-00982ce7-0cb6-4ee7-b15a-1bc12ac5890e\import direcotry. I clicked open button and run following command:
LOAD CSV WITH HEADERS FROM 'file:///film_name.csv' AS row MERGE (n:name {name: row.name, encoding: row.encoding});
I got a error:
Couldn't load the external resource at: file:/C:/Users/ouyangkang/.Neo4jDesktop/relate-data/dbmss/dbms-00982ce7-0cb6-4ee7-b15a-1bc12ac5890e/import/film_name.csv
And I saw a similar error solution in Neo.ClientError.Statement.ExternalResourceFailed. I got a new error when configuration the neo4j.conf file
Couldn't load the external resource at: file:/film_name.csv
What's worse, I can't use the import function, it reminded that Trying to open undefined directory.
Please help me, thanks
I finially found the error that it is the file format question. The Neo4j not can use all csv file. You need to convert the file to guaratee the file format is standardized csv file with seperating by ','

In RStudio using bookdown, I am unable to compile a PDF version of my book. I get an error message "mathspec.sty" file not found

In RStudio (Windows 10) using bookdown, I am unable to compile a PDF version of my book. I get an error message "mathspec.sty" file not found. I installed it on my MikTex folder, but the error persists. How to solve this?
Then, I tried to compile to pdfdocument. Now, I got errors from Latex because bookdown is unable to link to my preamble.tex file. How to make preamble.tex visible?
I changed the latex _engine to pdflatex in the output.yml configuration file. This solved the problem for me, although I would still like to know how to use xelatex (i.e. where to include the mathspec.sty file).

Kivy: PyInstaller not including Kivy modules upon compiling spec file

I've been following Creating Packages for Mac OS from Kivy.org in order to try and create a .app for my Kivy .py file.
However, despite following the guide through, my App never works, it crashes instantly upon opening. Pyinstaller's warning's concerning the build were dumped in a .txt that contained the following:
W: no module named kivy.graphics.ClearBuffers (top-level import by kivy.uix.screenmanager)
W: no module named kivy.core.spelling.SpellingBase (top-level import by kivy.core.spelling.spelling_enchant)
W: no module named kivy.core.image.ImageLoader (top-level import by kivy.core.image.img_gif)
W: no module named multiprocessing.RLock (top-level import by multiprocessing.sharedctypes)
and so on . . . (Full file is very long, but can be viewed here)
It seems like no kivy modules at all could be found, so they must have not been included for some reason. This is what I want to ask how to fix.
As of right now, I have been using the commands:
kivy pyinstaller.py myapp.py
kivy pyinstaller.py myapp.spec
respectively to create both the spec file and the App.
The spec file doesn't seem to have anything missing. (I've included the hooks and checked with a working spec file I used to create an .exe in the past)
# -*- mode: python -*-
# -*- coding: utf-8 -*-
from kivy.tools.packaging.pyinstaller_hooks import install_hooks
install_hooks(globals())
a = Analysis(['Meep/Meep.py'],
pathex=['/Users/Owatch/Documents/pyinstaller/Meep'],
hiddenimports=[],
runtime_hooks=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='Meep',
debug=False,
strip=None,
upx=True,
console=False , icon='Meep/icon.icns')
coll = COLLECT(exe,Tree('/Users/Owatch/Desktop/examples/demo/touchtracer/'),
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='Meep')
Anyways, I'm not sure why this is occuring. My suspicions are mostly around the following:
1: I downloaded pyinstaller as a .zip since I could not find the .py file on my system. This is despite having it installed via pip on what I believe to be a separate python installation (I have 2.7 separately)
2: My reference to touchtracer is somehow wrong, it is linked to the touchtracer directory that came bundled in the dmg for Kivy. (A folder named Examples, which I dragged to my desktop)
Other than that, I'm afraid I'm pretty clueless. Thanks for helping (If you can!)
It appears that the error was associated with a flawed spec file. Nothing else to report.