Jump to content

mstdmstdd

Members
  • Posts

    146
  • Joined

  • Last visited

Posts posted by mstdmstdd

  1. Hello,
    Using DBeaver 6.1.5 under kubuntu 18.04 I wonder does it have feature
    like Save/Load Context - which is helpfull withing (1 or several databases ) to switch to different set of tables, save it and reopen when I need ?

    2) If I do not want to use all my databases on the current connection, How can I hide some databases, without deleting them?

    3) I see that after installation DBeaver has different fonts I have installed in my OS : https://imgur.com/a/4jiBJYi
    I have found “Preferences”->"Colors and Fonts ", but I failed to apply my system fonts to the app :
    preview
    even clicking on “Use system Font” button I do not see my system fonts applied to this app.
    How can I apply my system fonts? Maybe configuring some config files?

    Thanks!
     

  2. Hello!

    Google calendar event options has functionality to email guests  :
    https://prnt.sc/ot3vbk
    and it looks like 1 time function.
    If there is a way Google calendar event to keep listing of email guests and trigger emails to them periodically?
    Also I need these email guests  to import/export, as I make app with import/export of Google calendar events.

    Thanks!

  3. Hello,
    I do not know what happend with my PhpStorm 2019.1.2 last days but when I make a search in the app and
    double click on selected found item :
    https://imgur.com/a/y1YVNw5

    I expect modal page would be closed and editor page would be opened with found item selected.
    But that does not work and I still on modal page.
    The similar problem with clicking cancel on this modal page.
    Very annoying...

    But it worked several days ago and seems I did not change any setting or installed any pluging?

    Can you say how fix it?
    Thanks!
     

  4. Hello,
    Implementing paypal in my laravel 5.8 app 
    and looking at the code snippet :
    https://developer.paypal.com/docs/archive/checkout/integrate/?mark=get the code#set-up-your-development-environment

    I do not seer which is returns valid format?

    here https://developer.paypal.com/docs/integration/direct/payments/paypal-payments/#create-paypal-payment
    I found that redirect_urls must be used , so my button definition is :

                            <script>
                                paypal.Button.render({
                                    // Configure environment
                                    env: 'sandbox',
                                    client: {
                                        sandbox: 'CLIENTID',
                                        production: 'demo_production_client_id'
                                    },
                                    // Customize button (optional)
                                    locale: 'en_US',
                                    style: {
                                        size: 'small',
                                        color: 'blue',
                                        shape: 'pill',
                                    },
    
                                    commit: true,
    
                                    payment: function(data, actions) {
                                        return actions.payment.create({
    
                                            "note_to_payer": "Contact us for any questions on your order.",
    
                                            "intent": "sale",
                                            "payer": {
                                                "payment_method": "paypal"
                                            },
    
                                            redirect_urls : { //redirect_urls
                                                return_url : 'https://www.votes.nilov-sergey-demo-apps.tk/paypal_payment',
                                                cancel_url : 'https://www.votes.nilov-sergey-demo-apps.tk/paypal_payment_cancel'
                                            },
                                            
                                            transactions: [{
                                                amount: {
                                                    total: '0.01',
                                                    currency: 'USD'
                                                }
                                            }]
                                        });
                                    },
                                    // Execute the payment
                                    onAuthorize: function(data, actions) {
                                        console.log("onAuthorize data::")
                                        console.log( data )
    
                                        console.log("onAuthorize actions::")
                                        console.log( actions )
    
                                        return actions.payment.execute().then(function() {
                                            // Show a confirmation message to the buyer
    
                                            window.alert('Thank you for your purchase! 0');
                                        });
                                    }
                                }, '#paypal-button');
    
                            </script>
    

    I see alert in actions.payment.execute method, but no automatic rederection at url specified in return_url, as I expected.  
    I uploaded my site live at https://www.votes.nilov-sergey-demo-apps.tk under LAMP, Ubuntu 18 , Digital Ocean.
    Why there are no automatic redirection ?

        $ php artisan --version
        Laravel Framework 5.8.24
        
        In composer.json:
        "paypal/rest-api-sdk-php": "*",

    Thanks!

  5. Hello,
    I want to use SB Admin 2 template from https://github.com/dpwilhelmsen/sb-admin-2-bootstrap-4

    In my Laravel 5.7 / Vuejs 2.6 / Vuex 3.1/ Bootstrap 4.3  app and I take some steps for it :As it is based in metismenu In console I run next commands :

    npm install --save metismenu
    npm i popper
    
    npm audit fix
    
    
    

    In resources/js/app.js I included metismenu:

    require('./bootstrap');
    
    
    //require('popper');
    /* If to uncomment line above in console I got lot of errors :
     WARNING in ./node_modules/popper/index.js 235:35-58
    Critical dependency: the request of a dependency is an expression
     @ ./resources/js/app.js
     @ multi ./resources/js/app.js ./resources/sass/sb2/app.scss ./resources/sass/sb2/sb-admin-2.scss
     */
    
    require('metismenu');
    
    require('jquery');
    
    window.Vue = require('vue');
    ...
    
    

    In resources/js/helpers/commonFuncs.js which is used in all vue pages I init menu at method :

    export function checkAuthorization(store, router) {
        // console.log("-11 checkAuthorization::")
    
    
        router.beforeEach((to, from, next) => {
            jQueryInit();
    
            next();
    
    
        ...
        
        function jQueryInit() {
        // alert( "jQueryInit"+(-55) )
    
        $(function () {
            // alert( "INSIDE::"+var_dump(-11) )
            $('#side-menu').metisMenu();
            console.log("Inside $('#side-menu')::")
            console.log($('#side-menu'))
    
        });
    
    //Loads the correct sidebar on window load,
    //collapses the sidebar on window resize.
    // Sets the min-height of #page-wrapper to window size
        $(function () {
            var setupPage = function () {
                var topOffset = 50;
    
                console.log("++1 typeof window::")
                console.log(typeof window)
                console.log(window)
    
                var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
                if (width < 768) {
                    $('div.navbar-collapse').removeClass('show');
                    topOffset = 100; // 2-row-menu
                } else {
                    $('div.navbar-collapse').addClass('show');
                }
    
                console.log("++2 typeof window::")
                console.log(typeof window)
                console.log(window)
                var height = ((window.innerHeight > 0) ? window.innerHeight : screen.height) - 1;
                height = height - topOffset;
                if (height < 1) height = 1;
                if (height > topOffset) {
                    $("#page-wrapper").css("min-height", (height) + "px");
                }
    
            };
            // debugger
    
    
            $(window).bind("load resize", setupPage);
    
            var url = window.location;
            var element = $('ul.nav a').filter(function () {
                return this.href == url;
            }).addClass('active').parent();
    
            while (true) {
                if (element.is('li')) {
                    element = element.parent().addClass('in').parent();
                } else {
                    break;
                }
            }
    
            setupPage();
        });
        alert( "AFTER jQueryInit"+(-55) )
    }

    looking at console I do not see any JS errors and it looks that window is proper JS object.

    I suppose that is best place for init of metismenu.

    I did not attache any metisMenu.js / css files manually sopposing that command asbove

    require('metismenu');
    

    made it.

    But layout of my page is broken.
    You can look at it live at http://hostels-tours.nilov-sergey-demo-apps.tk/admin/dashboard
    Please, pay attention at console output : https://imgur.com/a/xZ0EVNgI added style definition :

    #wrapper {
      width: 100%;
      background-color: yellow;
      border: 2px dotted red;
    }
    

    to be sure that styling in resources/sass/sb2/sb-admin-2.scss are applied.
    What is wrong and is it possible to work in vue app metisMenu.js ?

    Thanks!
     

  6. I got errors in console :

    $ npm install --save Vue
    npm ERR! code E404
    npm ERR! 404 Not Found - GET https://registry.npmjs.org/Vue - Not found
    npm ERR! 404 
    npm ERR! 404  'Vue@latest' is not in the npm registry.
    npm ERR! 404 Your package name is not valid, because 
    npm ERR! 404  1. name can no longer contain capital letters
    npm ERR! 404 
    npm ERR! 404 Note that you can also install from a
    npm ERR! 404 tarball, folder, http url, or git url.
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     /home/serge/.npm/_logs/2019-06-18T14_42_06_261Z-debug.log
    
    
    

    and in mentioned log file :

    0 info it worked if it ends with ok
    1 verbose cli [ '/usr/bin/node', '/usr/bin/npm', 'install', '--save', 'Vue' ]
    2 info using npm@6.9.0
    3 info using node@v10.15.3
    4 verbose npm-session 7023bc00e3afa995
    5 silly install loadCurrentTree
    6 silly install readLocalPackageData
    7 http fetch GET 404 https://registry.npmjs.org/Vue 937ms
    8 http fetch GET 404 https://registry.npmjs.org/Vue 824ms
    9 silly fetchPackageMetaData error for Vue@latest 404 Not Found - GET https://registry.npmjs.org/Vue - Not found
    10 timing stage:rollbackFailedOptional Completed in 1ms
    11 timing stage:runTopLevelLifecycles Completed in 3721ms
    12 verbose stack Error: 404 Not Found - GET https://registry.npmjs.org/Vue - Not found
    12 verbose stack     at res.buffer.catch.then.body (/usr/lib/node_modules/npm/node_modules/npm-registry-fetch/check-response.js:104:15)
    12 verbose stack     at process._tickCallback (internal/process/next_tick.js:68:7)
    13 verbose statusCode 404
    14 verbose pkgid Vue@latest
    15 verbose cwd /mnt/_work_sdb8/wwwroot/lar/wiznext/msg-laravel-application
    16 verbose Linux 4.15.0-51-generic
    17 verbose argv "/usr/bin/node" "/usr/bin/npm" "install" "--save" "Vue"
    18 verbose node v10.15.3
    19 verbose npm  v6.9.0
    20 error code E404
    21 error 404 Not Found - GET https://registry.npmjs.org/Vue - Not found
    22 error 404
    23 error 404 'Vue@latest' is not in the npm registry.
    24 error 404 Your package name is not valid, because
    25 error 404 1. name can no longer contain capital letters
    26 error 404 Note that you can also install from a
    27 error 404 tarball, folder, http url, or git url.
    28 verbose exit [ 1, true ]
    

     

  7. I am not sure that I understand you, after installing of vuecsv.min.js I have
    /node_modules/vuecsv/dist/vuecsv.min.js file
    and in my vue file I tried to make like :

    <script>
    
    import {bus} from '../../../../app';
    import appMixin from '../../../../appMixin';
    
    //import
    import VueCSV from '/vuecsv/dist/vuecsv.min.js'; // /node_modules/vuecsv/dist/vuecsv.min.js
    Vue.use(VueCSV);
    
    Vue.component("csv-download" , VueCSV.CsvDownload )


    but in console I see error :

    ERROR in ./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& (./node_modules/babel-loader/lib??ref--4-0!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js&)
    Module not found: Error: Can't resolve '/vuecsv/dist/vuecsv.min.js' in '/mnt/_work_sdb8/wwwroot/lar/wiznext/msg-laravel-application/resources/js/components/Horizontal/personal/userLists'
    @ ./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& (./node_modules/babel-loader/lib??ref--4-0!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js&) 124:0-48 127:8-14 132:30-36
    @ ./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js&
    @ ./resources/js/components/Horizontal/personal/userLists/list.vue
    @ ./resources/js/routes.js
    @ ./resources/js/app.js
    @ multi ./resources/js/app.js ./resources/sass/Horizontal/app.scss ./resources/sass/Horizontal/style_lg.scss ./resources/sass/Horizontal/style_md.scss ./resources/sass/Horizontal/style_sm.scss ./resources/sass/Horizontal/style_xs_320.scss ./resources/sass/Horizontal/style_xs_480.scss ./resources/sass/Horizontal/style_xs_600.scss
    



    If i modify import line as :

    import VueCSV from 'vuecsv'; // /node_modules/vuecsv/dist/vuecsv.min.js
    

    I see error in npm console :

    This dependency was not found:
    
    * Vue in ./node_modules/vuecsv/dist/vuecsv.min.js
    
    To install it, you can run: npm install --save Vue
    


    sure I have vue installed.

    Which way is right?
     

  8. Yes, 

    I tried to change in resources/views/index.blade.php :

     

    <script src="{{ asset('js/app.js') }}{{  "?dt=".time()  }}"></script>
    <script type="text/javascript" src="{{ asset('js/vuecsv.min.js') }}"></script>


    Did you mean this?

     

    In this case erros in browser's  console :

    app.js?dt=1560861461:2822 Uncaught ReferenceError: VueCSV is not defined
        at Module../node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& (app.js?dt=1560861461:2822)
        at __webpack_require__ (app.js?dt=1560861461:20)
        at Module../resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& (app.js?dt=1560861461:81388)
        at __webpack_require__ (app.js?dt=1560861461:20)
        at Module../resources/js/components/Horizontal/personal/userLists/list.vue (app.js?dt=1560861461:81352)
        at __webpack_require__ (app.js?dt=1560861461:20)
        at Module../resources/js/routes.js (app.js?dt=1560861461:81978)
        at __webpack_require__ (app.js?dt=1560861461:20)
        at Module../resources/js/app.js (app.js?dt=1560861461:80236)
        at __webpack_require__ (app.js?dt=1560861461:20)
    ./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& @ app.js?dt=1560861461:2822
    __webpack_require__ @ app.js?dt=1560861461:20
    ./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& @ app.js?dt=1560861461:81388
    __webpack_require__ @ app.js?dt=1560861461:20
    ./resources/js/components/Horizontal/personal/userLists/list.vue @ app.js?dt=1560861461:81352
    __webpack_require__ @ app.js?dt=1560861461:20
    ./resources/js/routes.js @ app.js?dt=1560861461:81978
    __webpack_require__ @ app.js?dt=1560861461:20
    ./resources/js/app.js @ app.js?dt=1560861461:80236
    __webpack_require__ @ app.js?dt=1560861461:20
    0 @ app.js?dt=1560861461:82391
    __webpack_require__ @ app.js?dt=1560861461:20
    (anonymous) @ app.js?dt=1560861461:84
    (anonymous) @ app.js?dt=1560861461:87
    app.js?dt=1560861461:75903 You are running Vue in development mode.
    Make sure to turn on production mode when deploying for production.
    See more tips at https://vuejs.org/guide/deployment.html
    DevTools failed to parse SourceMap: http://127.0.0.1:8000/js/vue-slider-component.umd.min.js.map
    vuecsv.min.js:1 Uncaught TypeError: Cannot read property 'use' of undefined
        at Object.<anonymous> (vuecsv.min.js:1)
        at n (vuecsv.min.js:1)
        at Object.<anonymous> (vuecsv.min.js:1)
        at n (vuecsv.min.js:1)
        at Object.<anonymous> (vuecsv.min.js:1)
        at n (vuecsv.min.js:1)
        at Object.<anonymous> (vuecsv.min.js:1)
        at n (vuecsv.min.js:1)
        at Object.<anonymous> (vuecsv.min.js:1)
        at n (vuecsv.min.js:1)
    

     

     

  9. I tried this way and copied file vuecsv.min.js into my project as js/vuecsv.min.js.
    In my laravel container file resources/views/index.blade.php
    I include it after jquery and bootstrap files, but before app.js:
     

    @include('footer')
    <script src="{{ asset('js/jquery.min.js') }}"></script>
    <script src="{{ asset('js/bootstrap.bundle.min.js') }}"></script>
    
    <script type="text/javascript" src="{{ asset('js/vuecsv.min.js') }}"></script>
    
    <script src="{{ asset('js/metisMenu.min.js') }}"></script>
    <script src="{{ asset('js/waves.min.js') }}"></script>
    <script src="{{ asset('js/jquery.slimscroll.min.js') }}"></script>
    
    <script src="{{ asset('js/powerange.js') }}"></script>
    
    <script src="{{ asset('js/appInit.js') }}"></script>
    
    
    <script src="{{ asset('js/app.js') }}{{ "?dt=".time() }}"></script>
    
    </html>
    

    After that in browser's console I see errors :

    vuecsv.min.js:1 Uncaught TypeError: Cannot read property 'use' of undefined
    at Object.<anonymous> (vuecsv.min.js:1)
    at n (vuecsv.min.js:1)
    at Object.<anonymous> (vuecsv.min.js:1)
    at n (vuecsv.min.js:1)
    at Object.<anonymous> (vuecsv.min.js:1)
    at n (vuecsv.min.js:1)
    at Object.<anonymous> (vuecsv.min.js:1)
    at n (vuecsv.min.js:1)
    at Object.<anonymous> (vuecsv.min.js:1)
    at n (vuecsv.min.js:1)
    (anonymous) @ vuecsv.min.js:1
    n @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    n @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    n @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    n @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    n @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    (anonymous) @ vuecsv.min.js:1
    DevTools failed to parse SourceMap: http://127.0.0.1:8000/js/waves.min.js.map
    DevTools failed to parse SourceMap: http://127.0.0.1:8000/js/metisMenu.js.map
    app.js?dt=1560852335:2822 Uncaught ReferenceError: VueCSV is not defined
    at Module../node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& (app.js?dt=1560852335:2822)
    at __webpack_require__ (app.js?dt=1560852335:20)
    at Module../resources/js/components/Horizontal/personal/userLists/list.vue?vue&type=script&lang=js& (app.js?dt=1560852335:81388)
    at __webpack_require__ (app.js?dt=1560852335:20)
    at Module../resources/js/components/Horizontal/personal/userLists/list.vue (app.js?dt=1560852335:81352)
    at __webpack_require__ (app.js?dt=1560852335:20)
    at Module../resources/js/routes.js (app.js?dt=1560852335:81978)
    at __webpack_require__ (app.js?dt=1560852335:20)
    at Module../resources/js/app.js (app.js?dt=1560852335:80236)
    at __webpack_require__ (app.js?dt=1560852335:20)


    Any ideas why errors and how fix it ?
     

  10. Hello,
    In my Laravel 5.7 / Vuejs 2.6 / Vuex 3.1/ Bootstrap 4.3  app I want to use 
    https://demos.creative-tim.com/vue-argon-design-system/  template
    and in it's docs 
    https://demos.creative-tim.com/vue-argon-design-system/documentation/quick-start.html#quick-start
    I read :

    Quote

     

    Argon Kit is built as Vue plugin so you can simply import it and use it.

    import Vue from 'vue';
    import Argon from '@/plugins/argon-kit'
    Vue.use(Argon);


     

    I added such lines in my resources/js/app.js :

    import Vue from 'vue';
    ...
    import Argon from '@/plugins/argon-kit'
    Vue.use(Argon);
    

    I am not sure which files have I to copy into my project, I tried 
    to copy files from /vue-argon-design-system/src/plugins subdirectory :

    /vue-argon-design-system/src/plugins$ ls -la
    -rwxrwxrwx 1 root root  415 тра  5 15:11 argon-kit.js
    -rwxrwxrwx 1 root root 1182 тра  5 15:11 globalComponents.js
    -rwxrwxrwx 1 root root  297 тра  5 15:11 globalDirectives.js
    
    

    into /resources/js/plugins subdirectory of my projectbut npm console command raised error : 

    This dependency was not found:
    * @/plugins/argon-kit in ./resources/js/app.js
    To install it, you can run: npm install --save @/plugins/argon-kit
    ...
    
    ERROR in ./resources/js/app.js
    Module not found: Error: Can't resolve '@/plugins/argon-kit' in '/mnt/_work_sdb8/wwwroot/lar/Hostels2/resources/js'
     @ ./resources/js/app.js 12:0-40 13:8-13
     @ multi ./resources/js/app.js ./resources/sass/BS4/app.scss
    
    


    I tried to install plugin as in message above: 

    $ npm install --save @/plugins/argon-kit
    npm ERR! code ENOLOCAL
    npm ERR! Could not install from "@/plugins/argon-kit" as it does not contain a package.json file.
    ...
    
    

    Which is valid way to install argon into my app?

    Thanks!
     

  11. Hello,

    in my laravel 5.8 / vuejs 2.5 app I need to upload csv file and
    I found this https://github.com/ynishi/vuecsv plugin and tried to install it.
    But installing it I got errors in JS console:

    $ npm install ynishi/vuecsv
    
    > core-js@2.6.9 postinstall /mnt/_work_sdb8/wwwroot/lar/wiznext/msg-laravel-application/node_modules/core-js
    > node scripts/postinstall || echo "ignore"
    
    Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!
    
    The project needs your help! Please consider supporting of core-js on Open Collective or Patreon: 
    > https://opencollective.com/core-js 
    > https://www.patreon.com/zloirock 
    
    Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)
    
    
    > bootstrap-vue@1.5.1 postinstall /mnt/_work_sdb8/wwwroot/lar/wiznext/msg-laravel-application/node_modules/bootstrap-vue
    > opencollective postinstall || exit 0
    
    
                                                                                              Thanks for installing bootstrap-vue 
                                                                                         Please consider donating to our open collective
                                                                                                to help us maintain this package.
    
                                                                                                   Number of contributors: 227
                                                                                                      Number of backers: 31
                                                                                                       Annual budget: $774                                                                                                 
                                                                                                     Current balance: $1,190                                                                                               
                                                                                                                                                                                                                           
                                                                                 Donate: https://opencollective.com/bootstrap-vue/donate                                                                                   
                                                                                                                                                                                                                           
    npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules/fsevents):
    npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})                                                      
                                                                                                                                                                                                                           
    + vuecsv@0.0.10                                                                                                                                                                                                        
    added 44 packages from 32 contributors and audited 17038 packages in 87.476s                                                                                                                                           
    found 1 high severity vulnerability
      run `npm audit fix` to fix them, or `npm audit` for details
    
    


    The output above was somewhat unuaual, but was it just advirtisement?
    Next I run :

     npm audit fix
    npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules/fsevents):
    npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
    
    up to date in 8.632s
    fixed 0 of 1 vulnerability in 17038 scanned packages
      1 vulnerability required manual review and could not be updated
    
    

    After that package.json :

    {
        "private": true,
        "scripts": {
            "dev": "npm run development",
            "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
            "watch": "npm run development -- --watch",
            "watch-poll": "npm run watch -- --watch-poll",
            "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
            "prod": "npm run production",
            "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
        },
        "devDependencies": {
            "axios": "^0.18",
            "bootstrap": "^4.0.0",
            "cross-env": "^5.1",
            "jquery": "^3.4.1",
            "laravel-mix": "^4.0.7",
            "lodash": "^4.17.5",
            "popper.js": "^1.12",
            "resolve-url-loader": "^2.3.1",
            "sass": "^1.15.2",
            "sass-loader": "^7.1.0",
            "vue": "^2.5.17",
            "vue-template-compiler": "^2.6.10"
        },
        "dependencies": {
            "cors": "^2.8.5",
            "remove": "^0.1.5",
            "v-tooltip": "^2.0.2",
            "vee-validate": "^2.2.5",
            "vee-validate-laravel": "^1.1.0",
            "vue-js-modal": "^1.3.31",
            "vue-moment": "^4.0.0",
            "vue-notification": "^1.3.16",
            "vue-router": "^3.0.6",
            "vue-select": "^3.1.0",
            "vue-slider-component": "^3.0.31",
            "vue2-filters": "^0.6.0",
            "vuecsv": "github:ynishi/vuecsv",
            "vuejs-paginate": "^2.1.0",
            "vuex": "^3.1.0"
        }
    }
    
    

    I tried to use this https://jsfiddle.net/ynishif/1ztu8x8q/ fiddle,
    But I Got error referenced at my file :

    app.js?dt=1560770053:2823 Uncaught ReferenceError: VueCSV is not defined
        at Module../node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Horizontal/personal/userLists/list.vue?
        
    in /Horizontal/personal/userLists/list.vue:
    
    <script>
        ... 
        import Vue from 'vue';
        Vue.component("csv-download", VueCSV.CsvDownload)
    

    I am very confused as VueCSV is not defined anywhere, but it works if mentioned fiddle.
    That seems somewhat tricky for me, as looks like I try to attach VueCSV with reference to its method and I do not see how it works in the fiddle above?
     
    What did I miss?
     
    Thanks!

  12. Hello!
    I installed latest version of PhpStorm and I have problem that syntax of envoy is not supported:
    
    PhpStorm 2019.1.2
    Build #PS-191.7141.52, built on May 8, 2019
    Licensed to PhpStorm Evaluator
    Expiration date: June 26, 2019
    
    and imported all settings from prior versions.
    
    
    and syntax is not highlited at all : https://imgur.com/a/eIAvFxa
    I run menu item with all page selected 
    Code->Reformat Code
    It did not help.
    Can it be some additive options/pluging?
    
    
    Blade syntax is supported ok for all my blade.php files.
    
    Who works in phpstorm with envoy? Do you use phpstorm or some other editors?
    
    Thanks!
     
  13. Hello,
    Could you please look at design issue :

    http://178.128.145.48/login
    demo@demo.com   wdemo
    Page http://178.128.145.48/websites-blogs must be opened with preload data(Or click “Search” button).
    The problem is that if some rows have no image, bordered first letter must be shown, like : https://prnt.sc/nv9466
    I tried to center letter in red border(which must be of fixed width), but failed.
    Which is the right way?

    Thanks!
     

  14. Hello, 
    I install laravel 5.8 on new Ubuntu 16 instance under Digital Ocean.
    I need to install php 7.2 and for this I found this 
    https://medium.com/andrewmmc-io/upgrade-php-version-to-7-2-from-7-0-c005a0926642
    and after installing
    I got in console:

    # php -v
    PHP 7.2.18-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: May  3 2019 09:23:41) ( NTS )
    
    

    but phpinfo in browser shows :

    PHP Version 7.0.33-0ubuntu0.16.04.4

    How to refresh it in browser?
    Thanks!
     

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.