yum install -y epel-release
yum-config-manager --add-repo=https://nightly.odoo.com/10.0/nightly/rpm/odoo.repo
yum update && yum install odoo
enable odoo services
| masuk ke database, execute this: | |
| DELETE FROM ir_attachment WHERE url LIKE '/web/content/%'; | |
| restart Odoo | |
| ==== UNTUK ODOO 18 ==== |
source : https://stackoverflow.com/a/19333717
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>404 Page not Found</title> | |
| <style> | |
| .fundo{ | |
| animation: scales 3s alternate infinite; | |
| transform-origin: center; |
| <?php | |
| function strip_word_html($text, $allowed_tags = '<b><i><sup><sub><em><strong><u><br>') | |
| { | |
| mb_regex_encoding('UTF-8'); | |
| //replace MS special characters first | |
| $search = array('/‘/u', '/’/u', '/“/u', '/”/u', '/—/u'); | |
| $replace = array('\'', '\'', '"', '"', '-'); | |
| $text = preg_replace($search, $replace, $text); | |
| //make sure _all_ html entities are converted to the plain ascii equivalents - it appears | |
| //in some MS headers, some html entities are encoded and some aren't |
| $(function() { | |
| var map = new google.maps.Map(document.getElementById("map_canvas"), {}); | |
| var newyork = new google.maps.LatLng(40.69847032728747, -73.9514422416687); | |
| var googleMapWidth = $("#map_canvas").css('width'); | |
| var googleMapHeight = $("#map_canvas").css('height'); | |
| map.setCenter(newyork); | |
| $('#enter-full-screen').click(function(){ |
| # | |
| # CONFIGURATION FOR USING SMS KANNEL WITH RAPIDSMS | |
| # | |
| # For any modifications to this file, see Kannel User Guide | |
| # If that does not help, see Kannel web page (http://www.kannel.org) and | |
| # various online help and mailing list archives | |
| # | |
| # Notes on those who base their configuration on this: | |
| # 1) check security issues! (allowed IPs, passwords and ports) | |
| # 2) groups cannot have empty rows inside them! |