Mpd and sonata setup problems

To get sonata working I have followed the instructions in the archlinux wiki [1] and went with the mentioned alternative setup.  I have mpd running in the background, but when I open sonata I get nothing.
When I launch Sonata from the terminal I get the following output:
  Error grabbing key 173, 0x?????? (some address)
Thanks for any help.
1. https://wiki.archlinux.org/index.php/Mpd

Looks like a port problem, but can be wrong.  First check that nothing goes wrong when you start mpd.
Also check if Sonata connects to localhost over the correct port and that you have something like: bind_to_address "any" in your mpd configuration.
If you start mpd as local user then ~/.mpdconf is used, else /etc/mpd.conf is used.

Similar Messages

  • [SOLVED] mpd and sonata issue

    Hi again!
    I've installed mpd and sonata but i don't see my library in sonata .
    This is my /etc/mpd.conf file
    # An example configuration file for MPD
    # See the mpd.conf man page for a more detailed description of each parameter.
    # Files and directories #######################################################
    # This setting controls the top directory which MPD will search to discover the
    # available audio files and add them to the daemon's online database. This
    # setting defaults to the XDG directory, otherwise the music directory will be
    # be disabled and audio files will only be accepted over ipc socket (using
    # file:// protocol) or streaming files over an accepted protocol.
    music_directory "/home/andreas/Downloads"
    # This setting sets the MPD internal playlist directory. The purpose of this
    # directory is storage for playlists created by MPD. The server will use
    # playlist files not created by the server but only if they are in the MPD
    # format. This setting defaults to playlist saving being disabled.
    #playlist_directory "~/.mpd/playlists"
    # This setting sets the location of the MPD database. This file is used to
    # load the database at server start up and store the database while the
    # server is not up. This setting defaults to disabled which will allow
    # MPD to accept files over ipc socket (using file:// protocol) or streaming
    # files over an accepted protocol.
    db_file "/var/lib/mpd/mpd.db"
    # These settings are the locations for the daemon log files for the daemon.
    # These logs are great for troubleshooting, depending on your log_level
    # settings.
    # The special value "syslog" makes MPD use the local syslog daemon. This
    # setting defaults to logging to syslog, otherwise logging is disabled.
    log_file "/var/log/mpd/mpd.log"
    # This setting sets the location of the file which stores the process ID
    # for use of mpd --kill and some init scripts. This setting is disabled by
    # default and the pid file will not be stored.
    pid_file "/var/run/mpd/mpd.pid"
    # This setting sets the location of the file which contains information about
    # most variables to get MPD back into the same general shape it was in before
    # it was brought down. This setting is disabled by default and the server
    # state will be reset on server start up.
    state_file "/var/lib/mpd/mpdstate"
    # General music daemon options ################################################
    # This setting specifies the user that MPD will run as. MPD should never run as
    # root and you may use this setting to make MPD change its user ID after
    # initialization. This setting is disabled by default and MPD is run as the
    # current user.
    user "mpd"
    # This setting sets the address for the daemon to listen on. Careful attention
    # should be paid if this is assigned to anything other then the default, any.
    # This setting can deny access to control of the daemon.
    # For network
    #bind_to_address "any"
    # And for Unix Socket
    #bind_to_address "~/.mpd/socket"
    # This setting is the TCP port that is desired for the daemon to get assigned
    # to.
    #port "6600"
    # This setting controls the type of information which is logged. Available
    # setting arguments are "default", "secure" or "verbose". The "verbose" setting
    # argument is recommended for troubleshooting, though can quickly stretch
    # available resources on limited hardware storage.
    #log_level "default"
    # If you have a problem with your MP3s ending abruptly it is recommended that
    # you set this argument to "no" to attempt to fix the problem. If this solves
    # the problem, it is highly recommended to fix the MP3 files with vbrfix
    # (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
    # point gapless MP3 playback can be enabled.
    #gapless_mp3_playback "yes"
    # This setting enables MPD to create playlists in a format usable by other
    # music players.
    #save_absolute_paths_in_playlists "no"
    # This setting defines a list of tag types that will be extracted during the
    # audio file discovery process. Optionally, 'comment' can be added to this
    # list.
    #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
    # Symbolic link behavior ######################################################
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links outside of the configured music_directory.
    #follow_outside_symlinks "yes"
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links inside of the configured music_directory.
    #follow_inside_symlinks "yes"
    # Zeroconf / Avahi Service Discovery ##########################################
    # If this setting is set to "yes", service information will be published with
    # Zeroconf / Avahi.
    #zeroconf_enabled "yes"
    # The argument to this setting will be the Zeroconf / Avahi unique name for
    # this MPD server on the network.
    #zeroconf_name "Music Player"
    # Permissions #################################################################
    # If this setting is set, MPD will require password authorization. The password
    # can setting can be specified multiple times for different password profiles.
    #password "password@read,add,control,admin"
    # This setting specifies the permissions a user has who has not yet logged in.
    #default_permissions "read,add,control,admin"
    # Input #######################################################################
    input {
    plugin "curl"
    # proxy "proxy.isp.com:8080"
    # proxy_user "user"
    # proxy_password "password"
    # Audio Output ################################################################
    # MPD supports various audio output types, as well as playing through multiple
    # audio outputs at the same time, through multiple audio_output settings
    # blocks. Setting this block is optional, though the server will only attempt
    # autodetection for one sound card.
    # See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
    # other audio outputs.
    # An example of an ALSA output:
    #audio_output {
    # type "alsa"
    # name "My ALSA Device"
    ## device "hw:0,0" # optional
    ## format "44100:16:2" # optional
    ## mixer_device "default" # optional
    ## mixer_control "PCM" # optional
    ## mixer_index "0" # optional
    # An example of an OSS output:
    #audio_output {
    # type "oss"
    # name "My OSS Device"
    ## device "/dev/dsp" # optional
    ## format "44100:16:2" # optional
    ## mixer_device "/dev/mixer" # optional
    ## mixer_control "PCM" # optional
    # An example of a shout output (for streaming to Icecast):
    #audio_output {
    # type "shout"
    # encoding "ogg" # optional
    # name "My Shout Stream"
    # host "localhost"
    # port "8000"
    # mount "/mpd.ogg"
    # password "hackme"
    # quality "5.0"
    # bitrate "128"
    # format "44100:16:1"
    ## protocol "icecast2" # optional
    ## user "source" # optional
    ## description "My Stream Description" # optional
    ## genre "jazz" # optional
    ## public "no" # optional
    ## timeout "2" # optional
    # An example of a httpd output (built-in HTTP streaming server):
    #audio_output {
    # type "httpd"
    # name "My HTTP Stream"
    # encoder "vorbis" # optional, vorbis or lame
    # port "8000"
    ## quality "5.0" # do not define if bitrate is defined
    # bitrate "128" # do not define if quality is defined
    # format "44100:16:1"
    # An example of a pulseaudio output (streaming to a remote pulseaudio server)
    #audio_output {
    # type "pulse"
    # name "My Pulse Output"
    ## server "remote_server" # optional
    ## sink "remote_server_sink" # optional
    ## Example "pipe" output:
    #audio_output {
    # type "pipe"
    # name "my pipe"
    # command "aplay -f cd 2>/dev/null"
    ## Or if you're want to use AudioCompress
    # command "AudioCompress -m | aplay -f cd 2>/dev/null"
    ## Or to send raw PCM stream through PCM:
    # command "nc example.org 8765"
    # format "44100:16:2"
    ## An example of a null output (for no audio output):
    #audio_output {
    # type "null"
    # name "My Null Output"
    # This setting will change all decoded audio to be converted to the specified
    # format before being passed to the audio outputs. By default, this setting is
    # disabled.
    #audio_output_format "44100:16:2"
    # If MPD has been compiled with libsamplerate support, this setting specifies
    # the sample rate converter to use. Possible values can be found in the
    # mpd.conf man page or the libsamplerate documentation. By default, this is
    # setting is disabled.
    #samplerate_converter "Fastest Sinc Interpolator"
    # Volume control mixer ########################################################
    # These are the global volume control settings. By default, this setting will
    # be detected to the available audio output device, with preference going to
    # hardware mixing. Hardware and software mixers for individual audio_output
    # sections cannot yet be mixed.
    # An example for controlling an ALSA, OSS or Pulseaudio mixer; If this
    # setting is used other sound applications will be affected by the volume
    # being controlled by MPD.
    #mixer_type "hardware"
    # An example for controlling all mixers through software. This will control
    # all controls, even if the mixer is not supported by the device and will not
    # affect any other sound producing applications.
    #mixer_type "software"
    # This example will not allow MPD to touch the mixer at all and will disable
    # all volume controls.
    #mixer_type "disabled"
    # Normalization automatic volume adjustments ##################################
    # This setting specifies the type of ReplayGain to use. This setting can have
    # the argument "album" or "track". See <http://www.replaygain.org> for more
    # details. This setting is disabled by default.
    #replaygain "album"
    # This setting sets the pre-amp used for files that have ReplayGain tags. By
    # default this setting is disabled.
    #replaygain_preamp "0"
    # This setting enables on-the-fly normalization volume adjustment. This will
    # result in the volume of all playing audio to be adjusted so the output has
    # equal "loudness". This setting is disabled by default.
    #volume_normalization "no"
    # MPD Internal Buffering ######################################################
    # This setting adjusts the size of internal decoded audio buffering. Changing
    # this may have undesired effects. Don't change this if you don't know what you
    # are doing.
    #audio_buffer_size "2048"
    # This setting controls the percentage of the buffer which is filled before
    # beginning to play. Increasing this reduces the chance of audio file skipping,
    # at the cost of increased time prior to audio playback.
    #buffer_before_play "10%"
    # Resource Limitations ########################################################
    # These settings are various limitations to prevent MPD from using too many
    # resources. Generally, these settings should be minimized to prevent security
    # risks, depending on the operating resources.
    #connection_timeout "60"
    #max_connections "10"
    #max_playlist_length "16384"
    #max_command_list_size "2048"
    #max_output_buffer_size "8192"
    # Character Encoding ##########################################################
    # If file or directory names do not display correctly for your locale then you
    # may need to modify this setting. After modification of this setting mpd
    # --create-db must be run to change the database.
    #filesystem_charset "UTF-8"
    # This setting controls the encoding that ID3v1 tags should be converted from.
    #id3v1_encoding "ISO-8859-1"
    I've add the mpd daemon in rc.conf and i've chosen my directory /home/andreas/Downloads in sonata .Also i put mpd:ALL to etc/hosts.allow
    Sonata connects fine to the server but i can't see my libary .
    What might be the issue ?
    Thanks again
    Last edited by shak (2010-06-10 11:27:13)

    If you continue to have issues with permissions, the solution i use is to simply run MPD as my normal user, storing all the necessary directories and files under ~/.mpd and just pointing it at the config file I stuck there:
    $ mpd ~/.mpd/config
    No more permissions issues! There's an explanation of this in the wiki.

  • Questions about mpd and sonata ram usage

    Hi again!
    I'm very impressed with mpd and i really love the sonata client with it's cover art , lyrics fetching features .
    I've noticed that mpd uses about 13 mb ram and sonata 16 mb of ram. I have about 6 albums in my library .
    I was just wondering if it is normal for mpd and sonata to use that ram .
    I have enough ram about 1gb so it's not an issue , i'm just curious if this is normal
    Also i've noticed that with mpd and sonata the cpu usage is much lower than with audacious when playing files , but the ram usage with mpd is higher
    Thanks again
    Last edited by shak (2010-06-10 12:15:25)

    Hmmm...I have Arch64 with a 15,000 collection, MPD uses 9.8MB and Sonata uses 52.5.MB, whether there are songs in the playlist or not.

  • Mpd and Sonata questions

    I started using mpd with Sonata (I was using Amarok till now). I have not found any client that can show play count and song rate. Are these features not supported in mpd?
    Sonata can search for covers only in Amazon but never finds any cover. Can I change Amazon to Last.fm or discogs? Can I edit a file to do this?
    Sonata is the best client I found, but is not developed any more...
    Last edited by hariskar (2012-11-09 14:38:12)

    Thank you for replies!
    @fiddlinmacx
    I tried sonata-fork-git 20121027-1, but did not find any difference. The problems with not finding covers still exist.
    I tried gmpc, but I don't like how my library shows, in 3 different panels, I want my library be like Sonata, or Amarok: 3 levels tree view: Genre/Artist/Album
    @useradded
    Thank you for Cantata without kdependencies!
    Here Library is not exactly how I want it to be, but almost: 2 levels (Artis/Album) and Genre at the bottom. There is no option for 3 levels, is it?
    Also, in some albums the cover is wrong, how can I change it?
    There is no last.fm scrobble support, so I guess I have to run mpdscribble?
    Play count and Song rate, why no client has these options? Are they not supported from mpd? This is the main reason I still use Amarok..
    Last edited by hariskar (2013-03-06 08:04:29)

  • [SOLVED] Mpd and sonata doesn't seem to work

    Hi guys!
    I 'm facing with an issue . I can't seem to configure mpd correctly to run it with sonata .
    I've followed the alternative setup from archwiki and this is my config file .
    # An example configuration file for MPD
    # See the mpd.conf man page for a more detailed description of each parameter.
    # Files and directories #######################################################
    # This setting controls the top directory which MPD will search to discover the
    # available audio files and add them to the daemon's online database. This
    # setting defaults to the XDG directory, otherwise the music directory will be
    # be disabled and audio files will only be accepted over ipc socket (using
    # file:// protocol) or streaming files over an accepted protocol.
    music_directory "/home/andreas/Downloads/Torrents"
    # This setting sets the MPD internal playlist directory. The purpose of this
    # directory is storage for playlists created by MPD. The server will use
    # playlist files not created by the server but only if they are in the MPD
    # format. This setting defaults to playlist saving being disabled.
    playlist_directory "/home/andreas/.mpd/playlists"
    # This setting sets the location of the MPD database. This file is used to
    # load the database at server start up and store the database while the
    # server is not up. This setting defaults to disabled which will allow
    # MPD to accept files over ipc socket (using file:// protocol) or streaming
    # files over an accepted protocol.
    db_file "/home/andreas/.mpd/mpd.db"
    # These settings are the locations for the daemon log files for the daemon.
    # These logs are great for troubleshooting, depending on your log_level
    # settings.
    # The special value "syslog" makes MPD use the local syslog daemon. This
    # setting defaults to logging to syslog, otherwise logging is disabled.
    log_file "/home/andreas/.mpd/mpd.log"
    # This setting sets the location of the file which stores the process ID
    # for use of mpd --kill and some init scripts. This setting is disabled by
    # default and the pid file will not be stored.
    pid_file "/home/andreas/.mpd/mpd.pid"
    # This setting sets the location of the file which contains information about
    # most variables to get MPD back into the same general shape it was in before
    # it was brought down. This setting is disabled by default and the server
    # state will be reset on server start up.
    state_file "/home/andreas/.mpd/mpdstate"
    # General music daemon options ################################################
    # This setting specifies the user that MPD will run as. MPD should never run as
    # root and you may use this setting to make MPD change its user ID after
    # initialization. This setting is disabled by default and MPD is run as the
    # current user.
    user "andreas"
    # This setting sets the address for the daemon to listen on. Careful attention
    # should be paid if this is assigned to anything other then the default, any.
    # This setting can deny access to control of the daemon.
    # For network
    #bind_to_address "any"
    # And for Unix Socket
    #bind_to_address "~/.mpd/socket"
    # This setting is the TCP port that is desired for the daemon to get assigned
    # to.
    #port "6600"
    # This setting controls the type of information which is logged. Available
    # setting arguments are "default", "secure" or "verbose". The "verbose" setting
    # argument is recommended for troubleshooting, though can quickly stretch
    # available resources on limited hardware storage.
    #log_level "default"
    # If you have a problem with your MP3s ending abruptly it is recommended that
    # you set this argument to "no" to attempt to fix the problem. If this solves
    # the problem, it is highly recommended to fix the MP3 files with vbrfix
    # (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
    # point gapless MP3 playback can be enabled.
    #gapless_mp3_playback "yes"
    # This setting enables MPD to create playlists in a format usable by other
    # music players.
    #save_absolute_paths_in_playlists "no"
    # This setting defines a list of tag types that will be extracted during the
    # audio file discovery process. Optionally, 'comment' can be added to this
    # list.
    #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
    # Symbolic link behavior ######################################################
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links outside of the configured music_directory.
    #follow_outside_symlinks "yes"
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links inside of the configured music_directory.
    #follow_inside_symlinks "yes"
    # Zeroconf / Avahi Service Discovery ##########################################
    # If this setting is set to "yes", service information will be published with
    # Zeroconf / Avahi.
    #zeroconf_enabled "yes"
    # The argument to this setting will be the Zeroconf / Avahi unique name for
    # this MPD server on the network.
    #zeroconf_name "Music Player"
    # Permissions #################################################################
    # If this setting is set, MPD will require password authorization. The password
    # can setting can be specified multiple times for different password profiles.
    #password "password@read,add,control,admin"
    # This setting specifies the permissions a user has who has not yet logged in.
    #default_permissions "read,add,control,admin"
    # Input #######################################################################
    input {
    plugin "curl"
    # proxy "proxy.isp.com:8080"
    # proxy_user "user"
    # proxy_password "password"
    # Audio Output ################################################################
    # MPD supports various audio output types, as well as playing through multiple
    # audio outputs at the same time, through multiple audio_output settings
    # blocks. Setting this block is optional, though the server will only attempt
    # autodetection for one sound card.
    # See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
    # other audio outputs.
    # An example of an ALSA output:
    #audio_output {
    # type "alsa"
    # name "My ALSA Device"
    ## device "hw:0,0" # optional
    ## format "44100:16:2" # optional
    ## mixer_device "default" # optional
    ## mixer_control "PCM" # optional
    ## mixer_index "0" # optional
    # An example of an OSS output:
    #audio_output {
    # type "oss"
    # name "My OSS Device"
    ## device "/dev/dsp" # optional
    ## format "44100:16:2" # optional
    ## mixer_device "/dev/mixer" # optional
    ## mixer_control "PCM" # optional
    # An example of a shout output (for streaming to Icecast):
    #audio_output {
    # type "shout"
    # encoding "ogg" # optional
    # name "My Shout Stream"
    # host "localhost"
    # port "8000"
    # mount "/mpd.ogg"
    # password "hackme"
    # quality "5.0"
    # bitrate "128"
    # format "44100:16:1"
    ## protocol "icecast2" # optional
    ## user "source" # optional
    ## description "My Stream Description" # optional
    ## genre "jazz" # optional
    ## public "no" # optional
    ## timeout "2" # optional
    # An example of a httpd output (built-in HTTP streaming server):
    #audio_output {
    # type "httpd"
    # name "My HTTP Stream"
    # encoder "vorbis" # optional, vorbis or lame
    # port "8000"
    ## quality "5.0" # do not define if bitrate is defined
    # bitrate "128" # do not define if quality is defined
    # format "44100:16:1"
    # An example of a pulseaudio output (streaming to a remote pulseaudio server)
    #audio_output {
    # type "pulse"
    # name "My Pulse Output"
    ## server "remote_server" # optional
    ## sink "remote_server_sink" # optional
    ## Example "pipe" output:
    #audio_output {
    # type "pipe"
    # name "my pipe"
    # command "aplay -f cd 2>/dev/null"
    ## Or if you're want to use AudioCompress
    # command "AudioCompress -m | aplay -f cd 2>/dev/null"
    ## Or to send raw PCM stream through PCM:
    # command "nc example.org 8765"
    # format "44100:16:2"
    ## An example of a null output (for no audio output):
    #audio_output {
    # type "null"
    # name "My Null Output"
    # This setting will change all decoded audio to be converted to the specified
    # format before being passed to the audio outputs. By default, this setting is
    # disabled.
    #audio_output_format "44100:16:2"
    # If MPD has been compiled with libsamplerate support, this setting specifies
    # the sample rate converter to use. Possible values can be found in the
    # mpd.conf man page or the libsamplerate documentation. By default, this is
    # setting is disabled.
    #samplerate_converter "Fastest Sinc Interpolator"
    # Volume control mixer ########################################################
    # These are the global volume control settings. By default, this setting will
    # be detected to the available audio output device, with preference going to
    # hardware mixing. Hardware and software mixers for individual audio_output
    # sections cannot yet be mixed.
    # An example for controlling an ALSA, OSS or Pulseaudio mixer; If this
    # setting is used other sound applications will be affected by the volume
    # being controlled by MPD.
    #mixer_type "hardware"
    # An example for controlling all mixers through software. This will control
    # all controls, even if the mixer is not supported by the device and will not
    # affect any other sound producing applications.
    #mixer_type "software"
    # This example will not allow MPD to touch the mixer at all and will disable
    # all volume controls.
    #mixer_type "disabled"
    # Normalization automatic volume adjustments ##################################
    # This setting specifies the type of ReplayGain to use. This setting can have
    # the argument "album" or "track". See <http://www.replaygain.org> for more
    # details. This setting is disabled by default.
    #replaygain "album"
    # This setting sets the pre-amp used for files that have ReplayGain tags. By
    # default this setting is disabled.
    #replaygain_preamp "0"
    # This setting enables on-the-fly normalization volume adjustment. This will
    # result in the volume of all playing audio to be adjusted so the output has
    # equal "loudness". This setting is disabled by default.
    #volume_normalization "no"
    # MPD Internal Buffering ######################################################
    # This setting adjusts the size of internal decoded audio buffering. Changing
    # this may have undesired effects. Don't change this if you don't know what you
    # are doing.
    #audio_buffer_size "2048"
    # This setting controls the percentage of the buffer which is filled before
    # beginning to play. Increasing this reduces the chance of audio file skipping,
    # at the cost of increased time prior to audio playback.
    #buffer_before_play "10%"
    # Resource Limitations ########################################################
    # These settings are various limitations to prevent MPD from using too many
    # resources. Generally, these settings should be minimized to prevent security
    # risks, depending on the operating resources.
    #connection_timeout "60"
    #max_connections "10"
    #max_playlist_length "16384"
    #max_command_list_size "2048"
    #max_output_buffer_size "8192"
    # Character Encoding ##########################################################
    # If file or directory names do not display correctly for your locale then you
    # may need to modify this setting. After modification of this setting mpd
    # --create-db must be run to change the database.
    #filesystem_charset "UTF-8"
    # This setting controls the encoding that ID3v1 tags should be converted from.
    #id3v1_encoding "ISO-8859-1"
    All the files required are in my /home/andreas/.mpd/ directory
    config
    mpd.db
    mpd.error
    mpd.log
    mpd.pid
    mpdstate
    playlists
    I've also added to my .xinitrc file
    mpd /home/andreas/.mpd/config
    I 'm sure i've done something wrong but don't know what it is . If anyone could help me out i would be grateful
    THanks a for all your help!
    Last edited by shak (2010-04-19 23:08:09)

    shak wrote:
    I've followed the first method with the mpd daemon and everything worked fine .
    THanks for all your help everyone !
    The add of MPD : ALL to hosts.allow seems to solved it .
    Thanks again!
    Nice.
    Please mark threads as [SOLVED] when they are. You can do so by editing the opening post.

  • T500 Vista buying experience and initial setup problems

    This a long post but I felt the information could be used by others buying a notebook and trying to set it up.
    I have used a Thinkpad T40 (1 GB, XP Pro) at work since 2003  and just love the rock-solid keyboard, screen, and hinges. The IT department has offered me the most recent Dell computer as an upgrade but I much prefer to keep my old reliable T40.
    When my daughter needed a notebook for university in September, it was only natural to consider Lenovo, having heard about too many quality problems with other manufacturers. I wanted this notebook to last through the 4 years without any hardware problems.
    I did a lot of research on the Web and read numerous Thinkpad forums. The information gathered was invaluable for deciding which configuration to buy. Note that I have never used VISTA before, nor have I ever opened a notebook to replace parts.
    Buying experience:
    - On my first contact with the Lenovo Sales desk in Canada, they mentioned there was a special 25% coupon sale, if my configuration was over $1500 (discounted price). These specials come back often, so it is best to check the Lenovo site. At the time, there was a free integrated camera, free upgrade to 250 MB HDD and free shipping. Since these promotions can be removed at any time, I decided to place an online order for a Thinkpad T500, before having completed all my research. It is easy to place an order online. You just have to remember that not all items contribute to making up the $1500, such as MS Office software.
    - Lenovo Sales telephone support for answering any questions about online ordering was outstanding and very helpful.
    - Note that if a particular online configuration is there one week, it might not be there the next week. It depends on parts availability at Lenovo.
    - In order to get the 25% coupon discount, I had to add some items to my configuration to reach $1500, such as Bluetooth, Wifi 5100, which I did not really need, but the saving on the overall cost was worthwhile.
    - I had ordered a WXGA (1280 x 800) High Brightness LED Backlit screen and 3 GB of RAM. After reading about the poor display quality of these screens, I was able to cancel my order by phone the next day (after making sure the same deal was still available), and place a new revised order for a WSXGA+ TFT (1680 x 1050) screen. Since the configuration price for an additional 2 GB RAM was $110 CDN, I decided to buy the extra 2 GB RAM (only $43 CDN) as an accessory, on the same order, separate from the T500 configuration. I could then install the RAM myself to save $67 ! Just make sure you pay the extra to get the base 2 GB RAM on one DIMM, since there are only 2 slots available. I know I will only be using 3.5 GB with my 32-bit Windows, but at least, if one of the DIMMs goes bad, I can still operate on 2 GB.
    - as for choosing which CPU to buy, I chose in the middle range, starting with the first CPU having 3 MB L2 cache.
    - I did not buy MS Office or McAfee Antivirus with the configuration. Since my daughter attends a post-secondary institution, she was able to order MS Office Ultimate 2007 for $64 CDN + $13 for the DVD. Microsoft has had this promotion on their site
     (http://www.microsoft.com/student/discounts/theultimatesteal-ca/default.aspx)
    for a while, but it is not well known. You get 8 MS products for one low price and it is completely legal for numerous countries ! I downloaded the software since it took 5 weeks to get the DVD delivered ! At the end of 4 weeks, I contacted Microsoft to tell them I had still not received the DVD. So I received the first DVD and a few weeks later, I received a second copy. So much for quick shipping !
    Initial impressions:
    - I received 3 separate shipments: 1 free Thinkpad privacy filter to install on the screen, the 2 GB RAM, and finally the T500 (which took about 2 weeks).
    -The stainless steel hinges are rock-solid. When trying to raise the lid in the first weeks, you have to hold down the keyboard. Not at all like the hinges I see on the Dell notebooks at work.
    - The 3 USB port connections are very tight, which means they should last through repeated plugging and unplugging.
    - The T500 is surprisingly quiet, more than my T40. You can hardly hear the fan.
    - I am extremely satisfied with the screen resolution, colours, and quality.
    - The only disappointment was the keyboard ! Typing on the left-hand side (Q,W keys) produced an annoying "clunk". This was the worst keyboard I had ever used, being accustomed to the legendary quality of my T40. Even my daughter complained about the keyboard. I had read on the forums about the "flex" in the keyboard. Before ordering, when I asked the Sales Rep if these known problems had been solved, I was told that yes, the keyboard flex was no longer an issue. Too bad this was not true !
    Initial Setup:
    - Setup was easy. Just follow the on-screen instructions.
    - I was not very happy to see a trial version of MS-Office and McAfee Antivirus on my notebook. I had not ordered it on the online configuration and did not want it. I had read on the forums that other users had all sorts of problems trying to get their own version of MS Office working (activation keys not being recognized), when the pre-loaded software was still there. And I knew how difficult it could be to erase all traces of McAfee by myself.
    Hardware problems:
    - after I burned my very first DVD, I pressed the Eject button. To my surprise, there was a thin grey foam ring (about 3 cm diameter) sitting on top of my DVD media. I assumed that this came from the roof of the DVD drive and the manufacturing process had missed the glue to keep it there. I contacted Lenovo and they immediately sent out a replacement (received the next day), which was easy to install. I then returned the defective part to Lenovo. My only complaint is that this was a refurbished unit. I was expecting a new unit since the part was defective out of the box and not a few months later.
    - for the defective keyboard, I contacted Lenovo and mentioned the numerous complaints on the forums, and they sent me a new keyboard (FRU 42T3938). Unlike the DVD drive, I did not have to send back the original keyboard. However, the replacement keyboard was exactly the same as the original, with a thin flexible backing full of holes. I contacted Lenovo again in the morning and the agent mentioned I should contact Sales, since there was nothing more he could do. That afternoon, the agent called me to say that after further research, he had found a replacement keyboard that would correct the flex. When I received the second replacement keyboard (FRU 42T3210), I knew it was the right one, since there were far less holes in the more solid backing plate. I followed the instructions for replacing the keyboard and added my additional 2 GB RAM at the same time, since it is in the same area, under the palm rest. Now the keyboard is almost like my solid T40, and I am no longer ashamed of the T500 keyboard. For those of you wondering what an ACNOR or CSA keyboard is, it is one where the 5 most common French accented characters (and not only the é) are used with one keystroke. I have been using such a keyboard disposition since 1994 and it is invaluable when typing in French.
    For pictures comparing the defective and replacement keyboards, see
    http://forums.lenovo.com/t5/T400-T500-and-newer-T-series/T500-keyboard-replacement/m-p/158451#M15525
    My immediate goals:
    - out of the box, there are 3 partitions: partitions Q (10 GB)  and S (1 GB) are Lenovo partitions to recover the operating system, C partition is a single partition over 200 GB on my 250 GB DD. I wanted to partition the C: drive in multiple partitions.
    - I also wanted to eliminate MS Office and McAfee so I could install my own software (MS Office 2007 Ultimate and free Avast Antivirus). When I contacted Lenovo to ask how I could do this, they said I could use the recovery partition and "customize" it so that this software would not be installed. Turns out that this option was removed by Lenovo. I guess pressure from Microsoft and McAfee was too great ! The only other option was to use Add/Remove.
    Partitioning problems.
    - I ran Diskmgmt.msc (also available on XP) to see the layout of my HDD. Unfortunately, it did not seem to be powerful enough to partition like I wanted. But it is great to see the layout of the disk and do basic partitioning. (http://www.theeldergeek.com/hard_drives.htm)
    - I installed the free EASUS Partition Manager (http://www.partition-tool.com/); the non-free Pro version works on 64-bit.  I wanted to partition: C 35GB (Operating System and Office), D 20GB (other applications), E 25GB (Data), F 100GB (Music and Pictures). I also installed the free EASUS Todo Backup (http://www.todo-backup.com/) to do regular image backups as I was proceeding.
    - while trying to partition the C drive, I must have made an error somewhere (I think I accidentally declared another partition as the active partition). Whenever I rebooted, I would get the message "Boot MGR is missing". I could not even use the recovery partition (Q and S) on the HDD. So my notebook was totally unusable. Fortunately, I had burned 4 Recovery DVD's, as soon as the OS was operational. The first recovery DVD booted OK. However, the system would not recognize any of the 3 other recovery DVD, displaying a message such as wrong disk inserted or something similar. Imagine if in a few months I had needed to use these recovery DVD that I had burned; they were completely useless and I would have nothing to recover with. Very scary !
    - I explained the problem to Lenovo Support and they sent me within 3 days a set of 4 Rescue & Recovery DVD. By following the instructions, it took 2 hours to recover to a working system. The good: no Office or McAfee trial software came with this recovery. The bad: there was a 2 GB empty partition at the beginning of the HDD and 10 GB of unallocated space at the end of the disk. Why Lenovo would do this, I don't know; seems a bit sloppy to me. Also, I had to manually reconfigure everything, since there is no "just follow the instructions" as when configuring the "out-of-the-box" system. I had to install my own PDF viewer
    (free open source PDF X-viewer http://www.docu-track.com/home/prod_user/PDF-XChange_Tools/pdfx_viewer), Adobe Flash, etc...
    - the major problem in partitioning is the inability to shrink a partition (such as C) in order to free up space after to add extended partitions
    (http://www.howtogeek.com/howto/windows-vista/working-around-windows-vistas-shrink-volume-inadequacy-...). There always seems to be VISTA unmovable files, MBR or something else. After reading numerous posts, I installed the trial version (30 days) of Raxco PerfectDisk Home edition in order to consolidate all the files to the front of the C: drive. A few iterations were required since the MBR seems to be placed in the middle of the partition. I was finally able to partition my HDD exactly as I wanted. I was so pleased with the efficiency and ease of use of PerfectDisk that I bought the Pro 10 version. Just wait for when the software is occasionally discounted. (http://www.perfectdisk.com/home)
    VISTA User account setup:
    I had created my E partition to store all user data of all accounts, since I would have multiple accounts on the computer. I also wanted to store all music and pictures in the Public folder on F partition. There are numerous methods described on the Internet, most of which seem too complicated. See http://joshmouch.wordpress.com/2007/04/07/change-user-profile-folder-location-in-vista/ and
    http://www.vista4beginners.com/Move-user-files-folders-to-another-partition?page=1. I finally decided to do just 2 simple registry modifications described in the last post here
    (http://superuser.com/questions/6391/moving-users-folder-on-windows-vista-seven-to-another-partition).
    It worked for me but use at your own risk ! Just edit the 2 Registry keys and replace the C: drive by the one you need.
    - I only had the Admin account created on the C: partition. Before creating any other user accounts, I modified the registry so that all new user accounts created would use my E partition.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList  ProfilesDirectory = E:\Users
    - I modified the registry so that the Public folder would be on my F partition.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList  Public = F:\Public
    Other notes of interest:
    - I had been a long-time subscriber to the Fred Langa Langalist
    (http://www.langa.com/backups/backups.htm). I now subscribe to the excellent Windows Secrets newsletter (http://www.windowssecrets.com/). The information provided is very useful.
    - I had considered an inexpensive boot manager, partition manager and imaging software (BootIt Next Generation) highly recommended by Fred Langa
    (http://www.terabyteunlimited.com/index.htm). But it seemed a bit like overkill for my needs. There is a fully-functioning trial version.
    - I regularly consult a complete list of recommended free software on Gizmo's Freeware review (http://www.techsupportalert.com). One recommended free open source defragmenter which I did not use was MyDefrag (http://www.mydefrag.com/).
    - download and install the latest version of the Lenovo System Tools (Toolbox). It is very easy to use and can troubleshoot all hardware problems. Search for MIGR-67520 on the Lenovo site.
    - you can find Roxio DVD burning software on the Lenovo site (MIGR-72359 on the Lenovo site). I have not installed it yet.
    - use the Lenovo System Update to keep your drivers up-to-date.
    - for info on how to use switchable graphics, search on the Lenovo site for MIGR-70495.
    - for tips on setting battery parameters, http://forum.notebookreview.com/showthread.php?t=320082
    Recommendations to Lenovo:
    - don't ship poor quality keyboards. You have too much to lose, for the small manufacturing savings.
    - don't pre-install trial versions of Office or McAfee. This should be an option and not be forced onto buyers.
    - at least ship the HDD with a 40 GB C primary partition and the rest as D: partition. This would make it easier for users who are not technical.
    - if you are going to include an integrated camera, provide software to use it. Currently, I have no way of taking a picture or making a video without acquiring other software. The technique described here
    (http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-67413) does not work !
    - provide some software to reduce the speed of the DVD drive when watching movies. The noise at the default maximum speed is very annoying.
    Thinkpad T500 | Model 2081-CTO | Intel Core 2 Duo P8700 (2.53GHz, 1066MHz 3MB L2 Cache) | 4 GB PC3-8500 DDR3 RAM | 15.4" WSXGA+ | ATI Mobility Radeon 3650 (256MB) | 250GB Hitachi HDD (5400rpm) | Bluetooth 2.1 | Integrated Camera | DVD Recordable UltraBay Slim | Intel Wifi Link 5100 | Sony 6-cell Li-Ion battery | Vista Home Premium 32-bit SP1

    people complaining about problems installing an office over another office are (dare i say it) stupid. it makes absolutely no sense installing one over the trial version. just uninstall the trial and you'll be fine. every single time.
    as for problem with uninstalling mcafee (or any other antivirus, for that matter, just download the uninstaller from the software company e.g. http://service.mcafee.com/FAQDocument.aspx?id=TS100507 for mcafee.
    that said i believe you get to choose if you want mcafee and/or office when you go through the inital boot, the "on-screen instructions"
    you can slow down the odd via power manager
    and thanks for the tips on changing the reg to have the user profiles somewhere else!
    T400s - 2815RW1 + Win7 Ultimate
    Don't pm me for help! That's what the forum is for. Also, Google's nicer than me. Ask him.

  • Pages and page setup problems

    I love my mac and love pages but sometimes I wanna chuck it out the window.
    Here is why - I have been working on my thesis and was inserting some table in the pages doc. No problem. Except that the tables are in horizontal layout/orientation while the doc is in vertical layout/orientation so the table doesnt fit in. Now on a PC I would to to page setup and change the page layout/orientation for that page only except it seems it doesnt work here. I change the layout/orientation for all pages or no pages. Same thing is if I want to have an envelope and a letter in the same document. Same thing in Word for mac. Which is kind of a problem as it means I have to create a template on my PC and then move it to my mac to work.
    Am I missing something silly? Is there a trick I can do?

    Sparky1979 wrote:
    Which is kind of a problem as it means I have to create a template on my PC and then move it to my mac to work.
    Sparky,
    Creating a template in Word in an attempt to work around a program design choice in Pages would be a very bad option, with little chance of success.
    A landscape page is a portrait page with the content rotated 90 degrees. I think that the only things in your Pages job that can't be rotated are the Header and Footer fields, and those probably are best left alone in this case anyway. So, here's the trick. Insert a table, make sure that it is Floating, not Inline, and then rotate it 90 degrees and adjust it's position on the page. You can edit the table either before or after you rotate it.
    Similarly, envelopes could be included in the document by rotating text fields, but it's not clear to me what purpose it would serve since it would complicate printing.
    Jerry

  • Mpd and python-mpd problem utf8

    Hi,
    i've just update the new mpd and python mpd package, so there is a problem with utf8 directory. Now it can not display my covers.
    The error :
    Exception in thread Thread-28:
    Traceback (most recent call last):
    File "/usr/lib/python2.5/threading.py", line 486, in __bootstrap_inner
    self.run()
    File "/usr/lib/python2.5/threading.py", line 446, in run
    self.__target(*self.__args, **self.__kwargs)
    File "/usr/lib/python2.5/site-packages/sonata/main.py", line 3971, in _artwork_update
    imgfound = self.artwork_check_for_local()
    File "/usr/lib/python2.5/site-packages/sonata/main.py", line 3993, in artwork_check_for_local
    type, filename = self.artwork_get_local_image()
    File "/usr/lib/python2.5/site-packages/sonata/main.py", line 4038, in artwork_get_local_image
    testfile = img.single_image_in_dir(self.musicdir[self.profile_num] + songpath)
    File "/usr/lib/python2.5/site-packages/sonata/img.py", line 62, in single_image_in_dir
    dir = gobject.filename_from_utf8(dir)
    GError: Séquence d'octets non valide en entrée du convertisseur

    I'm having the same output whenever I try to view an artists's albums in the collection and the album title contains non strictly ascii characters (which happens pretty often, as I am not a native english speaker). The problem is that the albums do not appear in the collection ! I can still access them by the filesystem view, but then the songs are sorted alphabetically, not by track number.
    This problem appeared with Sonata 1.5.

  • Setup problem, windows xp, firefox upgrade to 4 and asked to reboot but did not progress. keeps asking to restart even if I try to remove

    setup problem, windows xp, firefox upgrade to 4 and asked to reboot but did not progress. keeps asking to restart even if I try to remove

    Hi marsano,
    Usually the only reason it will ask you to reboot is if there is a file that must be modified that the updater doesn't currently have access to. You should try running the Firefox program once as Administrator:
    * Right-click the icon and choose ''Run as Administrator''
    If that doesn't help then do a clean reinstall.
    # Download a fresh copy of Firefox from the [http://www.mozilla.org/firefox/fx/ Mozilla download page] and save the file to the desktop.
    # [[Uninstalling Firefox|Uninstall]] your current version of Firefox and remove the Firefox program folder before running the new installer.
    # Run installer
    Remember that you don't want to remove personal data when uninstalling. That way you'll still have your personal information.
    Hopefully this helps!

  • Install and setup problem with Acrobat XI pro

    I have downloaded the Acrobat XI Pro trial program, with no error messages. When I clisk on "setup.exe" the following error message appears, see screen shot :
    "This patch package could not be opened. Verify that the patch package exixts and that you can access it, or contact the application vendor to verify that this is a valid Windose Installer patch package"
    How do I get setup to start?

    @Jeff -- Yes I did use theDownload assistant.  Down load completed and assistant started the insall.  Received the error message and install terminated. Searched for and found the install folder and have tried install by clicking on"setup.exe".  Have not tried a fresh download, did the MSI logging, see next reply.
    @LeoAdobeX -- I renamed the file\folder path and eliminated all spaces. Clicked setup.exe and received same error message.
    Enabled MSI logging and tried setup.exe, received same error message. Have posted 2 most recent MSI files and the setup.ini file. Here are the links:
    https://workspaces.acrobat.com/?d=SxkkNEXK*bJLZnkDjFdWiQ
    https://workspaces.acrobat.com/?d=Mdt6KyNSpBViV3h2ZC2pUg
    https://workspaces.acrobat.com/?d=AOxVXVIBozy1XrFDwzljoQ
    Thanks for your help. Will stand by,

  • A720 and windows 8 problems

    Im trying to setup the a720  with windows 8 and have this problems: When power off the computer have all time this BSOD : SESSION_HAS_VALID_POOL_ON_EXIT Touchscreen not work.
    If I run the windows 8 install, just for test, the touch is working, the problem is after install.
    External hard disk not working when connect to any USB port, and unplug result in a system freeze.
    Here my mini dump for error SESSION_HAS_VALID_POOL_ON_EXIT, I have the i5 model too and this not happen on that model:
    Crash Dump Analysis provided by OSR Open Systems Resources, Inc. (http://www.osr.com) Online Crash Dump Analysis Service See http://www.osronline.com for more information Windows 8 Kernel Version 9200 MP (8 procs) Free x64 Product: WinNt, suite: TerminalServer SingleUserTS Built by: 9200.16384.amd64fre.win8_rtm.120725-1247 Machine Name: Kernel base = 0xfffff800`60081000 PsLoadedModuleList = 0xfffff800`6034ba60 Debug session time: Wed Nov 28 17:08:03.203 2012 (UTC - 5:00) System Uptime: 0 days 0:00:13.897 ******************************************************************************* *                                                                             * *                        Bugcheck Analysis                                    * *                                                                             * *******************************************************************************
    SESSION_HAS_VALID_POOL_ON_EXIT (ab) Caused by a session driver not freeing its pool allocations prior to a session unload.  This indicates a bug in win32k.sys, atmfd.dll, rdpdd.dll or a video driver. Arguments: Arg1: 0000000000000001, session ID Arg2: 00000000000000f0, number of paged pool bytes that are leaking Arg3: 0000000000000000, number of nonpaged pool bytes that are leaking Arg4: 0000000000000001, total number of paged and nonpaged allocations that are leaking. nonpaged allocations are in the upper half of this word, paged allocations are in the lower half of this word.
    Debugging Details: ------------------
    TRIAGER: Could not open triage file : e:\dump_analysis\program\triage\modclass.ini, error 2
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT
    BUGCHECK_STR:  0xAB
    PROCESS_NAME:  csrss.exe
    CURRENT_IRQL:  0
    LAST_CONTROL_TRANSFER:  from fffff80060680506 to fffff800600fc040
    STACK_TEXT:  fffff880`05d059b8 fffff800`60680506 : 00000000`000000ab 00000000`00000001 00000000`000000f0 00000000`00000000 : nt!KeBugCheckEx fffff880`05d059c0 fffff800`603e8bb5 : fffff880`04983b40 00000000`00000000 fffff880`04983000 ffffffff`ffffffe6 : nt! ?? ::NNGAKEGL::`string'+0x36216 fffff880`05d05a10 fffff800`604a48b6 : 00000000`00000372 fffff880`04983000 fffffa80`090203c0 fffffa80`08fc4540 : nt!MiDereferenceSessionFinal+0xf1 fffff880`05d05a80 fffff800`604abe68 : fffff8a0`00142b00 00000000`00000000 00000000`00000001 00000000`00000001 : nt!MmCleanProcessAddressSpace+0x2be fffff880`05d05af0 fffff800`604ac55e : fffffa80`00000000 00000002`00000001 00000000`00000000 fffff8a0`00d0b8f0 : nt!PspExitThread+0x668 fffff880`05d05c10 fffff800`600e1dd6 : fffff800`60377180 00000000`00000080 fffffa80`090203c0 fffffa80`08fc4540 : nt!PspTerminateThreadByPointer+0x4e fffff880`05d05c60 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiStartSystemThread+0x16
    STACK_COMMAND:  kb
    FOLLOWUP_IP: nt! ?? ::NNGAKEGL::`string'+36216 fffff800`60680506 cc              int     3
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  nt! ?? ::NNGAKEGL::`string'+36216
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  5010ac4b
    FAILURE_BUCKET_ID:  X64_0xAB_nt!_??_::NNGAKEGL::_string_+36216
    BUCKET_ID:  X64_0xAB_nt!_??_::NNGAKEGL::_string_+36216
    Followup: MachineOwner ---------

    Ok, the problem is generated by NVIDIA VIDEO DRIVER!
    Honesty I cant understand why LENOVO not choose for this machines a ivibridge CPU with HD4000 VIDEO, performance is similar, and Intel VIDEOS GPU, have 0 troubles, ATI AND NVIDIA always are very problematic.
    Anyway the solution is simple:
    1 Turn OFF windows update, or change to selective install.
    This prevent win update install NVIDIA driver in automatic way.
    2 Uninstall NVIDIA driver sand NVIDIA related stuff.
    3 Restart the machine, NOT POWER OFF, just restart.
    4 Now go to SYSTEM PROPERTIES > HARDWARE > DEVICE MANAGER
    INSIDE DISPLAY ADPATER NOW SELECT DISABLE THE DEFAULT VGA DRIVER, NOR UNINSTALL CHOOSE DISABLE!
    NOW RESTART.
    After restart now touchscreen work correctly, and next time you power off the machine, not have that ugly error all time.
    This not is a final solution is just a workaround until LENOVO/NVIDIA provide a final fix for this.

  • I need to upgrade my 10.5.1 os on my G4/1.25 (I'm having some audio-midi setup problems), but it's a machine that is not connected to the internet.  Do I have any options?  Thanks!

    Friends,
    I'm having some audio-midi setup problems on my G4/1.25/10.5.1 machine.  I'm thinking that a routine OS upgrade might help.  However, this machine is not connected to the internet.  Are there any alternate methods for upgrading system software?  Thanks in advance!

    OK, what you should do is download the updates on another machine and burn them to a disc.  Start at this link http://support.apple.com/downloads/#leopard for downloads and find, among other things, the 10.5.8 combo updater that works on PPC machines, plus security, QuickTime and other updates.  Going from 10.5.1 to 10.5.8, there will probably be a bunch of things that you should install.  Being off the internet with the machine, you can't have Software Update sort it out, so something might get missed, unfortunately.
    My suggestion is this: if it looks like you might need a download, get it onto that disc.

  • Help: Step by step instructions for Express and Extreme setup?

    Hi everyone.
    I have been trying for the last 2-3 days to get this going and for reasons unknown, I just can't seem to set up my network like I had it working before.
    What I am trying to do is add an AEX (802.11n) to my home network to help extend the signal in house. My router is an AEBS 4th generation which is connected to an Efficient Networks Speedstream 5100 modem.
    I know this set up works because I set up and it worked fine. I then rearragend my home office, unplugged some cables, and when I went to reconnect, everything went downhill. I didn't change any settings, I just unplugged and reconnected. I have only my AEBS connected, I get internet and everything works fine. When I try to add AEX, everything freezes up and I lose my connection.
    I've done a hard reset on both AEX and AEBS trying to get this to work and still, nothing.
    I started with the AEBS first and here are the steps I took:
    Manual Setup > Airport Button > Wireless Tab > Create a network > Network Name > Radio Mode > Automatic > Radio Channel > Automatic >
    Wireless Security > WPA2 > PassWord
    I then add AEX to the mix:
    Manual Setup > Airport Button > Wirelss Tab > Extend Network > Find home network > Wireless Security > WPA2 > Password
    I have AEBS connected to modem via ethernet cable. I then have ethernet cable running from AEBS to AEX.
    This is the configuration I used when I first setup my home network and had no problems whatsoever.
    All this was done in 5-10 minutes.
    Now, now I can't figure this out.
    Any help?

    I have AEBS connected to modem via ethernet cable. I then have ethernet cable running from AEBS to AEX.
    Understand. Good plan.
    I then add AEX to the mix:
    Manual Setup > Airport Button > Wirelss Tab > Extend Network > Find home network > Wireless Security > WPA2 > Password
    There's the problem......Extend Network.....Should be Create a wireless network. "Extend" is only used if you are trying to connect using wireless only. You are connecting using Ethernet.
    Set Channel = Automatic and Radio Mode to your choice
    Make sure that the Express is in Bridge Mode as well:
    Internet icon > Internet Connection tab > Connection Sharing = Off (Bridge Mode) > Update
    Then...very important to power cycle the entire network by powering everything off in any order you want.
    Start the modem first and let it run a minute or two, then the AirPort Extreme same way, then Express the same, etc until everything is powered back up

  • PHP and MySQL Connection problem

    I am trying to make a PHP MySQL on a remote server connection in Dreamwesaver CS3.
    When I enter the information (host, user, password, etc.) and hit TEST, I get the following error message.
    "Access Denied. The file may not exist, or there could be a permission problem. Make sure you have proper authorization on the server and the server is properly configured."
    I know the user, password, etc. work, as I can access the MySQL database with other software.
    I checked with my host and they say there are no permission problems on their end.
    I have checked the settings on the Test Server page in Site Setup and everything looks correct and works there.
    I have not seen this particular problem described in other forum postings (although there are a LOT of postings on this topic!).
    Any help would be appreciated.

    I thought my testing server was the remote server and is always on as far as I know. I don't know how to turn it on or off.
    Is there some other testing server that I should be aware of?
    Frank
    Date: Wed, 3 Jun 2009 15:43:02 -0600
    From: [email protected]
    To: [email protected]
    Subject: PHP and MySQL Connection problem
    I know you are using remote, but is your testing server on? if not turn that on and see if that does it. it just happened to me working on remote server and could not get mysql conn to work, until I turn on my testing (developer server), then I was able to connect to mysql and the tables that I created in phpmyadmin remotly was downloaded.
    >

  • Setup problem - using 8520 as modem

    Hi,
    I am following the instruction here to setup my device (unlucked Curve 8520, with AT&T)
    http://www.blackberry.com/btsc/search.do?cmd=displ​ayKC&docType=kc&externalId=KB05196
    At task 2, step 7, I can not input any character in the Extra initialization commands field...
    Can anyone give me some hind to proceed? Thank you so much!
    Moreover, I followed another instruction and had another problem
    http://www.blackberryforums.com/blackberry-guides/​2019-user-howto-use-blackberry-modem-laptop.html
    At step 8, I check my "Standard Modem Properties"  - Diagnostics - Query Modem, and got something seemingly incorrect:
    AT+FCLASS=? COMMAND NOT SUPPORTED
    AT#CLS=?    COMMAND NOT SUPPORTED
    AT+GCI?    COMMAND NOT SUPPORTED
    AT+GCI=?   COMMAND NOT SUPPORTED 
    I feel the two issues are not dependent. Please help me resolve them. Thank you so much!
    Sean

    Which version of the Desktop Manager are you running? If you're running 5.0.1 can you try to use the IP Modem option to setup the modem?
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

Maybe you are looking for