Recent Posts
-
Noodle redirects
Noodle verifies redirects it sends to your browser. If you are accessing Noodle through one IP/domain this will not effect you. If you use multiple IP/domains via NAT etc you will need one of 3 solutions: Add the IP/domains to the hosts file Add the IP/domains to your DNS (as A/CNAME and PTR) pointing to [...]
-
Safari instant features disabled
Safari (GET/POST) requests sometimes block other requests. In order to keep Noodle responsive we have disabled the instant features of Noodle on Safari. We don’t recommend using Safari; we do recommend IE, FF, and GC.
-
MSSQL Troubleshooting
If the Noodle log contains something like this: 2012.01.24 13:48:51: .intranet,ALERT: ConnectionAllocator: failed to allocate a new connection 2012.01.24 13:48:51: .intranet,ALERT+ The connection pool is empty! 2012.01.24 13:48:51: .intranet,ALERT+ due tocom.inet.tds.ab: Msg 4064, Level 11, State 1, Line 1, Sqlstate 01000 2012.01.24 13:48:51: .intranet,ALERT+ [WIN-5A73M1LPPMU]Cannot open user default database. Login failed.Error code: 4064 2012.01.24 13:48:51: [...]
-
pop quiz
All answers should be quite short (1-10 lines) In IE with JavaScript get an xml object (as sent from the server) from an iframe Dynamically call a java method from within java List the values of a column that have a 2nd column who’s value is not in any other row with SQL From a [...]
-
hiding corporate wisdom
This code can be added to a re-writer to hide corporate wisdom from profile pages. if(url.indexOf("UserView.po")>-1){ doc.getElementById("pie").parentNode.style.display="none"; doc.getElementById("StatisticsContent").previousSibling.style.display="none"; doc.getElementById("StatisticsContent").style.display="none"; }
-
Bind
If your server has more than one (non lo) IP you will need to bind Noodle to one of them for the license key to work. In the multiserver.conf look for lines like this: Connection.CM_?.Port = ? and add a line like this after each one: Connection.CM_?.BindAddress = ? example: Connection.CM_0.Port = 80 Connection.CM_0.BindAddress = [...]
-
DNS cache
Clearing the DNS cache on your computer: windows: ipconfig /flushdns OS X: dscacheutil -flushcache linux: /etc/init.d/nscd restart You can’t clear the cache on your ISPs DNS servers but you can use different servers (opendns, googledns, etc)
-
PostgreSQL requirements
Noodle works with PostgreSQL 7 to 9 and uses the contributions which are included in the windows installer but installed separately with package management systems like apt and yum. before PGSQL-v9 will need: CREATE LANGUAGE plpgsql; All versions need a user, database and rights and the following to load the lo-manage triggers(the windows Noodle installer will [...]
-
Noodle Files
Noodle uses 4 things on the server The Noodle folder (older versions are named IntraNet) The database folders (can be on a different server) The Java Folder The 7z folder (optional) On windows these are in %PROGRAMFILES% by default. On Linux the Noodle folder is in /opt/ by default. The Noodle folder may contain the [...]
-
Bigger links
You need custom scripts enabled. var doc=top.noodle.headDoc().document; var el=doc.getElementById("helpLink"); el.style.fontSize=""; el=doc.getElementById("feedback"); el.style.fontSize=""; el=doc.getElementById("logout"); el.style.fontSize=""; el=doc.getElementById("logout").parentNode.parentNode; el.style.fontSize="14px";
