Trouble with LAMP setup on Linode...

Hey everyone,
So I followed this guide  : https://www.linode.com/docs/websites/la … arch-linux
But for some reason, every time I try to naviage to the IP address in my browser, I keep getting a 403 error, that either there is no index.html or there is a read protection.
Here's my /etc/httpd/conf/httpd.conf
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
# will be interpreted as '/logs/access_log'.
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to specify a local disk on the
# Mutex directive, if file-based mutexes are used. If you wish to share the
# same ServerRoot for multiple httpd daemons, you will need to change at
# least PidFile.
ServerRoot "/etc/httpd"
# Mutex: Allows you to set the mutex mechanism and mutex file directory
# for individual mutexes, or change the global defaults
# Uncomment and change the directory if mutexes are file-based and the default
# mutex file directory is not on a local disk or is not appropriate for some
# other reason.
# Mutex default:/run/httpd
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 80
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule authn_file_module modules/mod_authn_file.so
#LoadModule authn_dbm_module modules/mod_authn_dbm.so
#LoadModule authn_anon_module modules/mod_authn_anon.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule authn_socache_module modules/mod_authn_socache.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
#LoadModule authz_dbm_module modules/mod_authz_dbm.so
#LoadModule authz_owner_module modules/mod_authz_owner.so
#LoadModule authz_dbd_module modules/mod_authz_dbd.so
LoadModule authz_core_module modules/mod_authz_core.so
#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule auth_basic_module modules/mod_auth_basic.so
#LoadModule auth_form_module modules/mod_auth_form.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule allowmethods_module modules/mod_allowmethods.so
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule cache_module modules/mod_cache.so
#LoadModule cache_disk_module modules/mod_cache_disk.so
#LoadModule cache_socache_module modules/mod_cache_socache.so
#LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
#LoadModule socache_dbm_module modules/mod_socache_dbm.so
#LoadModule socache_memcache_module modules/mod_socache_memcache.so
#LoadModule watchdog_module modules/mod_watchdog.so
#LoadModule macro_module modules/mod_macro.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule dumpio_module modules/mod_dumpio.so
#LoadModule echo_module modules/mod_echo.so
#LoadModule buffer_module modules/mod_buffer.so
#LoadModule data_module modules/mod_data.so
#LoadModule ratelimit_module modules/mod_ratelimit.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
#LoadModule ext_filter_module modules/mod_ext_filter.so
#LoadModule request_module modules/mod_request.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
#LoadModule reflector_module modules/mod_reflector.so
#LoadModule substitute_module modules/mod_substitute.so
#LoadModule sed_module modules/mod_sed.so
#LoadModule charset_lite_module modules/mod_charset_lite.so
#LoadModule deflate_module modules/mod_deflate.so
#LoadModule xml2enc_module modules/mod_xml2enc.so
#LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule mime_module modules/mod_mime.so
#LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
#LoadModule log_debug_module modules/mod_log_debug.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule logio_module modules/mod_logio.so
#LoadModule lua_module modules/mod_lua.so
LoadModule env_module modules/mod_env.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
#LoadModule remoteip_module modules/mod_remoteip.so
LoadModule php5_module modules/libphp5.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
#LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_express_module modules/mod_proxy_express.so
#LoadModule session_module modules/mod_session.so
#LoadModule session_cookie_module modules/mod_session_cookie.so
#LoadModule session_crypto_module modules/mod_session_crypto.so
#LoadModule session_dbd_module modules/mod_session_dbd.so
LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
#LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
#LoadModule ssl_module modules/mod_ssl.so
#LoadModule dialup_module modules/mod_dialup.so
LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
#LoadModule mpm_event_module modules/mod_mpm_event.so
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
LoadModule unixd_module modules/mod_unixd.so
#LoadModule heartbeat_module modules/mod_heartbeat.so
#LoadModule heartmonitor_module modules/mod_heartmonitor.so
#LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
#LoadModule asis_module modules/mod_asis.so
#LoadModule info_module modules/mod_info.so
#LoadModule suexec_module modules/mod_suexec.so
#LoadModule cgid_module modules/mod_cgid.so
#LoadModule cgi_module modules/mod_cgi.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_lock_module modules/mod_dav_lock.so
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
#LoadModule imagemap_module modules/mod_imagemap.so
#LoadModule actions_module modules/mod_actions.so
#LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
#LoadModule rewrite_module modules/mod_rewrite.so
<IfModule unixd_module>
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
User http
Group http
</IfModule>
# 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [email protected]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If your host doesn't have a registered DNS name, enter its IP address here.
#ServerName www.example.com:80
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
<Directory />
AllowOverride none
Require all denied
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/srv/http/default"
<Directory "/srv/http/default">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Require all granted
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<Files ".ht*">
Require all denied
</Files>
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog "/var/log/httpd/error_log"
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
<IfModule log_config_module>
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
CustomLog "/var/log/httpd/access_log" common
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog "/var/log/httpd/access_log" combined
</IfModule>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
</IfModule>
<IfModule cgid_module>
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#Scriptsock cgisock
</IfModule>
# "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
<IfModule mime_module>
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
TypesConfig conf/mime.types
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#AddType application/x-gzip .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#AddHandler cgi-script .cgi
# For type maps (negotiated resources):
#AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
</IfModule>
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#MIMEMagicFile conf/magic
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall may be used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
# Defaults: EnableMMAP On, EnableSendfile Off
#EnableMMAP off
#EnableSendfile on
# Supplemental configuration
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf
# Multi-language error messages
Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
Include conf/extra/httpd-autoindex.conf
# Language settings
Include conf/extra/httpd-languages.conf
# User home directories
#Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
# Various default settings
Include conf/extra/httpd-default.conf
Include conf/extra/php5_module.conf
# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
# uncomment out the below to deal with user agents that deliberately
# violate open standards by misusing DNT (DNT *must* be a specific
# end-user choice)
#<IfModule setenvif_module>
#BrowserMatch "MSIE 10.0;" bad_DNT
#</IfModule>
#<IfModule headers_module>
#RequestHeader unset DNT env=bad_DNT
#</IfModule>
IncludeOptional conf/sites-enabled/*.conf
IncludeOptional conf/mods-enabled/*.conf
Here's my /etc/httpd/conf/extra/httpd-vhosts.conf
# Virtual Hosts
# Required modules: mod_log_config
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.4/vhosts/>
# for further details before you try to setup virtual hosts.
# You may use the command line option '-S' to verify your virtual host
# configuration.
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/etc/httpd/docs/dummy-host.example.com"
ServerName dummy-host.example.com
ServerAlias www.dummy-host.example.com
ErrorLog "/var/log/httpd/dummy-host.example.com-error_log"
CustomLog "/var/log/httpd/dummy-host.example.com-access_log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/etc/httpd/docs/dummy-host2.example.com"
ServerName dummy-host2.example.com
ErrorLog "/var/log/httpd/dummy-host2.example.com-error_log"
CustomLog "/var/log/httpd/dummy-host2.example.com-access_log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin my_email_address
ServerName li165-35.members.linode.com
ServerAlias www.li165-35.members.linode.com
DocumentRoot /srv/http/li165-35.members.linode.com/public_html/
ErrorLog /srv/http/li165-35.members.linode.com/logs/error.log
CustomLog /srv/http/li165-35.members.linode.com/logs/access.log combined
<Directory />
Order deny,allow
Allow from all
Require all granted
</Directory>
</VirtualHost>
I used chown/chgrp -R http to make sure everything in /srv/http was managed by http.
What am I doing wrong? Also, that's my FQDN. I'm not sure if it's insecure or not to post that. I mean, I want people to visit the site.
I also put a index.html in my /srv/http/default and /srv/httpd/li.../public_html folders.
index.html :
<html>
<head />
<body>
<p>Hello, world!</p>
</body>
</html>
I will say this, I don't have any DNS type stuff set-up. I don't even know what that is (I know, I should read up).
But even if I type in just the IP, I still get the permission error.
Edit : I'm an idiot! The link actually works! The IP itself fails but the url I posted for the virtual host works! The FQDN actually works. Omg. Is this because I updated the /etc/hosts file on MY system to recognize the FQDN with the IP?
Last edited by MutantJohn (2015-01-21 19:03:43)

after I downloaded the 10.8 Mac OS I could not open the Cisco Connect Software. I went to chat with the customer support people and they beat me around the bush and they knew that it was not compatible with 10.8 Spoke with two different people, asked a crazy amount of questions about the router and the connection but in the end of the hour plus convo with them they said it was not compatible when they know all along. I mean, come on I can not be the first person with this problem.

Similar Messages

  • Troubles with WiFi setup

    Hi there, I am new in the Arch-world, and I am having some troubles in installing this OS.
    I have read every documentation file I found in the web, unfortunately I can't connect the pc to my wifi network.
    First, I used LiLi to create a bootable iso on my IoMega HD.
    I followed (mainly, but not only because I read other resources on the web) the Wiki wireless setup guide, but with no success.
    I have a broadcom wifi card (BCM4313) and according to Ubuntu doc I should not have any troubles.
    Using the "wifi-menu" command, I get this error message:
    Job for netctl@wlp10s0\x2dTNCAPD1D28F.service failed. See 'systemctl status netctl@wlps0\x2dTNCAPD1D28F.service' and 'journalctl -xn' for details.
    Thank you very much!

    cris9288 wrote:
    if those modules aren't loaded then you can proceed to the next steps. For broadcom-wl to work, the other modules (brcmsmac) have to be removed. If you install broadcom-wl from the aur, it will create a file which automatically blackulists those modules. You then have to make sure you load wl, and it's deps (may be loaded automatically) at boot.
    Also, keep in mind that the interface names might be different from the brcmsmac names under the wl module. Always check iwconfig/ip link. The numbers that appear in front of your prompt are the return values from the previous operation, I believe.
    what modules do you have loaded right now? You can check with lsmod.
    When I write # modprobe wl, I get another error message:
    modprobe: FATAL: Module wl not found
    Right now I am unable to take a photo, so this is the list of the modules (note that the list fills the display, so probably there are more mods up):
    lis3lv02d
    mei
    ac
    input_polldev
    battery
    processor
    evdev
    lpc_ich
    nfs
    lockd
    sunrpc
    fscache
    ext4
    crc16
    mbcache
    jbd2
    dm_snapshot
    dm_mod
    squashfs
    loop
    nls_cp437
    vfat
    fat
    usb_storage
    sr_mod
    cdrom
    sd_mod
    rtsx_pci_sdmmc
    mmc_core
    ahci
    libahci
    i915
    libata
    intel_agp
    intel_gtt
    crc32c_intel
    nouveau
    i2c_algo_bit
    mxm_wmi
    ttm
    scsi_mod
    drm_kms_helper
    ehci_pci
    xhci_hcd
    rtsx_pci
    ehci_hcd
    r8169
    mii
    drm
    usbcore
    usb_common
    i2c_core
    wmi
    video
    button

  • Troubles With Network Setup ( 1 modem, 2 routers, 2 LANS, & a home server)

    Purchased the AEBS yesterday and have been having a devil of a time setting it up. Here's the network set-up:
    Cable ISP -> modem -> Netgear Router (b/g) that belongs to my landlord -> AEBS for my personal (and not shared with the LL) LAN
    My big issue is that I can't get more than one wireless connection at a time from the AEBS.
    However, I think it's important to ask about the best set up in this situation. For now, I'm interested in getting proper wireless connections for the 20 or so devices that need it (fyi - wired connections currently working). In the very near future (by the weekend) I will be adding a server to the mix (thanks to Amahi) that will be responsible for the DHCP of my LAN.
    What is the best way to set the system up so that i can get the wireless i need now while also being able to convert the system with relative ease in the near future?

    Hello Stecca. Welcome to the Apple Discussions!
    In your current configuration, your network is still "shared" by your landlord's LAN. You basically have two ways to configure your AEBS: 1) Router Mode: NAT & DHCP enabled, or 2) Bridge Mode: NAT & DHCP disabled.
    Regardless of which of these configuration you choose, ALL wired or wireless clients connected to your AEBS would still need to go through the Netgear router for Internet access. In the first option, your AEBS would be configured with a Private IP Address from the Netgear router and provide local clients with a different subnet addressing scheme. With the second option, all wired or wireless clients connected to the AEBS would get their IP addressing from the Netgear router.
    Typically, when you have two routers in series, the second or downstream router is configured as a bridge.

  • Trouble with DNS set up

    Hello !
    I've got a real trouble with my dns configuration... and i can't understand! so, i need some help....
    well, qutie newbie in mac os server, i run in on a G4, and i had not noticed any trouble until i've decided to run open directory as a master with LDAP, wanting to have a kerberos protection for the users.
    Kerberos doesn't want to play with me !
    I've been in console mode to have a look, and, actually i've seen this :
    "Oct 17 11:31:08 wakan servermgrd: servermgr_dns: no name available via DNS for 192.168.0.109
    Oct 17 11:31:08 wakan servermgrd: servermgr_dns: no reverse DNS entry for server, various services may not function properly"
    Ok... my DNS has a trouble... but i don't know how to fix it ! Is there anybody in this world who can help me?
    I don't want to have a real DNS for my little server... but i understand that my config is not good. I can understand that having a caching DNS can improve the quality of my config, and, in other hand that it is necessary for having the services of OSX server in an effeciant way, but i don't know the way and the parameters i've to put in my config to fix it.
    Now, just some words on my config...
    First, i've got an adress provided by my FAI (the frenchy workd for ISP, i think) is "193.252.209.135". This adress is set on a d-link modem router via PPOE. The DNS of my provider (wanadoo.fr) are 80.10.246.1 and 80.10.246.132.
    After this there is my G4 With mac osX server.
    • en0, the "extenal gate" and the internal ethernet on the computer is plug on the modem with the adress "192.168.0.109". the router is set on "192.168.0.1". the dns are 80.10.246.1 and 80.10.246.132.
    • en1, the "internal gate" for the network, an PCI card in the computer, has the parameters : adress "192.168.3.1", subnet "255.255.255.0", router "192.168.3.1". no dns records. (no VPN service for the moment). After this, i've a switch for the macs behind the server. (without any link agregation)
    All those parameters have been set by the gateaway assistant.
    And now the parameters inside the admin server :
    DHCP : en1 - adress from 192.168.3.2 to 192.168.3.254, name 192.168.3. no static card. Router 192.168.3.1. No name for domaine by defaut, name servers 80.10.246.1 and 80.10.246.132 No LDAP, no WINS.
    DNS : No zone transfert, recursivity is ON. No zone records.
    NAT : set on full, Transfert and Network Address Translation.
    When i've been on the terminal, i had those information:
    "wakan:~ st$ sudo changeip -checkhostname
    Password:
    Primary address = 192.168.0.109
    Current HostName = wakan.local
    The DNS hostname is not available, please repair DNS and re-run this tool."
    All my "main" services are working fine (AFP, Firewall, DHCP, DNS, Update) Open Directory is running without Kerberos. By the way, all the macs after the G4server can have a corect access to internet, and share information via LDAP of Open Directory, but i've to say that, a couple of days later, a friend of mine, who has a PC computer, can't have a DHCP dynamic address when he plug on my little network. I think that it is an other trouble, and i've decided to have e look to this later... but if someone knows how to resolve it...
    So here begins the nightmare for me... so if anybody can help me... i realy need some help to fix this mystery!!!
    Special thanks!

    As the router modem is already doing NAT why use NAT in the server?
    If you want to use OpenDirectory and other services you should/need to set up the DNS correctly using the server's private IP (and others in the same range the server is setup with). The domainname used internally can be different than your public one.
    And then use the server as the only DNS for you LAN clients and the server itself. Forwarders (your ISP DNSes) in /etc/named.conf usually speeds up lookups of external addresses (also turning off IPv6 can help that too).

  • Trouble with 3 ATV to connect to iTunes in one WiFi / LAN

    Hi community,
    I've trouble with my ATVs in my network. I have 1 3Gen. ATV connected via LAN to iTunes on iMac and 2 2Gen. ATVs via WiFi. The problem I am facing is, if I am connected with two of them to my iTunes Library the third can't even the others ( which have been conneted) are off. If I restart iTunes, I can connect again two of them and the third (doesn't matter which one) cannot. So I can circle arround which one gets connected but it is not very satisfying. 
    My network is setup on two Airport express and a TC 2Gen to cover the whole house. As I stated above, the ATV 3Gen is connected via Lan, and the other two via WLAN?
    Any idea what I've made wrong, or what to do to find the problem?
    Thanks in advance

    Until the MacBook Air was released and supported in 10.5, the Mac did not consider USB to be a valid Networking Protocol. So set the Mac with USB solutions aside.
    To connect computer-to-computer, you typically need to be using an Ethernet crossover cable. Assigning the same address to two Ethernet devices is never the solution -- it gives a Network Conflict, just as you said.
    If your Windows box has some mechanism for Sharing its WiFi connection over Ethernet, you would have to follow its rules. Whether that means Manually assigning an Ethernet Address in the same range or the PC will provide the Address, I do not know.
    Best success may be running an Ethernet cable to your Wired/Wireless Base Station, or using a "gaming adapter" (Ethernet-to-Wireless no drivers required) connected to the Mac's Ethernet port to give it WiFi access. What is your Base Station {Cable, DSL, FIOS, Other} ? Ethernet cables can be up to 100 meters (an American Football Field). Often the Base Station can be moved closer for more convenience.

  • Update of photoshop CC - trouble with NVIDIA Quadro 1000M display driver. PS freezes

    Hey guys,
    Since today I've got trouble with my PS CC.
    I've updated PS CC yesterday 2014-12-12.
    I was doing some drawings today and two times PS freezes during switching layers of or selecting a mask.
    A message appeared that there was trouble with the display driver an PS switched off the GPU support because of that issue.
    Ok, I thought let's update the display driver and so I've done today. I switched to actual NVIDIA display driver version 314.21
    I'm working with an NVIDIA Quadro 1000M on a DELL mobile Workstation Precision M4600 with 8 GB RAM.
    Now when I start up PS and press alt+k, my 2 displays showing a black screen for 1-2 seconds.
    After closing the general setup window again black screen for 1-2 sec and the top menu bar is showing no entries.
    When I move the mouse pointer over the bar, the menus appear again. But the bar is like transparent at the parts where no menues are.
    When I unlock the window from the screen an put it back fitting to the screen everything looks like normal.
    Till today I hadn't any problem with my notebook in that kind of way.
    Maybe someone has or had similar problems.
    Would be nice if someone can help me.
    thanks

    Oh, that sounds very bad. It's not that bad for me. It's not crashing that often at the moment, only black screens at start up or if setting dialog is opened. But I will see tomorrow how often it will crash, during today it crashed 2 times when doing some ridiculous simple actions like switchid to another layer  and the other time when trying to edit an mask layer. I will contact the support chat on monday regarding this issue. Maybe there is a solution or an update soon... I keep may fingers crossed for you.

  • Trouble with Photoshop Cs6

    Having trouble with Photoshop cs6. Brushes that i have downloaded from 3rd party websites were deleted from Photoshop after months of use. We replaced all the brushes 1 by 1 but now there is an extreme lag in almost every function in photoshop that i had never experienced before. Dont know what is going wrong.

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Trouble with Time Machine (runs constantly). Erase and install?

    Trouble with Time Machine (runs constantly). Tried re-installation (equivalent of archive install) of Snow Leopard. Time Machine still unable to complete a back-up. Erase and install recommended at Genius Bar. Have backed up data to external HD using Super Duper. Should be a bootable backup. Last successful backup through Time Machine was 6/1/11. Not sure if I can access this back-up if I erase and re-install.
    Computer shipped with Tiger (7/2007). Have original disks. Now running Snow Leopard. So: erase HD, install Tiger, then update to Snow Leopard? Start-up from Tiger disks does not appear to work (starting up holding "C" key). Suggestions? Want very much to transfer data to new iMac, but do not want to carry bugs forward. Very nervous about erasing HD. And have the questions above about reinstalling system software.
    Advice desired! Thanks.

    Well if you can hold option and boot off the Superdupes clone and it works fine then you should be set to do what you need to do to the original boot drive.
    Disconnect all drives and c boot off the Snow Leopard install disk, use Disk Utility to Erase > format HFS+ journaled your internal boot drive.
    Quit and reinstall OS X Snow Leopard, setup (do not use Setup/Migration Assitant!) and update to 10.6.8
    When you setup the new install, use the same hard drive name and user name as you did before.
    Now the free iLife that came on the Tiger disks you won't get naturally, but you can pick them off the disk with the shareware program called Pacifist.
    install your programs from fresh sources, this way you don't get the "crap" from the older setup.
    Once your machine is up and going. Hook up the clone and transfer your user folders over manually. With iTunes just replace the whole folder. Because you kept the same user and boot drive name as before, the playlists should be fine.
    Once your all peachy, take the opportunity to clone this new setup to a external drive, label and disconnect.
    Make another clone for day to day, or week to week clone updates and your just a hold option boot away for recovery.
    You know Superdupes and Carbon Copy Cloner both have auto-scedualing/updating ability, so you can leave them plugged in and it will perform a update so your clone stays fresh and recent.
    But you should keep a clone timed back about a couple of weeks back just in case you install something bad and don't learn about it right away.

  • Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download

    Current system info:
    Windows 7 (64 bit)
    Internet Explorer 9 (using 32 bit for downloading FP)
    I upgraded to 10.3.183.7 and immediately noticed my laptop unable to display/use Flash features (facebook games, online flyers, video, etc)
    I uninstalled and installed multiple times using both Control Panel and the uninstaller provided on Adobe help page. I restarted my laptop after every install and after every uninstall. I made sure to use 32-bit IE each time.
    At first Programs (and Control Panel) showed FP as installed but now it doesn't register as installed at all - aside from the installer program telling me it is installed.
    After installing, on the Adobe 'test' page instead of the spinning F I see a box with an 'x' in the top left hand corner (like an image/graphic that won't load).
    I tried the beta FP 11 but same problem. It at least showed up on my programs list. I uninstalled it and am back to FP 10.3
    I have been on the help page trying anything I can find to get it working but no luck so far. Any advice for this issue?
    Thanks,
    Jill

    FP does appear in my Control Panel for uninstalling but does not appear in my Programs list. I downloaded Google Chrome and FP seems to work with it (though I'm not a big fan of the browser)So, it would appear to be an IE issue? If you still want the install log:=O====== M/10.2.152.26 2011-04-11+18-41-26.195 ========
    0000 00000010 "C:\SWSetup\AFlash\Setup.exe"  -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10m.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.dll
    =X====== M/10.2.152.26 2011-04-1118-41-27.490 =========O====== M/10.3.183.7 2011-09-0701-16-25.406 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0701-16-28.438 =========O====== M/10.3.183.7 2011-09-0801-30-39.351 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0801-30-39.737 =========O====== M/10.3.183.7 2011-09-0801-47-26.279 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0801-47-30.257 =========O====== M/10.3.183.7 2011-09-0802-10-04.958 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0802-10-05.672 =========O====== M/10.3.183.7 2011-09-0802-10-09.789 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0802-10-14.574 =========O====== M/10.3.183.7 2011-09-0901-14-55.652 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001039
    =X====== M/10.3.183.7 2011-09-0901-15-53.743 =========O====== M/10.3.183.7 2011-09-0901-17-38.865 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0901-17-43.904 =========O====== M/10.3.183.7 2011-09-0901-39-18.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0901-39-21.150 =========O====== M/10.3.183.7 2011-09-0901-50-41.972 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0901-50-42.376 =========O====== M/10.3.183.7 2011-09-0901-51-01.582 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0901-51-05.961 =========O====== M/10.3.183.7 2011-09-0902-17-44.951 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0902-17-50.193 =========O====== M/10.3.183.7 2011-09-0920-41-16.435 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0920-41-19.293 =========O====== M/10.3.183.7 2011-09-0920-55-06.571 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0920-55-06.966 =========O====== M/10.3.183.7 2011-09-0920-56-08.701 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0920-56-12.629 =========O====== M/10.3.183.7 2011-09-0921-08-02.144 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0921-08-02.579 =========O====== M/11.0.1.129 2011-09-0921-11-39.470 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\F393.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-11-42.519 =========O====== M/11.0.1.129 2011-09-0921-17-05.196 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\ED5C.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-17-09.205 =========O====== M/10.3.183.7 2011-09-0922-04-01.333 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-04-01.640 =========O====== M/11.0.1.129 2011-09-0922-06-14.485 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\3BB9.dir\InstallFlashPlayer.exe" -uninstall activex
    0001 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0007 00001021
    0008 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    =X====== M/11.0.1.129 2011-09-0922-06-14.921 =========O====== M/10.3.183.7 2011-09-0922-07-17.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-07-17.565 =========O====== M/10.3.183.7 2011-09-0922-22-52.408 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-22-52.746 =========O====== M/10.3.183.7 2011-09-0922-24-17.263 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-24-18.248 =========O====== M/10.3.183.7 2011-09-1012-35-47.416 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-35-47.727 =========O====== M/10.3.183.7 2011-09-1012-38-11.063 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-38-11.400 =========O====== M/10.3.183.7 2011-09-1012-49-48.987 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-49-49.311 =========O====== M/10.3.183.7 2011-09-1012-55-05.778 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001018
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00001019
    0007 00001020
    0008 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0009 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0010 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0011 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0012 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0013 00001021
    0014 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0015 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0017 00001048
    0018 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0019 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0020 00001018
    0021 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0022 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0023 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0024 00001019
    0025 00001020
    0026 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0027 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0028 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0029 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0030 00001021
    0031 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0032 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0033 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0034 00001048
    0035 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0036 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0037 00001036 Software\Opera Software/Last CommandLine 2
    0038 00001036 Software\Opera Software/Last CommandLine 2
    0039 00001036 Software\Opera Software/Plugin Path 2
    0040 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1012-55-11.581 =========O====== M/10.3.183.7 2011-09-1013-00-20.739 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-00-23.216 =========O====== M/10.3.183.7 2011-09-1013-23-41.978 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    0001 00001039
    =X====== M/10.3.183.7 2011-09-1013-23-56.159 =========O====== M/10.3.183.7 2011-09-1013-32-02.098 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1013-32-02.525 =========O====== M/10.3.183.7 2011-09-1013-32-20.324 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1013-32-23.998 =========O====== M/10.3.183.7 2011-09-1013-33-17.451 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-33-20.571 =========O====== M/10.3.183.7 2011-09-1013-38-14.133 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 00001021
    0007 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 00001018
    0011 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0012 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0013 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0014 00001019
    0015 00001020
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0017 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0018 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0019 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0020 00001021
    0021 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0022 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0023 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0024 00001048
    0025 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0026 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0027 00001036 Software\Opera Software/Last CommandLine 2
    0028 00001036 Software\Opera Software/Last CommandLine 2
    0029 00001036 Software\Opera Software/Plugin Path 2
    0030 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1013-38-23.680 =========O====== M/10.3.183.7 2011-09-1013-51-14.222 ========
    0000 00000010 "C:\Windows\Downloaded Program Files\FP_AX_CAB_INSTALLER.exe" /RegServer
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0007 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0008 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-51-23.941 =========O====== M/10.3.183.7 2011-09-1013-54-43.664 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-54-46.332 =========O====== M/10.3.183.7 2011-09-1014-01-14.234 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-01-14.695 =========O====== M/10.3.183.7 2011-09-1014-01-50.253 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-01-52.831 =========O====== M/10.3.183.7 2011-09-1014-09-42.630 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-09-43.028 =========O====== M/10.3.183.7 2011-09-1014-10-52.113 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-10-54.949 =========O====== M/10.3.183.7 2011-09-1014-21-57.215 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-22-13.173 =========O====== M/10.3.183.7 2011-09-1018-08-14.860 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1018-08-28.651 =========O====== M/10.3.183.7 2011-09-1018-18-04.868 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-10+18-18-07.420 ========
    > Date: Sun, 11 Sep 2011 07:46:49 -0600
    From: [email protected]
    To: [email protected]
    Subject: Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download
    function(){return A.apply(null,[this].concat($A(arguments)))}
    >

  • Are people still having trouble with iPhone/HP Laptops?

    Since I've had my Envy I've had no end of trouble with getting it and the iPhone to play nice. Any my search continues. So far, I have updated every bios, reinstalled Windows 7/iTunes many times, have restored the iPhone far more times than I care to remember and I am STILL having troubles with this thing. Having got through the Syncing issues with the PM55 chipset and iPhone I can now sync with my laptop. However all is not well as it would seem that I cannot sync my photo's. It doesn't matter if I have 0gb, 15gb or 30gb free, iTunes is telling me that there is not enough memory available. This error seems like an old one and there is even some info in the Apple KB but after following all that I still can't get it to sync my photo's.
    Some info on my setup:
    HP Envy 15 (all the latest drivers installed, bios F.24) Core i7-820, 8gb ram etc.
    iPhone 32gb, ver 3.1.3
    iTunes (whatever the latest one is)
    I should add that I can sync my iPhone with an identical install of intunes on my vintage Quad core desktop PC, but as I use my Laptop a lot more (and have all my media, email, and contacts etc on it) I would prefer to sync to it.
    Is there anything that I can do? Its very frustrating to have blown $4k on this equipment and it doesn't work...

    Well I tried deleting the photocache but alas, no luck. I also tried syncing with just the photo's enabled, and it worked! So then I enabled my other media and that copied across too! I thought I was on a bit of a roll here, but now whenever I try and sync it will do one of 3 things:
    iTunes will crash.
    iTunes will indicate that there is not enough memory on the device (+9GB free)
    iTunes will remove the iPhone from the sidebar (and my computer/disk management) even though it will continue to charge.
    Interesting point to note is that it works fine (cable/iphone/itunes/media library) on my desktop and macbook. Still really disappointed that I cannot get these two to cooperate. Also still haven't got any contacts from outlook but that may not be related?

  • Custom Installer with Inno Setup (reduce size of Run-Time and VISA RT)

    Hi,
    we are using Inno Setup to install our Application. Up to now i include the full LabView 2009 SP1 Run-Time and the full VISA-RT
    (that are 302 MB). I have also made an installer using the internal tools of LV and the setup is only 163 MB. The LV removes
    some parts of the RunTime libraries.
    We are using only these parts:
    p0 MetaUninstaller\
    p1 VC2005MSMs\
    p10 NI-RPC\
    p11 XercesDelayLoad27\
    p12 NI-ORB\
    p13 NI-DIM\
    p14 NI_TraceEngine\
    p15 NI-PAL\
    p16 NI_Logos_XT\
    p17 TDMS\
    p18 MDFSupport\
    p19 MKL_900\
    p2 VC2008MSMs\
    p20 NI_Logos\
    p21 RT\
    p3 NI_Certificates\
    p4 NI-VISA_Runtime\
    p5 LabVIEW_RT_NBFIFO_90\
    p6 Service_Locator\
    p7 LabVIEW_Web_Server_RTE_90\
    p8 LabVIEW_WebServices_RTE_90\
    p9 mDNS_Responder\
    1. Is it allows to do that also using Inno Setup? I mean, am I allowd to do that? The license from
    NI etc. are all included. I want to save disc space...
    2. Is that wise? If not, why?
    Thanks

    Hello sjunge,
    basically there should be no problem installing the software with Inno Setup as long as you do not violate the License Agreements.
    But keep in mind that there could be dependencies between the installers you install and those you don't and you may run into trouble with the software later on
    Kind regards
    Carsten

  • Strange trouble with Color

    I experience strange trouble with Color I can't overcame. I try to export DPX sequences in Color ("manually") without using Final Cut. I navigate in setup room to my folder where the files are stored and after I open that folder there is nothing there at all. I tried different folders as well sometime it opens empty and I have to go back up and open folder again to be able to see the contents. But some folder are never "refresh" always opens empty , but I am 110 present sure there are files in them ( I check in Finder). This starts to happen after 10.5.2 update. I have no idea what to do with this and how to overcame that problem., please help.
    My setup is Mac pro 2x2.66Mhz , 3GB Ram, ATI Radeon X1900 video card, 2 Apple cinema displays.
    Mac OS X 10.5.2, Color 1.0.2
    Thanks!

    Let me see if I understand this...
    What you are attempting to convey is that you are trying to import .dpx files into COLOR directly and that COLOR does not recognize the files.
    My bet would be that there is an issue with the .dpx file format. It may be the way they are written, stored, named, the bit-depth... any number of issues. The fact that they don't show up is COLOR's way of telling you that there is a compatibility problem. My experience is that 10-bit and above is poorly handled at the moment, and is not supported at all by some previous versions of Quicktime and Shake, for example, under Leopard, and not even Tiger .4.11. What I started getting were perfect proxy renditions, but actual rendered material was almost pure noise, except there were shadowy remnants of the original scene.
    Consider yourself lucky that the application stopped you at this point, rather than allow the project to go forward, then corrupt after you had devoted a considerable amount of your time and energy to it, then have to go back to fix the original files and do ti all over again, or struggle with reconform, etc.
    jPo

  • Trouble with Extreme N base station and Express station wireless

    Upgraded extreme base station with new extreme "N" base station. Currently have the extreme "N" base station connected to cable modem on 2nd floor. I have wired the house to have the demarc on the 2nd floor. I purchased the express base station to be placed on 1st floor to extend the wireless range from the extreme "N" base station.
    Prior to this setup, I had a wired bridge on the 1st floor to the main router on the 2nd floor. I was able to connect all wireless connections to the bridge where there was weak signal to the main router on 2nd floor.
    The trouble I am having is that whether I have the express base connected or not. My signal is near the same as having only the main base station on 2nd floor. I can be seated right next to the express on the 1st floor and have only 1-2 bars on the signal.
    I have updated and running the latest utilities for the airports. I have also been seeing the same trouble with other Mac's and PC's.
    Also, I have been noticing the extreme "N" base station blinking amber when no Mac's or PC's are accessing the network or even when they are.
    So, even when both the extreme and express have solid green LED, I still have the problem.
    I am not sure if I am setting up this incorrectly or if I have hit a brickwall with this setup in my house.
    Could I hard wire the express from the extreme from the second floor as I did with the bridge I use to have? I am not sure if the express would work as a wired bridge.
    Just appears to be performing less then my prior PC networking products.
    Thanks everyone...hope to get some insight. I have read all the prior discussions and still not getting good results.

    Tesserax....Thanks for the quick clarification on using the expresss as a wired bridge. I did avert back to a wired bridge now using all apple products. I was trying to get away with reusing the hard wire from the base station since I was running out of ports on the base station. {Apple has to be difficult with only having 3 ethernet ports.}
    So I had to run a linksys switch off the extreme "N" base station.
    Thanks again..
    Guess I have to live with the quirks...

  • I have 64-bit Vista on an HP laptop, and am having trouble with P4

    I have 64-bit Vista on an HP laptop, and am having trouble with P4. When I go to the "Compatibility" tab in for the P4 .exe file, 32-bit Vista does not show up as a compatibility option. The latest version shown is XP with SP2. Am I missing something? Is there a patch or download that updates P4?(The problem I'm having is stuttering and stopping in the imported avi2 files I have downloaded from my Panasonic digital camcorder and converted from avi to avi2 using DVDate. Also, I get stuttering with digital photos - jpg files - that I want to insert in the movie with added narration.)

    A.T. Romano
    It gets a little complicated. This is a simplification, but I hope this
    helps to visualize what's happening.
    The 32 bit and 64 bit environments are separated from each other.
    There are separate program files directories, separate shared dll library
    directories, and even separate registry entries. You can't mix 32 and
    64 bit modules, and some applications, like Internet Explorer, install
    both a 32 bit and a 64 bit version on the same computer. (IE does that
    so it can process web pages that use 32 bit executable controls).
    Vista 64 has 32 bit emulation built-in using a subsystem called Windows
    on Windows 64 or WOW64 for short. WOW64 intercepts 32 bit
    application calls to the operating system and handles the 32 to 64 bit
    conversions and the redirection of the file and registry locations.
    The program files themselves contain flags that indicate whether they
    are 32 bit and whether the file uses the 64 bit version of the file
    structure.
    If the program is marked 32 bit, it will run in 32 bit using WOW64.
    Programs are generally installed by an installer program which places
    the application files in the proper locations and writes the registry
    entries and any other setup tasks that are needed. To install a 64
    bit program, a 64 bit installer is needed. For 32 bit installers, the files
    and registry entries are redirected to the 32 bit locations.

  • Having trouble with the move tool not working....   also I cannot seem to crop.... my cloud says I'm up to date, should I

    I seem to be having all kinds of trouble with Photoshop CC2015 and CC as well.... I cannot use the move tool.
    Also have a heck of a time cropping, will not let me select a crop, are there glitches I'm not aware of???

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • How to connect cinema hd display with a 2011 macbookpro

    Can someone tell me how I can connect my old cinema display to my macbookpro 2011. The display has four connections one is an old firewire plugin. Thanks

  • Need to open flex screen in a pdf by using AlivePDF

    Hi all, I'm trying to get a screenshot of a flex application screen in a PDF(Adobe Reader). When i click on submit button, it supposed to show the screen in pdf page. VBox have some datagrid. I'm getting the screenshot, but its exceeding the height a

  • Cannot RUN Illustrator CC in windows 8 (x64)

    I have install adobe illustrator before in my windows 8 (x64) it run well and no problem at all due to some reasons i uninstall all adobe softwares last 2 days and install back the illustrator too but currently it cannot run in my windows after the i

  • How to set default locale in JDK1.3.0 to US?

    Hi, everyone! I found the default locale in JDK 1.3.0 is not set to US when I converted our JDK from 1.2 to 1.3.0. So I have to change code by passing Locale.US. The output from below test code is: default=��100.00 US=$100.00 import java.util.Locale;

  • How to create tab in two lines

    Greetings, Created set of tabs. but they are displaying in a single line e.g Orientation Sales Day. it is apperaing in a single line and i want to display in two lines like "Orientation Sales Day" How i will achive this target ? Guide pls