[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 1 Guest(s)
Post Reply 
Auto load YAMJ (using Eversion skin) on PCH A-300
06-18-2012, 04:18 AM
Post: #46
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
accident, I'm saying the yamj app with quick launch. Don't mean to be confusing. I landed here as I was trying to get up the YAMJ learning curve. Then, in another spot, I saw that once YAMJ app is working, you can set it to launch that way.
Find all posts by this user
Add Thank You Quote this message in a reply
06-18-2012, 04:24 AM
Post: #47
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
Yeah that's the normal way. This thread is about having it start with no clicks when you boot
Find all posts by this user
Add Thank You Quote this message in a reply
06-30-2012, 12:55 PM
Post: #48
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
Talking of the YAMJ app, is there a way to autostart that on boot?

It seems to be stored here:

Code:
/opt/syb/usr/popApps/1245/yamjloader.swf

However, my understanding is the autostart code in this thread can only start PHF files so is there a way to autolaunch the YAMJ SWF app on boot?
Find all posts by this user
Add Thank You Quote this message in a reply
06-30-2012, 07:44 PM
Post: #49
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
swf and phf are the same thing, it should work.
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to accident for this post
09-19-2012, 02:17 AM
Post: #50
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
I cannot get this to work on my A300.

I have YAMJ with Eversion working.
I have MNT apps installed and running.
I run NMTCommunityInstallerPortable on my WIN7
I installed Busybox on the NMT from my WIN7
I edited start_app.sh using "vim" adding wget line. I changed the wget path to point to eversion.phf

I "shutdown" my A300. When I power back up it does not start YAMJ.

What could be wrong??

[Image: all-fanart.jpg]
Find all posts by this user
Add Thank You Quote this message in a reply
09-19-2012, 02:38 AM
Post: #51
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
is eversion on a network path? or local storage
Find all posts by this user
Add Thank You Quote this message in a reply
09-19-2012, 04:11 AM
Post: #52
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
(09-19-2012 02:38 AM)halfelite Wrote:  is eversion on a network path? or local storage

Local disk.

[Image: all-fanart.jpg]
Find all posts by this user
Add Thank You Quote this message in a reply
09-19-2012, 04:27 AM
Post: #53
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
paste your wget path.
Find all posts by this user
Add Thank You Quote this message in a reply
09-19-2012, 08:18 PM (This post was last modified: 09-19-2012 08:19 PM by Danishdude.)
Post: #54
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
I can't get it to work either. My jukebox-folder is stored on an attached usb-drive (USB_DRIVE_B-1) and I tried addring the following line to start_app.sh: wget "http://127.0.0.1:8008/system?arg0=load_phf&arg1=/USB_DRIVE_B-1/Jukebox/eversion.phf&arg2=" (without the quotes). Nothing happend - oh, other than it didn't find my attached drives after the reboot Tongue Only the internal disk.

Edit: It changed the paths to all my attached drives :/

Popcorn Hour A-110 - 1 TB Samsung SpinPoint F1 HDD
YAMJ - AEON Movie Wall - Samsung LE40F86 (1080p)
Find all posts by this user
Add Thank You Quote this message in a reply
09-20-2012, 12:57 AM
Post: #55
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
because you did not paste the right line

wget -O /dev/null "http://127.0.0.1:8008/system?arg0=load_phf&arg1=/USB_DRIVE_B-1/Jukebox/eversion.phf&arg2="


you need the -0 and the /dev/null


Also i would not use USB_drive path stick your usb drive if internal on a windows machien and give it a label.
Find all posts by this user
Add Thank You Quote this message in a reply
09-20-2012, 01:18 AM
Post: #56
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
my full start_app.sh. I changed the http to hddp for this post because I do not have 10 posts yet.

I should note that I have my drive formatted with an NTFS partition that I keep all my media on. The "share" drive is formatted to ext3 and I run all my applications there.

Code:
#!/bin/sh
#

PATH=/share/Apps/Telnetd/bin:/share/bin:/share/Apps/AppInit:$PATH
HOME=/share
export TERM="xterm"
alias mc="mc -c"

#Copy waitimages when they are available
if [ -n "`ls -Al /share/Photo/_waitimages_/*.jpg 2>/dev/null`" ]; then
    cp /share/Photo/_waitimages_/* /bin
fi

#For some NMT hardware (like Popcorn B-110) compatibility may go up when creating a
#symbolic link HARD_DISK to SATA_DISK
if [ ! -d "/opt/sybhttpd/localhost.drives/HARD_DISK" ]; then
    ln -s /opt/sybhttpd/localhost.drives/SATA_DISK /opt/sybhttpd/localhost.drives/HARD_DISK
fi

#cleanup old files
rm -f /share/busybox 2>&1 >/dev/null
rm -f /share/commands.cgi 2>&1 >/dev/null
#M_A_R_K_E_R_do_not_remove_me

wget -O /dev/null "hddp://127.0.0.1:8008/system?arg0=load_phf&arg1=/opt/sybhttpd/localhost.drives/SATA_DISK/YAMJ/Jukebox/eversion.phf&arg2="

exit 0

[Image: all-fanart.jpg]
Find all posts by this user
Add Thank You Quote this message in a reply
01-27-2013, 11:21 PM
Post: #57
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
(09-19-2012 02:17 AM)rd48sec Wrote:  I cannot get this to work on my A300.

I have YAMJ with Eversion working.
I have MNT apps installed and running.
I run NMTCommunityInstallerPortable on my WIN7
I installed Busybox on the NMT from my WIN7
I edited start_app.sh using "vim" adding wget line. I changed the wget path to point to eversion.phf

I "shutdown" my A300. When I power back up it does not start YAMJ.

What could be wrong??

I was able to solve it by installing the python2.7 package from the opkg web menu.

[Image: all-fanart.jpg]
Find all posts by this user
Add Thank You Quote this message in a reply
05-04-2013, 10:16 PM
Post: #58
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
I'm not having any luck getting this to work....any suggestions?

Code:
#M_A_R_K_E_R_do_not_remove_me

sleep 10s

wget httd://127.0.0.1:8008/network_browse?arg0=list_network_content&arg1=/opt/sybhttpd/localhost.drives/NETWORK_SHARE/BluRays&arg2=&arg3=MYUSERNAME&arg4=MYPASSWORD&arg5=0&arg6=1&arg7=true&arg8=false&arg9=false&arg10

sleep 10s

wget httd://127.0.0.1:8008/system?arg0=load_phf&arg1=/opt/sybhttpd/NETWORK_SHARE/BluRays/Jukebox/eversion.phf&arg2=

exit 0
Find all posts by this user
Add Thank You Quote this message in a reply
05-05-2013, 12:07 AM
Post: #59
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
the pch does not mount shares on boot. you may be able to use the command with the nfs:// or smb:// path you can find in the yamj app. The only other alternative is 2 commands, 1 using the network_browse one to get the share to mount and then a second like you have to actually start it.
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to accident for this post
05-05-2013, 02:32 PM
Post: #60
RE: Auto load YAMJ (using Eversion skin) on PCH A-300
Thanks - I'll play around and see if I can find a way to make it work. My wife just can't remember how to load it manually so I'd really like to get it to auto launch.
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Help - I'm new to PCH and YAMJ plantunes 8 240 Today 03:12 PM
Last Post: wgstarks
Sad [YAMJ] YAMJ does not create scan files Jascha 20 515 Today 08:03 AM
Last Post: Omertron
  Banner help - YAMJ with eversion rave777 9 935 Today 07:29 AM
Last Post: mattty_d2002
  [YAMJ] JAVA 1.7 update 21 makes YAMJ crash! Specter 11 1,194 Yesterday 11:29 AM
Last Post: Omertron
  How to Setup Two YAMJ Jukeboxes? Cappy1 17 434 05-16-2013 08:38 PM
Last Post: Cappy1
  YAMJ-EVERSION-A300 Arry 12 427 05-15-2013 12:05 PM
Last Post: Omertron
  [YAMJ] DEF SKIN Bug with Series Ander 23 1,134 05-13-2013 03:23 PM
Last Post: Omertron
  YAMJ/ Eversion help flombs 3 302 05-11-2013 11:39 AM
Last Post: flombs
  eversion change selector frame color tutenchamun 2 245 05-06-2013 01:00 AM
Last Post: accident
  YAMJ 2.9 r3675 problem with java Hewon 25 1,571 04-28-2013 04:15 PM
Last Post: Omertron

Forum Jump: