Hello
I Bought keenthemes_mega_templates_bundle_v1.1.2 and want to use rider_vue_pro_v1.0.0.
But I can't even run it.
I create a dir with content from "keenthemes_mega_templates_bundle_v1.1.2\rider_vue_pro_v1.0.0.zip\rider_vue_pro_v1.0.0\theme\"
C:\temp\vue1>npm install
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: theme@0.1.0
npm ERR! Found: vue@3.2.47
npm ERR! node_modules/vue
npm ERR! vue@"^3.2.19" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer vue@"^2.6.12" from @fullcalendar/vue@5.11.4
npm ERR! node_modules/@fullcalendar/vue
npm ERR! @fullcalendar/vue@"^5.9.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR!
npm ERR! For a full report see:
npm ERR! C:\Users\sk\AppData\Local\npm-cache\_logs\2023-04-17T15_18_11_139Z-eresolve-report.txt
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\sk\AppData\Local\npm-cache\_logs\2023-04-17T15_18_11_139Z-debug-0.log
Than I run it with --force
38 vulnerabilities (2 low, 10 moderate, 21 high, 5 critical)
npm run serve
> theme@0.1.0 serve
> vue-cli-service serve
INFO Starting development server...
10% building 2/2 modules 0 activeError: error:0308010C:digital envelope routines::unsupported
at new Hash (node:internal/crypto/hash:71:19)
at Object.createHash (node:crypto:133:10)
at module.exports (C:\temp\vue1\node_modules\webpack\lib\util\createHash.js:135:53)
at NormalModule._initBuildHash (C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:417:16)
at handleParseError (C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:471:10)
at C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:503:5
at C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:358:12
at C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:373:3
at iterateNormalLoaders (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:214:10)
at iterateNormalLoaders (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:221:10)
at C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:236:3
at runSyncOrAsync (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:130:11)
at iterateNormalLoaders (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:232:2)
at Array.<anonymous> (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:205:4)
at Storage.finished (C:\temp\vue1\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:55:16)
at C:\temp\vue1\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:91:9
10% building 2/5 modules 3 active ...\temp\vue1\node_modules\eslint-loader\index.js??ref--13-0!C:\temp\vue1\src\main.tsnode:internal/crypto/hash:71
this[kHandle] = new _Hash(algorithm, xofLen);
^
Error: error:0308010C:digital envelope routines::unsupported
at new Hash (node:internal/crypto/hash:71:19)
at Object.createHash (node:crypto:133:10)
at module.exports (C:\temp\vue1\node_modules\webpack\lib\util\createHash.js:135:53)
at NormalModule._initBuildHash (C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:417:16)
at handleParseError (C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:471:10)
at C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:503:5
at C:\temp\vue1\node_modules\webpack\lib\NormalModule.js:358:12
at C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:373:3
at iterateNormalLoaders (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:214:10)
at Array.<anonymous> (C:\temp\vue1\node_modules\loader-runner\lib\LoaderRunner.js:205:4)
at Storage.finished (C:\temp\vue1\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:55:16)
at C:\temp\vue1\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:91:9
at C:\temp\vue1\node_modules\graceful-fs\graceful-fs.js:123:16
at FSReqCallback.readFileAfterClose [as oncomplete] (node:internal/fs/read_file_context:68:3) {
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
}
Node.js v18.15.0 and v18.16.0 on Windows 10 22H2
Hi Lauris,
I have downloaded the newest version available. Unfortunately the issue is still not fixed.
Do you have any news when the update will be available?
if you have apexcharts error: remove App<Element> type in initApexCharts(app: App<Element>).Then worked.
My code:
import { App } from "vue";
import VueApexCharts from "vue3-apexcharts";
/**
* Initialize VueApexChart component
* @param app vue instance
*/
export function initApexCharts(app) {
app.use(VueApexCharts);
}
Hello,
I followed your commands.
But "npm install" failed again.
"npm install --force" run through with "38 vulnerabilities (2 low, 10 moderate, 21 high, 5 critical)".
Don't looks promising.
"npm run serve" failed again with "Error: error:0308010C:digital envelope routines::unsupported".
This "fixes" this error with node 17/18 on windows with "old components" (written in forum).
But now "npm run serve" fails again with this.
ERROR in src/core/plugins/apexcharts.ts:9:7
TS2554: Expected 2 arguments, but got 1.
7 | */
8 | export function initApexCharts(app: App<Element>) {
> 9 | app.use(VueApexCharts);
| ^^^^^^^^^^^^^^^^^^
10 | }
11 |
ERROR in src/main.ts:27:5
TS2554: Expected 2 arguments, but got 1.
25 | app.use(store);
26 | app.use(router);
> 27 | app.use(ElementPlus);
| ^^^^^^^^^^^^^^^^
28 |
29 | ApiService.init(app);
30 | MockAdapter.init(app);
Please refund me my money.
Stefan
Hi Stefan,
Sorry for the inconvenience.
We rechecked this error and were able to reproduce this, we will release an update with a fix in a few days.
For now, as a temporary solution, you can update element-plus dependency.
"element-plus": "^2.3.3",
I am still getting
ERROR in src/core/plugins/apexcharts.ts:9:7
TS2554: Expected 2 arguments, but got 1.
7 | */
8 | export function initApexCharts(app: App) {
> 9 | app.use(VueApexCharts);
| ^^^^^^^^^^^^^^^^^^
10 | }
Hi Stefan,
Thank you for reaching out to us.
Unfourtunelty, we were not able to reproduce this issue in the latest Rider Vue. Try to do the steps below.
1)Run command npm cache clean --force</pre>.
2)Delete node_modules
, yarn.lock
and package-lock.json
.
3)Then execute npm install
again, if it will not work then run it with --force
flag. npm install --force
Regards,
Lauris Stepanovs,
Keenthemes Support Team