opnecart 3.0.3.2 updated error Proxy::getGeneralSetting - opencart

Notice: Undefined property: Proxy::getGeneralSetting in /home/xxxx/public_html/xxxx/beta/system/engine/action.php on line 79
after updating opencart i ma getting this error in account section . kindly help

Related

FnaFB Golden Edition 2 Spooky Halloween Update script '(insert here)' line 40: nomethoderror occurred

" Script '(insert here)' line 40: NoMethodError occurred.
Undefined method 'dispose_battleback1' for nil:NilClass "
I have a problem and it is that when I want to fight against Springtrap this error appears
What I can do?

I have a problem running Foundation Watch (gulp error) - /_input-group.scss

The compile fails because of the error:
Error in plugin "sass"
Message:
node_modules\foundation-sites\scss\forms\_input-group.scss
Error: Incompatible units: 'rem' and 'rem*rem'.
on line 25 of node_modules/foundation-sites/scss/forms/_input-group.scss, in mixin `foundation-form-prepostfix`
from line 30 of node_modules/foundation-sites/scss/forms/_forms.scss, in mixin `foundation-forms`
from line 14 of scss/app.scss
> $height: ($input-font-size * $input-line-height) + (get-side($input-paddin
-----------^
I use the input-group features in login and sign forms and can't afford to not include the foundation-forms; in my app.scss file. This problem arised when i switched from win 7 to win 10.
Thanks for the answers but I have already found the solution. I updated the _input-group.scss file. See below.
From
$height: ($input-font-size * $input-line-height) + (get-side($input-padding, 'top') + get-side($input-padding, 'bottom')) - rem-calc(1);
to
$height: ($input-font-size + $form-spacing * 1.5);
Best regards,
Jure

Grails g:render template from plugin - not found

I need to render a template from a plugin to a .gsp page. I wrote : <g:render plugin="melanin 2.0.0" template="/m-melanin-fingerprint/m-melanin-fingerprint-sidebar"/>
But then I get this error :
Error 500: Error processing GroovyPageView: Template not found for
name [/m-melanin-fingerprint/m-melanin-fingerprint-sidebar] and path
[/m-melanin-fingerprint/_m-melanin-fingerprint-sidebar.gsp] Servlet:
grails URI: /RBCS/grails/VIBAction/index.dispatch Exception Message:
Template not found for name
[/m-melanin-fingerprint/m-melanin-fingerprint-sidebar] and path
[/m-melanin-fingerprint/_m-melanin-fingerprint-sidebar.gsp] Caused by:
Error processing GroovyPageView: Template not found for name
[/m-melanin-fingerprint/m-melanin-fingerprint-sidebar] and path
[/m-melanin-fingerprint/_m-melanin-fingerprint-sidebar.gsp] Class:
actionPlan.gsp At Line: [40] Code Snippet: 39: 40: 41:
This is my project:
Please help me fix it. Sorry my English is not good. Thank you.
try removing the version from your plugin-ref:
<g:render plugin="melanin" template="/m-melanin-fingerprint/m-melanin-fingerprint-sidebar"/>

I cannot put file with cfftp, any ideas why?

I am trying to create a function to upload two xml files to another website once a day, I can make a connection fine using this code
<cfftp action = "open"
username = "xxxx"
connection = "MyConnection"
password = "xxxx"
server = "xxx"
passive="yes"
secure="true">
but then when I try to put the file using this code
<cfftp
action="putFile"
connection="MyConnection"
localfile="xxx"
remotefile="xxx">
then I get this error
An error occurred during the sFTP putFile operation.
Error: Permission denied.
The error occurred in xxxxx: line 13
11 : connection="MyConnection"
12 : localfile="xxxx"
13 : remotefile="xxxx">
Additional background info is that I can upload via filezilla.
Just use passive="yes" with the putFile operation:
<cfftp
action="putFile"
connection="MyConnection"
localfile="xxx"
remotefile="xxx"
passive="yes">
I just had a look at some code I wrote a while ago that uses cfftp, and my remotefile contains the full path. Can you confirm if yours does this?
The error "permission denied" would make sense it if was trying to upload it into the wrong directory also. Let us know how you go.

repeatedly getting uncaught exception in firebug

my project suddenly was started to throwing exception in firebug,I've not added any new thing,I'm confused,the error:
uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMNSHTMLTextAreaElement.selectionStart]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://codeblogging.net/static/js/plugins.js :: :: line 99" data: no]
Line 0
I've just used django-tinymce in my project,but there was no problem until now,I removed the refrences to tinymce.js and tinymce-setup.js,but no difference!I really don't know what has happend!!
I finally updated firefox to 12 version and updated firebug to a compatible version,too.