Getting sasc-ng to work properly with systemd service files [SOLVED]

This thread is intended for getting the following AUR packages to work with each other with systemd service scripts:
https://aur.archlinux.org/packages/open-sasc-ng-dkms/
https://aur.archlinux.org/packages/open-sasc-ng/
https://aur.archlinux.org/packages/oscam-svn/   (this is a related package as it must properly execute prior to sasc-ng)
So my server is now on a fresh Arch install with systemd. All is well (& very fast) except I cannot get sasc-ng to function with systemd service init files. Prior to systemd the system worked fine with the rc initscripts & was very stable with the following setup:
rc.local
/etc/rc.d/oscam start
sleep 15
/etc/rc.d/sasc-ng start
sleep 4
/etc/rc.d/mythbackend start
/etc/conf.d/sasc-ng.conf
SASCNG_ARGS="-j 0:3 -j 1:4 -j 2:5" -b 16M --sid-allpid --sid-nocache --cam-budget"
DVBLOOPBACK_ARGS="num_adapters=3"
LOGDIR="/home/mythtv/logs/"
CAMDIR="/etc/camdir"
/etc/camdir/cardclient.conf
camd35:localhost:15050:1/0000/0000:mythtv:mythtv
I'll leave out the oscam stuff as that loads fine and doesn't appear to be a part of the problem
I've tried this with the systemd service file that comes with the open-sasc-ng-dkms package and when it was not sucessful I tried a bunch of variants including using "Type=simple" ect. "Type=Forked" seems to be only option that actually tries to start the processes. I also "hardcoded" the service files for the 2 sasc-ng components to find a few issues with the EnvironmentFile variables. The log variable has been removed for now as this seems to cause a fatal error but the rest of the variables load fine now. I also tested spliting up the DVB loopback module from the sasc-ng binary but this also gives similar results as the following script stands now. Running them manually with systemctl start commands doesn't make a difference but that is not surprising. The service file I'm fiddling with now which I feel has the best potential become working is:
sasc-ng.service
[Unit]
Description=Sasc-ng
After=oscam.service
[Service]
Type=forking
EnvironmentFile=/etc/conf.d/sasc-ng
ExecStartPre=/sbin/modprobe dvbloopback $DVBLOOPBACK_ARGS
TimeoutSec=2
ExecStart=/usr/sbin/sasc-ng -D $SASCNG_ARGS --cam-dir=$CAMDIR
TimeoutSec=4
[Install]
WantedBy=multi-user.target
Mythbackend always runs fine (even without DTV via sasc-ng) with the following mythbackend.service:
[Unit]
Description=MythTV_backend
After=sasc-ng.service
[Service]
Type=simple
Environment=MYTHCONFDIR=/etc/conf.d/mythbackend
Environment=HOME=/usr/share/mythtv
User=mythtv
ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv
[Install]
WantedBy=multi-user.target
oscam.service taken mostly from AUR package also seems fine. I added the TimeoutSec=15 to give time for oscam to load the SC and client protocol before moving on or else sasc-ng fails
Unit]
Description=An Open Source Conditional Access Module software
After=network.target
[Service]
Type=forking
EnvironmentFile=/etc/conf.d/oscam
ExecStart=/usr/bin/oscam $OSCAM_ARGS
TimeoutSec=15
[Install]
WantedBy=multi-user.target
Below is the output of the systemctl status commands. Despite the noise in the sasc-ng binary status, it is the loopback module that is " inactive (dead)" and there are no virtual DVB devices being created:
[mythtv@server ~]$ sudo systemctl status oscam.service
oscam.service - An Open Source Conditional Access Module software
Loaded: loaded (/usr/lib/systemd/system/oscam.service; enabled)
Active: active (running) since Tue, 2012-11-27 21:10:17 CET; 1min 7s ago
Process: 338 ExecStart=/usr/bin/oscam $OSCAM_ARGS (code=exited, status=0/SUCCESS)
Main PID: 377 (oscam)
CGroup: name=systemd:/system/oscam.service
├ 377 /usr/bin/oscam -b -c /etc/oscam
└ 378 /usr/bin/oscam -b -c /etc/oscam
Nov 27 21:10:17 server systemd[1]: Started An Open Source Conditional Acces...e.
[mythtv@server ~]$ sudo systemctl status loopback.service
loopback.service - Sasc-ng DVB Loopback Module
Loaded: loaded (/etc/systemd/system/loopback.service; enabled)
Active: inactive (dead) since Tue, 2012-11-27 21:10:28 CET; 1min 27s ago
Process: 907 ExecStart=/sbin/modprobe dvbloopback num_adapters=3 (code=exited, status=0/SUCCESS)
CGroup: name=systemd:/system/loopback.service
Nov 27 21:10:28 server systemd[1]: Started Sasc-ng DVB Loopback Module.
[mythtv@server ~]$ sudo systemctl status sasc-ng.service
sasc-ng.service - Sasc-ng
Loaded: loaded (/etc/systemd/system/sasc-ng.service; enabled)
Active: failed (Result: exit-code) since Tue, 2012-11-27 21:10:47 CET; 1min 45s ago
Process: 913 ExecStart=/usr/sbin/sasc-ng -D -j 0:3 -j 1:4 -j 2:5" -b 16M --sid-allpid --sid-nocache --cam-budget --cam-dir=/etc/camdir -l /home/mythtv/logs/sasc-ng.log (code=exited, status=0/SUCCESS)
Main PID: 921 (code=exited, status=255)
CGroup: name=systemd:/system/sasc-ng.service
Nov 27 21:10:39 server sasc-ng[921]: [921] [general.error] failed open /etc...ry
Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc...ry
Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc...ry
Nov 27 21:10:40 server sasc-ng[921]: [921] [general.info] loading cardclien...nf
Nov 27 21:10:42 server sasc-ng[921]: [1062] Netwatcher thread started (pid=...6)
Nov 27 21:10:42 server sasc-ng[921]: [921] [general.error] no keys loaded f...m!
Nov 27 21:10:46 server sasc-ng[921]: [1098] SC housekeeper thread started (...2)
Nov 27 21:10:47 server sasc-ng[921]: [1062] Netwatcher thread ended (pid=92...6)
Nov 27 21:10:47 server systemd[1]: sasc-ng.service: main process exited, co.../a
Nov 27 21:10:47 server systemd[1]: Unit sasc-ng.service entered failed state
[mythtv@server ~]$ sudo systemctl status sasc-ng.service
sasc-ng.service - Sasc-ng
Loaded: loaded (/etc/systemd/system/sasc-ng.service; enabled)
Active: failed (Result: exit-code) since Tue, 2012-11-27 21:10:47 CET; 2min 9s ago
Process: 913 ExecStart=/usr/sbin/sasc-ng -D -j 0:3 -j 1:4 -j 2:5" -b 16M --sid-allpid --sid-nocache --cam-budget --cam-dir=/etc/camdir -l /home/mythtv/logs/sasc-ng.log (code=exited, status=0/SUCCESS)
Main PID: 921 (code=exited, status=255)
CGroup: name=systemd:/system/sasc-ng.service
Nov 27 21:10:39 server sasc-ng[921]: [921] [general.error] failed open /etc/camdir/smartcard.conf: No such file or directory
Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc/camdir/cardslot.conf: No such file or directory
Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc/camdir/SoftCam.Key: No such file or directory
Nov 27 21:10:40 server sasc-ng[921]: [921] [general.info] loading cardclient config from /etc/camdir/cardclient.conf
Nov 27 21:10:42 server sasc-ng[921]: [1062] Netwatcher thread started (pid=921, tid=140074379712256)
Nov 27 21:10:42 server sasc-ng[921]: [921] [general.error] no keys loaded for softcam!
Nov 27 21:10:46 server sasc-ng[921]: [1098] SC housekeeper thread started (pid=921, tid=140074371319552)
Nov 27 21:10:47 server sasc-ng[921]: [1062] Netwatcher thread ended (pid=921, tid=140074379712256)
Nov 27 21:10:47 server systemd[1]: sasc-ng.service: main process exited, code=exited, status=255/n/a
Nov 27 21:10:47 server systemd[1]: Unit sasc-ng.service entered failed state
[mythtv@server ~]$
Any ideas?
Last edited by wdirksen (2012-12-10 19:54:43)

After some head scratching it seems to be all good now. Considering there have been no replies to this I've come to wonder if I might be the only one with this issue. I could get it working somewhat using service files but never ideal, ex. sasc-ng only using a few of the entitlements from oscam because it started too quick etc. Anyway this might help a few and I'm hoping the linux savvy who find what I'm writing here painfully newbie like or flawed will reply and educate me a bit if what's provided here needs some sharpening up:
1) Systemd was confusing the sasc-ng binary shorthand arguments with Linux init arguments and a few were misinterpreted if they were not nested into the environment specifiers. So the -l (log) was causing problems and -b (buffer) wasn't loading. To be safe I'm using only the sasc-ng longhand specifiers from now on (two "--" and more verbose) so that they can never be confused even if safely nested in an environment parameter. That means that /etc/conf.d/sasc-ng will also need to be changed to reflect this. I also decided to simplify the LOGFILE parameter to include the whole argument syntax.
2) Oscam.service needs to be initiated with oneshot and RemainAfterExit=yes to make sure the delay (15 seconds in my config) gets counted out before sasc-ng initiates.
[EDIT 12/12/2012: Initially I had a second TimeoutSec=2 after ExecStart in sasc-ng.service but this had no function. Turns out that it almost always does work without this delay but not always with my setup. Adding TimeoutSec=2 to mythbackend.service prior to ExecStart command does function and makes things init more consistant]
sasc-ng.service
[Unit]
Description=Sasc-ng
After=oscam.service
[Service]
Type=simple
EnvironmentFile=/etc/conf.d/sasc-ng
ExecStartPre=/sbin/modprobe dvbloopback $DVBLOOPBACK_ARGS
TimeoutSec=2
ExecStart=/usr/sbin/sasc-ng $SASCNG_ARGS --cam-dir $CAMDIR --log $LOGFILE
[Install]
WantedBy=multi-user.target
/etc/conf.d/sasc-ng
SASCNG_ARGS="--join 0:3 --join 1:4 --join 2:5 --buffer 16M --sid-allpid --sid-nocache --cam-budget"
DVBLOOPBACK_ARGS="num_adapters=3"
LOGFILE="/home/mythtv/logs/sasc-ng.log"
CAMDIR="/etc/camdir"
oscam.service
[Unit]
Description=An Open Source Conditional Access Module software
After=network.target
[Service]
Type=oneshot
EnvironmentFile=/etc/conf.d/oscam
ExecStart=/usr/bin/oscam $OSCAM_ARGS
TimeoutSec=15
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
mythbackend.service
[Unit]
Description=MythTV_backend
After=sasc-ng.service
[Service]
Type=simple
TimeoutSec=2
Environment=MYTHCONFDIR=/etc/conf.d/mythbackend
Environment=HOME=/usr/share/mythtv
User=mythtv
ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv
[Install]
WantedBy=multi-user.target
I will make the related changes to the open-sasc-ng AUR package which I currently maintain
Last edited by wdirksen (2012-12-23 14:40:43)

Similar Messages

  • Why can't I get Constant Guard to work properly with firefox. I have done as constant guard asked, but find no constant guard add-on in firefox. I want to use

    I have been intouch with constant guard , have uninstalled and re-installed it but it doesn't work properly. when I go to your add-ons it does not show up and I want to use constant guard and firefox. Please help me so I don't have to go to another web browser. thanks.

    Previously if you install the latest version and run the live update it will run with the latest Firefox 26.
    [https://support.norton.com/sp/en/us/home/current/solutions/kb20100122090203EN_EndUserProfile_en_us;jsessionid=C82CB2618DC3ABEC3C2C2655D71B7AB2.4]
    However this is not the first time reported that there is trouble with this. The add on was broken in version 20 [https://bugzilla.mozilla.org/show_bug.cgi?id=694974]
    Please see this previous question for more details: [https://support.mozilla.org/en-US/questions/956200]
    Can you please provide the source of the add on?

  • Motion 3.0.1 - cannot get point tracker to work properly with mask -Help

    I can't get the behavior called point tracker under shapes category to properly work with a mask. Motion either quits unexpectedly with the message or goes into "not responding" mode.
    Here are the steps: I set up the foreground and background shots in Final Cut Pro 6, then "sendto" motion (embeded checked).
    In Motion I create a simple mask around the foreground object (talking head). With the playhead at the start of the clip, I go the behaviours - shapes - point tracker and apply to mask.
    Next in Inspector I check tangents and then analyse. This can take a long time.. When it completes I save and go back to Final Cut. Final Cut then quits unexpectedly after about 10-15 minutes in beach ball mode. If I exit Motion and try to re-open the project, Motion also quits unexpectedly.
    What is going wrong? Please help?

    giggles200742 wrote:
     I have tried the forced removal, as per many instructions here. I did NOT dl the Beta 10.1.
    With "forced" removal, do you mean using the -force option?  This is only for the 10.1 beta removal; it has no effect on the uninstall of the released version.
    To uninstall the released Flash Player version, download the uninstaller from http://kb2.adobe.com/cps/141/tn_14157.html and save it to disk.
    Next, download the offline ActiveX installer http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe; save it to disk.
    Now close all browser windows, then run the downloaded uninstaller.  If you want to make sure that everything related to Flash Player is removed, run it with the /clean option.
    Now reboot Windows, then run the downloaded installer.

  • It takes a few restarts to get my display to work properly with my G5..why?

    Sometimes when I start my G5 the cinema display doesn't start up with it (the picture that is, you can hear the display working but no picture!) and I have to keep restarting the G5 until it does! It usually always does start up after 2 or 3 restarts (sometimes even more) but I was wondering if anyone has some advice as to why this is? Is it likely to be a fault with the G5 or my cinema display? I don't understand why it always works eventually. Can anyone explain what is going on? It is starting to get really ridiculous having to keep on restarting!
    Thanks, Adam

    Hello and thanks for your reply. Sorry I have left it so long before returning.
    Errmm, my room can get cold with the radiator off but I wouldn't call it freezing as there is usually something on in the rest of the house. What evidence is there that temperature would affect the start up of the display? Just wondering that's all.
    Regarding the sound of the display. I'll have to restart it again and have a good listen. Maybe it is the actual G5 I am hearing and it is somehow sounding odd when the display doesn't come on. The times when the display comes on normally, everything seems to sound right if you know what I mean. Maybe I can record this on my camera or something and post that for you to watch (don't know if you can upload things to a post).
    Regarding the torch or bright light into the screen. I'll give that a go and post back.
    Thanks for your help
    Adam

  • Cant get Apple TV to work properly with older flat panel TV.

    I have an older flat panel, a 42" philips 42pf9630a. This one:
    http://www.retrevo.com/support/Phili.../278bh337/t/2/
    I plugged my brand new Apple TV into the HDMI and switched input on the TV. I can see the Apple TV main menu but it blips in and out, toggling between the main menu and snow. Obviously there's some sort of communication issue between the Apple TV and my Philips. I have successfully used this apple TV on several other TV's in the past couple of months.
    Is it because my TV is too old? Any suggestions on what I can do to fix this??
    Thanks for your help!

    Go in to the network and sharing center (in control panel), with the pc connected by wire. Right inder the little "map" of her network, it will list the available networks (probably only one listed), click customize and set it to private, you can also name it if you want so its more easily identified.
    Also, make sure file sharing and network discovery are "on".
    Message Edited by Frunple on 03-17-200705:50 AM

  • Just moved my email from entourage to Mail. Having real problems with getting my signatures to work properly. When adding in a small company logo, windows computers only receive signature as an attachment. Am sending email as Rich Text. Any ideas on a fix

    Just moved my email from Entourage to Mail. Having real problems with getting my signatures to work properly despite sending email as Rich Text.
    When adding in a small company logo to the signature, PC's / windows computers only receive signature and logo as attachments.
    I've tried all possible fixes I can find including getting a PC user to format the logo but no joy. Has anyone experienced this and any ideas on a fix gratefully received.

    Send it as html so the signature is an image source URL

  • Hi friends, I'm having troubles with my Ipad 2. I was working with it and suddenly the screen distorted. Now it is not possible to get it back to work properly. In fact, the screen is now black and nothing I have done makes the Ipad works again. Thanks

    Hi friends, I'm having troubles with my Ipad 2. I was working with it and suddenly the screen distorted. Now it is not possible to get it back to work properly. In fact, the screen is now black and nothing I have done makes the Ipad works again. Please Help. Thanks in advance.

    I think you should make an Genius Appointment.
    Genius Appointment
    http://www.apple.com/retail/geniusbar/

  • Why can't I get open type features to work properly with an open type font on InDesign CS5.5?

    I installed a very complete set of styles of an opentype font with Font Book – Mac OS X 10.9.4 – but when I tried to format a sample text on InDesign CS5.5 I noticed that I could not use the opentype features on the Open Type menu as I usually do.
    Could anyone help me, please?

    It's ffScala Sans, but has separate files for small caps, figures, etc.
    I was trying to use small caps, lining figures and superscripts when I
    noticed none of the OT features are available.
    2014-07-30 21:56 GMT+01:00 Miguel Sousa <[email protected]>:
        Why can't I get open type features to work properly with an open type
    font on InDesign CS5.5?  created by Miguel Sousa
    <https://forums.adobe.com/people/MiguelSousa> in Adobe Type - View the
    full discussion <https://forums.adobe.com/message/6598614#6598614>

  • HT4528 I installed the new update and it is frozen with a picture of the charger head, an arrow pointing to a iTunes image. How do I get my phone to work properly?

    I installed the new update and it is frozen with a picture of the charger head, and an arrow pointing to a iTunes icon. How do I get my phone to work properly?

    What happened when you tried to restore and update the iPod?

  • HP computer will not work properly with an HP printer

    I have the following two items that I am trying to use together:
     - HP 23" TouchSmart Desktop, T6500 2.1GHz 4GB DDR3, 500GB HDD (Windows 7)
     - HP OfficeJet 6500 Multi-Function Printer/Scanner/Fax
    When I try to scan to Adobe Acrobat Professional 9.0, the document goes through the scanner, however the dialog box that I would expect (e.g. "Next Page" or "Done") never shows up.  At this point, the system is unresponsive with respect to Adobe or the printer.
    I suspect that it is waiting for the input from the dialog box that never showed up.  I tried to move the other windows to see if the dialog opened in the background, however I am not able to select any of them (they remain frozen).
    I contacted HP Support, only to have them tell me it must be the driver, and I have an "old" printer.  (I did not realize that a 9 month old printer was considered "old").  I have tried all of the possible drivers that are available (original disk, downloads, other downloads from HP tech support), none of these resolves the problem.
    In any case, they were unable to resolve the problem of having an HP computer work properly with an HP printer.  (The printing function seems to work, just very slowly).
    Has anyone else heard of this?  Is there a resolution?

    Update: I am still looking for a solution to this problem - the scanning portion of the Multi-function OfficeJet 6500 does not work properly with the HP TouchSmart computer.
    I have not been able to find anyone in HP that can tell me when (or if) new drivers will be released for this printer.
    I decided to investigate upgrading to a newer version of printer since HP told me the 9 month old printer I have was "obsolete", only to find that the identical printer is still on sale in many stores.  Hmmm....
    I feel like I am getting the run-around from HP.
    I have since tried several more driver/software combinations, but every time I have the same problem (as described in the previous post).
    If anyone has any ideas or suggestions, I would be most happy to hear them.
    Thank you.

  • Satellite Pro L20 doesn't work properly with USB Fast Track audio i.f.

    Hello!
    I have used my Fast Track USB on new Toshiba Satellite L40 and I never had problems with it. I could set low latency and I did few songs with it.
    Yesterday I bought another notebook, thinking of home recording studio. It's used Toshiba Satellite Pro L20. It doesn't work properly with my interface. When I listen music on Winamp or do anything on Fruity Loops I hear loud clicks, pops, noises. They introduce samples, or they appear during playback or after a sample is stopped.
    I noticed, drivers for Satellite Pro L20 are a problem. Its not supported by Toshiba anymore?! The only drivers for chipset are very old and you can download em only from Toshiba website. The chipset is ATI Xpress 200M. Its drivers are with graphic card. Recently I noticed you can download "ATI Catalyst Legacy Display Driver for Windows XP - Motherboard/IGP Drivers 9.11" and CRACK IT to make it possible to install on mobile unit such as L20. Yep its funny but its impossible to do otherwise!
    things I have tried and they still not help:
    # drivers replacement, original were released in 2004. I installed recent version.
    # driver settings, low latency, high latency
    # asio and different settings
    # pluging the interface to another usb socket.
    # trying what happens when I use battery and when I use adapter
    # updated bios
    # turned off onboard units such as wifi card, sound card
    # checked IRQ list
    pops still appear.
    my config:
    Toshiba Satellite Pro L20
    Win XP Home SP3
    Celeron M 1,5GHz
    896Mb ram
    M-Audio Fast Track USB, drivers: 6.0.2
    Kind regards

    Thanks for answer. I still have L40 but I try to run my homerecording on L20. The L40 is now used by whole my family. It's possible to swap them but there's a problem - L20 has Norway keyboard and I'm the only person at home who doesn't often look down while typing. In Poland, we use standard ms keyboard. I'd buy special stickers, it's about only to make special chars get back to their places.
    I installed Windows on this computer end set it to best performance possible.
    Since I created this thread, guys from M-Audio support tried to solve my problem - nothing helped. I think potential solutions are exhausted.
    Message was edited by: lidia.pochron

  • Old Netscape console 4.2 not working properly with new Directory Server 5.2

    After successfully installing Messaging Server 5.2 and applying patch 2, the old Netscape Console doesn't work properly, I tried running the script which is given in the link
    http://docs.sun.com/source/816-6734-10/index.html
    which hobbles the server by creating a set of dummy jar files in order for the directory server console not making any changes on the messaging server. At first I got these messages:
    Failed to install a local copy of msgadmin52.jar or one of its supporting files: not a ZIP file (END header not found)
    I got the same message for these 2 files:
    admserv42.jar
    msgadmin52.jar
    After that I made real dummy jar files using a zero-length file I created with touch and I got these messages:
    class com.netscape.management.admser.AdminServer not found
    After that I erased all the files created by the script and I get these messages:
    failed to install a copy of admserv51.jar or one of its supporting files: null
    failed to install a copy of msgadmin.jar or one of its supporting files: msgadmin52.jar not found at http://192.168.10.205:5001/
    and for admserv42.jar I get the same message
    Does anyone have a clue on what to do next??
    thanks in advance
    Eduardo

    The thing is that the netscape console 4.5 won't work properly with messaging server 5.2, and the directory server console is not working properly for the directory server. I already know the limitations about these consoles since it is explained in the doc where the procedure of migrating from a 4.x directory server to 5.1. I

  • Will Dreamweaver CS4 work properly with 10.6.1 Snow Leopard?

    Hello
    Can anyone tell me please, if Adobe Dreamweaver CS4 work properly with my MacBook OS 10.6.1 Snow Leopard? Adobe state "Mac OS X v10.4.11–10.5.4" in the system requirements, but does this mean, in practise, that Dreamweaver will not work properly with Snow Leopard?
    I have tried to find info about this here, but have spend ages wading through masses of complaints about various applications crashing for people after they upgraded to 10.6.1 Snow Leopard. Personally, touch wood, I've had no problems with Snow Leopard, but I only really use it for Internet surfing and word processing (my work, music stuff on Logic Pro 8, is done on my Mac Pro which came with Leopard and which I am NOT upgrading - not yet!).
    I have also attempted to get an answer from Adobe - I 'phoned their "Pre-sales enquiries" number 0800 028 0148 (in the UK) and spoke to someone who sounded as if she was on the moon and who clearly had absolutely no idea what I was talking about. I gave up with them! They didn't give an email address to ask on.
    I'd be very grateful if anyone can give a clear, authoritative answer please - if possible.

    I've been a Mac user since 1987 and have never upgraded the OS too soon after a new version was launched. Any new OS, like new houses, will have a 'snagging list' - unforeseen problems that arise and need to be sorted before your purchase is truly habitable and functions as expected.
    But the stability of OS X 10.5 paved the way for my lapse of judgement when I upgraded to Snow Panther last week, while its compatibility with some major software is still clearly too buggy.
    I've been using Dreamweaver (DW) CS4 successfully on OS X 10.5 for some time. Since installing OS X 10.6.1 I now have problems with DW, which I've alerted Adobe to.
    When using Design View in DW CS4, any formatted text - from html tags to css tags - disappears from the Design view. The code appears correctly in the Code window and even if you highlight text that has coding attached in Code view - eg text with a url link attached - the Design view continues to ignore it and removes the text from its view. I've discovered that my heading tags (h1, h2, etc) all make the text disappear in Design view in a way that would be the envy of members of the Magic Circle! The only thing that seems to get through is text that is surrounded by paragraph tags.
    Thing is that 'Preview in Browser' shows the page correctly (except in Opera, which I've only installed since installing Snow Leopard, so I can't say how this displayed in the previous OS versions).
    Also when I upload the site to the server it all seems to display more or less as it should.
    So currently it seems that DW CS4's Design view is no longer WYSIWYG! Expect to find lots of text hidden in Design view and have to use Code view much more.
    It would be nice to think that Apple and Adobe would talk to each other and work it out between them.
    re: Dreamweaver, I'd check back to Adobe.com regularly to see when they upgrade the OS requirements to 10.6.1 (I hadn't spotted before I bought Snow Leopard that they only go up to 10.5 in their OS recommendations).
    My advice if you're thinking of upgrading to Snow Panther: delay it until it more of it works compatibly with your major applications. Check the OS spec from each software manufacturer first. Meanwhile I'll just have to wait patiently for Apple & Adobe to get their act together...
    Message was edited by: bcmartin

  • Why isn't the scroll wheel working properly with Firefox 4?

    I have a new Windows 7 PC at work with Firefox 4 on it. The scroll wheel on my mouse is not working right. It will work if I use Internet Explorer but I have trouble getting it to work with Firefox. Usually what I have to do is click the wheel to get that mode of scrolling where you move the mouse up and down to scroll the screen and that will work. And then when I click the wheel again to get out of that mode, my scroll wheel will work as expected. But I don't want to have to do that all the time. And sometimes that trick doesn't work. The scroll wheel is working fine with MS Excel and Lotus Notes and Internet Explorer, etc, so it seems to be something the new Firefox has an issue with.

    I fixed my problem! I was messing around in msconfig to turn off Lync from my Startup list and noticed something called Mouse Suite 98 was in my Startup. I did a quick google check and learned I could remove it without doing any harm. And voila! My scrollwheel is working properly with Firefox, finally! Hope this helps someone out there.

  • IPhone 5 not working properly with  USB interface in Honda Accord.

    The iPhone 5 seems not to work properly with the USB interface in my 2012 Honda Accord. It says I have 500  songs when I only have 430, it skips over songs and freezes during play.

    I actually have a different problem. I am unable to play Pandora through my USB connection in my 2012 Honda Accord SE with my iPhone 5. I can't get map directions through my speakers or any sounds at all. Any idea if a fix will be available?

Maybe you are looking for