MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. AlexHpoin
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    A
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Groups 0

    AlexHpoin

    @AlexHpoin

    0
    Reputation
    526
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    AlexHpoin Unfollow Follow

    Latest posts made by AlexHpoin

    • RE: I have some problems about config file

      @cowboysdude I did…but it does not work…

      posted in Troubleshooting
      A
      AlexHpoin
    • RE: I have some problems about config file

      @greda I use :

      sudo mv /var/www/html/config/config.js.sample /var/www/html/config/config.js
      
      

      to create my config file,and then reboot.

      posted in Troubleshooting
      A
      AlexHpoin
    • RE: I have some problems about config file

      @greda YES.I have saved my config.js to the right place```
      /config/config.js

      posted in Troubleshooting
      A
      AlexHpoin
    • RE: I have some problems about config file

      @cowboysdude

      npm WARN prefer global coffee-script@1.10.0 should be installed with -g
      npm WARN prefer global jsonlint@1.6.2 should be installed with -g
      npm WARN prefer global colorguard@1.2.0 should be installed with -g
      
      > uws@0.14.5 install /var/www/html/node_modules/uws
      > node-gyp rebuild > build_log.txt 2>&1 || exit 0
      
      
      
      posted in Troubleshooting
      A
      AlexHpoin
    • RE: I have some problems about config file

      @tomyboy96
      It shows please create a config file.
      Thank you

      posted in Troubleshooting
      A
      AlexHpoin
    • I have some problems about config file

      Last two weeks,I have began my project.But until now,I have faced a hard problems.
      My config.js has gone through the check without any problem.
      but It still can not work.
      Could someone help me find out where is wrong?
      THANK YOU VERY MUCH!!!

      
      var config = {
      	port: 8080,
      	ipWhitelist: [], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "zh",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "US Holidays",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "New York",
      				locationID: "1809062",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "c8d34ea2cd422XXXX4b1101e96e894d1"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				locationID: "1809062",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "c8d34ea2cd422XXXXXXX101e96e894d1"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "New York Times",
      						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      
      posted in Troubleshooting config problem
      A
      AlexHpoin