I have installed Odoo 15 on my Asustor machine.
I first tried with the free download of Odoo via the image provided but it always gave me this error: ERR_CONNECTION_REFUSED
So I tried via the Asustor application which automatically creates two Docker containers (odoo and odoo/db), I found it convenient. But I still get the error :
ERR_CONNECTION_REFUSED
I checked if the Odoo service was started via "service odoo status", but it works fine.
I went to the logs under :
/var/log/odoo
But the folder is empty.
I have no idea...
Could someone help me?
Thanks
VJ
Related
I am trying to install Forticlient EMS onto Windows server. The apache service has been running fine however when running the application it loads with the following error:
Failed to load URL https://localhost/ with error ERR_CONNECTION_REFUSED (-102).
There is not much online to work with regarding this error. I changed the ports in the .conf file to 82 instead of 80 as it was clashing but stuck as to why this error is being produced. Has anyone come across this? This is not running in Chrome rather i am launching Forticlient EMS application for this error to show on the application.
I am trying to run fusion but I keep getting this error: error starting api: api service (pid 8156) failed
zookeeper and solr are started but when it comes to the api i get this error. Any insights are appreaciated.
Run cmd as admin and then try to run the command if that doesn't still work then go to conf/conf.properties and search for port number and change it to some free port on your machine.
Please start the fusion.cmd as Administrator. I faced the same issue and got resolved when I tried as administrator.
I have install pentaho 5.0.1-stable on my server.
and access it via local ip address port 8080 from the client.
Everything works fine accept the marketplace menu.
When i have opened marketplace, there is no item show and the javascript console log show error as following
[info] WD: Response: null
Uncaught TypeError: Cannot read property 'map' of null marketplace.js:113
impl.processPluginListResponse marketplace.js:113
fire jquery.js:1047
self.fireWith jquery.js:1165
done jquery.js:7400
callback jquery.js:8181
When i hit refresh button, it still error the same.
biserver in my localhost do work fine...
Does anyone have any idea how to fix this?
Please help,
Best Regards,
Is the server behind a firewall ?
the marketplace is not able to function in Pentaho 5.0.1 if you're using a firewall.
That has been fixed on 5.2 (or 5.1, can't remember).
Following the guide at https://www.openshift.com/developers/download-cartridges i wanted to try installing the CDK to see what it brings to the table. Unfortunately, I was unable to install the cartridge because of the following error:
Unexpected error: CLIENT_ERROR: Download of 'http://cdk-claytondev.rhcloud.com/archive/2ccd7a3a7762e4ebb873c0d64a247b180e0600b8/cdk.zip' exceeded Content-Length of 9728. Download aborted.
Execute rhc create-app cdk http://cdk-claytondev.rhcloud.com/manifest/2ccd7a3a7762e4ebb873c0d64a247b180e0600b8 against a local installation of OpenShift Origin. Or try to create an App throught the web console (again on a local installation, both are untested on rhcloud).
Looks like this was an issue on OpenShift Online also, which got fixed, but is still an issue on OpenShift Origin. Here is the bugzilla ticket for this issue (https://bugzilla.redhat.com/show_bug.cgi?id=1017776), I suggest you add your email address to it to be notified as they make progress against fixing it.
I get this error on host with simplepie 1.3.1:
A feed could not be found at http://pop-music.ir/feed. A feed with an invalid mime type may fall victim to this error, or SimplePie was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed.
but on localhost(xampp) I can view rss
UPDATED (2013/July/22 - 1:24 PM):
I've uploaded full simplepie files.download My source codes
on this file, in \simplepie\demo\1.php , I set this code:
<?php
include_once('../autoloader.php');
include_once('../idn/idna_convert.class.php');
$feed = new SimplePie();
$feed->set_feed_url('http://pop-music.ir/feed');
$feed->force_feed(true);
$feed->init();
$feed->handle_content_type();
echo $feed->get_title();
?>
But in the run-time error is not displayed and not RSS is checked!
When I check url rss like this http://pop-music.ir/feed on my script, I get error bu when check this url in demo simplepie (view demo this url) I can view rss!!!!
Help me :(
Ty using force_feed() as suggested and see if it works. http://simplepie.org/wiki/reference/simplepie/force_feed
If this works on your localhost and not your live server then it could be that you have a different configuration setup or modules loaded. I know for me I just didn't have the libphp-simplepie module installed.
If you have ssh access to your host you can install it manually.
Ubuntu
sudo apt-get install libphp-simplepie
You will have to confirm the download by typing 'Y'
Then you will need to restart apache for the changes to take effect
This was for an Ubuntu server if you have another server such as CentOS the process could be different. I just haven't tested it on another OS. This worked for me and maybe it will work for others.