PHP works, but CodeIgniter doesn't?

Community,
I've followed both the wiki regarding mysql installation, LAMP installation etc. Added http group and user, configured apache and php. When I run a test file with phpinfo() inside, everything works. But when I try to run my previous codeigniter project, i only get a blank screen in return and then this is what I peek into the logs:
ERROR_LOG
[Thu Jan 27 12:12:13 2011] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Thu Jan 27 12:12:13 2011] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Thu Jan 27 12:12:13 2011] [notice] Digest: generating secret for digest authentication ...
[Thu Jan 27 12:12:13 2011] [notice] Digest: done
[Thu Jan 27 12:12:14 2011] [notice] Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0c DAV/2 PHP/5.3.5 with Suhosin-Patch configured -- resuming normal operations
ACCESS_LOG
127.0.0.1 - - [27/Jan/2011:12:14:59 +0100] "GET / HTTP/1.1" 200 1645
127.0.0.1 - - [27/Jan/2011:12:14:59 +0100] "GET /icons/blank.gif HTTP/1.1" 304 -
127.0.0.1 - - [27/Jan/2011:12:14:59 +0100] "GET /icons/folder.gif HTTP/1.1" 304 -
127.0.0.1 - - [27/Jan/2011:12:14:59 +0100] "GET /icons/unknown.gif HTTP/1.1" 304 -
127.0.0.1 - - [27/Jan/2011:12:15:00 +0100] "GET /aikido/ HTTP/1.1" 200 -
127.0.0.1 - - [27/Jan/2011:12:15:02 +0100] "GET /pryzmat/ HTTP/1.1" 200 -
httpd.conf
[root@p1ohost conf]# cat 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.2> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/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 "/var/log/httpd/foo_log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd//var/log/httpd/foo_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 point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
ServerRoot "/etc/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_default_module modules/mod_authn_default.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 authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule cache_module modules/mod_cache.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule dbd_module modules/mod_dbd.so
LoadModule dumpio_module modules/mod_dumpio.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule log_forensic_module modules/mod_log_forensic.so
LoadModule logio_module modules/mod_logio.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 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_scgi_module modules/mod_proxy_scgi.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule mime_module modules/mod_mime.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 cgi_module modules/mod_cgi.so
LoadModule cgid_module modules/mod_cgid.so
LoadModule dav_fs_module modules/mod_dav_fs.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
LoadModule php5_module modules/libphp5.so
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_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>
</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
# 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"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks Includes
AllowOverride None
Order deny,allow
Deny from all
</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.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/srv/http">
# 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.2/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks Includes
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride All
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
# 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 /var/run/httpd/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
Order allow,deny
Allow from all
</Directory>
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
<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
# 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
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is 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.
#EnableMMAP off
#EnableSendfile off
# 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
# 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.
Include conf/extra/php5_module.conf
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Miscellaneous
[piotro@p1ohost ~]$ httpd -v
Server version: Apache/2.2.17 (Unix)
Server built: Oct 21 2010 09:11:14
[piotro@p1ohost ~]$ php -v
PHP 5.3.5 with Suhosin-Patch (cli) (built: Jan 6 2011 07:17:24)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
[piotro@p1ohost ~]$ mysql --version
mysql Ver 14.14 Distrib 5.1.54, for unknown-linux-gnu (x86_64) using readline 6.1
I'm also using CodeIgniter's htacces file:
CI .htaccess
[piotro@p1ohost ~]$ cat /srv/http/pryzmat/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /aikido/
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
After several hours trying to get my LAMP to work, I'm about to throw my brand new Asus M4A88T-I Deluxe out the window, with that cute quad core processor . Fare well, black box!
...But I thought about a little help from my friends. Any logs I've forgotten about will be supplied, if needed.
Cheers
Update - I've found out that there's nothing wrong with the server. It's something wrong with CI, thus this would make a CI-specific topic. Please delete the topic.
Update 2 and solved - A fresh installation of PHP has the mysql module commented out. Uncomment it in php.ini - and it works Cheers!
Last edited by piotroxp (2011-01-27 14:35:30)

Hi chrispl:
Karsten sent you in the right direction with his post. But, perhaps this will help you as well....
Using MPEG camera clips - like from the Sony Cybershot
http://www.danslagle.com/mac/iMovie/tips_tricks/6018.shtml
Sue

Similar Messages

  • What HDMI cable do I need for my MacBook (2009) to my SONY HDTV? I thought the HDMI cable from my Apple TV would work, but it doesn't.

    What HDMI cable do I need for my MacBook (2009) to my SONY HDTV? I thought the HDMI cable from my Apple TV would work, but it doesn't.

    The model 7,1 is actually the Mid 2010 MacBook and is the only MacBook with a Mini DisplayPort that sends audio along with the video, Here's some Mini DisplayPort to HDMI with audio adapters from Amazon.
    http://www.amazon.com/s/ref=nb_sb_ss_i_3_35?url=search-alias%3Daps&field-keyword s=mini+displayport+to+hdmi+with+audio+for+macbook+pro&sprefix=mini+displayport+t o+hdmi+with+audio%2Caps%2C252

  • Handling events in subvis - think this should work but it doesn't.

    In part of a large project I need to handle key down events, but elsewhere I need to handle them differently and want to be able to dynamically register and unregister them in each location. I also want to be able to put one of the event handlers in a subvi. To quote the Help system, "Dynamically Registering Events: With dynamic registration, you can handle events in a subVI rather than only in the VI where the events are generated."
    ViThatHandlesEvents.vi handles key down events. It uses dynamic event registration to demonstrate that it works (though in this simple example it isn't necessary).
    ViContainingSubviThatHandlesEvents registers key down events and passes this to KeyDnEventHndlrSubVI. I thought it would work but it doesn't.
    Attachments:
    KeyDnEventHndlrSubVI.vi ‏14 KB
    ViThatHandlesEvent.vi ‏22 KB
    ViContainingSubviThatHandlesEvent.vi ‏18 KB

    cebailey wrote:
    Here's a version with Panel > OwningVI > Key Down selected in the nodes that register events. It seems to do what I want. It acts on keystrokes that occur when the cursor isn't even over the parent's window, which is good in my situation. I made these choices by experimenting - is this a good approach, if I want to act on all the keystrokes that occur when the parent VI has focus?
    As you noted, this will have the event structure respond to keypresses whenever the parent VI is active. You can simplify the subVI by simply wiring the "VI Refnum" terminal directly to the Register for Events node. Getting the Panel, and then the Owning VI simply gets you back to where you started.
    That's a valid way of doing it, and I'm assuming that this is intended to be a test case. As you noted you have a large project, so I don't know what your overall architecture is, or how you intend to use this technique, so I can't really say whether it's a "good" approach. It's an approach.
    Say, I should have said this before, but you have to be pretty good to answer the question somebody should be asking, especially in brief forum postings.
    Thanks for the compliment. It's just a matter of seeing a lot of code and a lot of questions. I'm only a teenage pup compared to the real veterans on this board.

  • Purchased used 4th g it has a lot of glitches sound is not working at all, shutting it off it automaticlly turns back on in 1 min, camera works but camcorder doesn't, all game apps work fine, did freeze when on app store but reset and it seemed to work.

    my ipod touch 4th g is running ios 6.0.1 but is very glitchy.  there is no sound and if I plug in earphones it freezes up.  camera does work but freezes when i try to use Camcorder.  App store was acting up but after reseting it multiple times it is working again.  When I turn it off with the slidder it reboots after one minute.  It is also hard to put into dfu mode and take back out holding consecutive buttons doesn't work....Was stuck in recovery mode for quite awhile till I used a program to kick it out.  I did find youtube vidio that showed how to restore audio by deleating a file but of course this takes a little work and don't know if it would work with this ios. Was just wondering what I can try now.  Would realy like sound.  not so worried about camcorder.  Did check settings and no apps are blocked.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    iOS: How to back up your data and set up as a new device
    - Make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Airport Express works, but MacBook doesn't when connected directly to Modem

    I have an interesting problem. I have Verizon DSL. Airport Express works, but Linksys and Netgear wifi routers don't work. Further more, if I disconnect the wifi router and directly connect a MacBook or a Windows notebook they don't work. These devices work if I enter a static IP address though. It is DHCP that doesn't work.
    I have been using Verizon DSL for several years, and most recently I was using a Netgear wifi router. A few days ago it lost internet connection. Thinking that the Netgear broke, I bought a new Linksys WRT54GL to replace it. But it didn't work either. I happened to have an Airport Express lying around, so I connected that and surprisingly it worked! Then I wrote down the IP address shown by Airport Utility and typed that IP into Netgear as a static IP address and it worked too. If I remove all wifi equipment and connect a Windows PC or a MacBook directly to the DSL modem then neither works. (Note: my DSL modem doesn't use PPPoE it uses DHCP.)
    So it seems that something changed with Verizon's DHCP such that only Airport Express can work. Contacting Verizon support was useless. What is so magical about Airport Express? I can't use Airport Express permanently because I have 3 wired computers to connect also, and Airport Express have ethernet ports. Airport Extreme does, so I am wondering if I should get one of those. Will the magic of Airport Express work in Extreme also?
    Does anyone know what is going on? How is Airport Express work with Verizon DHCP when nothing else can?

    Hello petilon. Welcome to the Apple Discussions!
    Does anyone know what is going on? How is Airport Express work with Verizon DHCP when nothing else can?
    It sounds like Verizon is keying on the MAC address of the device connected to its modem ... so either they require that you register a MAC address with them or there is a problem with the modem in that it is retaining it even though you change the device connected.
    If you haven't already, be sure to perform a complete power recycle when changing out network equipment. The following should be done each time:
    o Power-down, the modem, router, and computer(s); wait at least 10-15 minutes. Order is not critical. If the modem has a backup battery, it should be removed and replaced to make sure that any stored configuration information is erased.
    o Power-up the modem; wait at least 10-15 minutes.
    o Power-up the router; wait at least 5-10 minutes.
    o Power-up the computer(s).

  • Action works, but droplet doesn't-CS4

    Create a droplet that will reduce quality of jpg image to reduce file size for e-mailing:
    I had created actions and droplets in Photoshop 7 & CS2 without problems.
    Using Photoshop CS4 11.0
    Folders:
    D:\Storage\convert
    Source Dir D:\Storage\convert\jpg2
    Output Dir D:\Storage\convert\raw2
    Create a set called custom in the actions palette, by clicking on the create set icon on the bottom.
    Select the set.
    Click on the create action icon on the bottom.
    In the next dialogue, enter the name of the action: reduce image to medium quality
    Set: custom. Use the rest of the defaults. Click record.
    File, Save as, use the default folder and file name. Click save
    In the image quality window, select baseline optimized, 5-medium., ok
    In the actions palette, click the stop recording icon. Your action is created!!
    Create the droplet:
    File, automation, create droplet
    Save droplet in: click choose
    Enter the path: D:\Storage\convert
    Filename: reduce image to medium quality.exe
    Play:
    Set: custom
    Action: the one you just created – reduce image to medium quality
    Check suppress color profile warnings
    Destination: select folder
    Click choose:
    Select the correct path to save files in – eg D:\Storage\convert\raw2
    Check Override Actions “Save As” commands
    File naming
    Document name + extension
    Starting serial #: 1 (default)
    Compatibility: Windows (default)
    Errors: Stop for errors
    Click OK
    Note: the source folder is not important, since it is not selected anywhere!! Put it in convert for convenience.
    To execute the droplet:
    Have the version of Photoshop running that you created the action for ie CS2.
    Copy the files to be acted on into the source folder eg (D:\Storage\convert\jpg2). Make sure it and the destination folder is empty before starting!!
    Drag the source folder on top of the droplet
    It will load one file at a time in Photoshop and do the required action. It will save one file at a time into the jpg images folder.
    My action works but my droplet doesn’t. Windows Vista SP2 says the droplet has stopped working. If I change the droplet to create a log file, It doesn’t create the log file either. I checked what’s in the patch for CS4 11.0.2, I don’t see anything that fixes this problem.

    Check the IP Address on a Computer :
    Click Start >> All Programs >> Accessories >> Command Prompt...A black box will appear(Command Prompt)...In the Command Prompt window type ipconfig and press 'Enter'...Look for Ethernet Adapter Local Area Connection IP Address , Subnet Mask and Default Gateway...
    IP Address should be 192.168.1.x, Subnet Mask : 255.255.255.0, Default Gateway : 192.168.1.1 (assuming your router is 192.168.1.1)...
    If you get the above mentioned IP Address, Subnet and Gateway Address then you should ping the Gateway, type ping 192.168.1.1 and press Enter...If it gives you request timed out then disable any firewalls, security softwares on the computer...
    If you get 4 replies then type ping 4.2.2.2 and press Enter, if you get request timed out, then you need to upgrade your router's firmware...If you get 4 replies then type ping yahoo.com and press Enter...If you get replies then you should get the Internet after adjusting the browser settings...
    If not do the browser settings : Open an IE, click Tools >> Internet Options, then delete all files, cookies, history, forms...Goto "Connections", make sure Never Dial a Connection is checked, click on LAN Settings and make sure all the options are unchecked...Once you are done click on O.k...Close the IE and re-open it...
    If yahoo times out then provide static DNS on your Wireless Connection...
    Click on the Start button >>> Settings >>> Control Panel >>>Network Connections- Right click on the icon for Local area connection and go to properties- On the 'General' tab select 'Internet Protocol TCP/IP' and click on the Properties button- Select 'Use the Following DNS Settings' Preferred DNS 4.2.2.2 Alternate DNS - 192.168.1.1>>Click on Ok button to Save and Click on "Close" on main Properties window...You should be able to go online...

  • Salaxy S4 doesn't recognize SIM in India. Voice calls work but data doesn't. (The SIM was working with data plan). Any idea?

    There is a message that says something like "Unrecognised SIM" but the Voice works. Data just doesn't work.

    You have to change the APN to match the carrier settings in that region.

  • OCI works but OCCI doesn´t work

    Hi,
    I am developing a component of a project to execute a pool of inserts to a DB.
    I installed the instant client 10g, headers and the occi for linux.
    When I execute the example of oci (cdemo81) it runs OK but when I execute the occi example occidml it crash and aborted.
    Do you have a suggestion why the OCCI doesn't´ work?
    Thanks,
    Mikel

    I try to execute the example 10g Release 1
    and I´ve got this error :(
    link.once ? Do you know what is happening?
    g++ -DHAVE_CONFIG_H -I. -I. -I.. -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -O2 -O0 -g3 -Wall -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common -c -o main.o `test -f 'main.cpp' || echo './'`main.cpp
    /bin/sh ../libtool silent mode=link --tag=CXX g++ -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -O2 -O0 -g3 -Wall -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common -o oci main.o
    main.o(.gnu.linkonce.t._ZN8occicollC1ESsSsSs+0x44): In function `occicoll::occicoll(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
    /usr/include/c++/3.2.3/bits/stl_algo.h:298: undefined reference to `oracle::occi::Environment::createEnvironment(oracle::occi::Environment::Mode, void*, void* (*)(void*, unsigned int), void* (*)(void*, void*, unsigned int), void (*)(void*, void*))'
    main.o(.gnu.linkonce.t._ZN8occicollD1Ev+0x2e): In function `occicoll::~occicoll()':
    /home/vientoloco/nuevatel/oci/kdevelop/oci/oci/main.cpp:100: undefined reference to `oracle::occi::Environment::terminateEnvironment(oracle::occi::Environment*)'
    main.o(.gnu.linkonce.t._ZN8occicoll9insertRowEv+0x24f): In function `occicoll::insertRow()':
    /home/vientoloco/nuevatel/oci/kdevelop/oci/oci/main.cpp:180: undefined reference to `oracle::occi::setVector(oracle::occi::Statement*, unsigned int, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
    main.o(.gnu.linkonce.t._ZN8occicoll14displayAllRowsEv+0x1b9): In function `__gnu_cxx::__normal_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > std::find<__gnu_cxx::__normal_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >(__gnu_cxx::__normal_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >, __gnu_cxx::__normal_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::random_access_iterator_tag)':
    /usr/include/c++/3.2.3/bits/stl_vector.h:916: undefined reference to `oracle::occi::getVector(oracle::occi::ResultSet*, unsigned int, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&)'
    main.o(.gnu.linkonce.t._ZN8occicoll9deleteRowEiSs+0x178):/usr/include/c++/3.2.3/bits/stl_vector.h:906: undefined reference to `oracle::occi::getVector(oracle::occi::ResultSet*, unsigned int, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&)'

  • New to this online version of photoshop and it's driving me nuts. i just want to double click and get working but it doesn't start

    how the hell do you use this program? i've signed up for the free trial, and last used photoshop 7 and cs 2, 3 but this is driving me crazy. i can't even open the program to use it. when i click the app icon that says it's installed nothing happens. i just go to the tutorials and overview. i just want to start working. what am i doing wrong?old

    There is no online version of Photoshop. Photoshop is downloaded and installed on your machine.  Follow the download instructions else you will be denied access  Adobe CC 2014 Direct Download Links – Creative Cloud 2014 Release | ProDesignTools

  • How to set a form field in pro so an 'adobe reader' user can insert a jpg (not a pdf) as an image. It used to work but now doesn't.

    I think this question has been asked a million times before but I'm hoping something has been resolved now! It did work for me and my client a few months ago (by using the 'event.target.buttonImportIcon();' script. I'm 99% certain it worked fine a few months ago, where the adobe reader user could select a jpg to insert...but now it only allows a pdf. Does anyone know if anything can be done? I know you may say LiveCycle but is there really nothing else?
    Thanks in advance.

    There's nothing to solve. If Reader (XI only) is used only PDF files can be selected. This is how it's supposed to work (although I agree it's silly and should be changed).

  • WRT160N, WEP works but WPA doesn't, please help!

    Hello all,
    I have a somewhat strange problem, that I have been trying to troubleshoot for some time, and still cannot figure out, and was looking to get some advice.
    Anyways, I have a WRT160N Linksys Router, that works fine wirelessly in non-secure and WEP security modes, but I cannot get it working correctly in either WPA or WPA2 security modes. 
    The setup of my computer in my apartment means at the moment I cannot use a wired connection to do the inital setup of my router...everything has to be done wirelessly.  So after a fresh factory-reset of my router, I go into the Windows 7 Network and Sharing Center, set up a new wireless connection, punch in the Router PIN, and initally setup my connection with no security.  It connects to the internet just fine.  From there, I go into my router settings vis'-a-vis' 192.168.1.1, and change the wireless security from disabled, to WEP, put in a password, and apply the settings.  I then alter my network profile within the Network and Sharing Center for my wireless network and make sure that its settings match my router's settings.  Once again, everything works great and internet performance is good.
     However, when I instead change my router's security to WPA or WPA2 using the above method, instead of WEP, I cannot get it working correctly.  I change my network profile to match my router's WPA/WPA2 setting, but I either get an ip error, or it won't let me connect to my network, giving me the following error message...."The settings saved on this computer for the network do not match the requirements of the network", even though I am certain the settings on my router match the settings I am inputing into the Windows Network and Sharing Center.  There was one time where I was actually able to get it work in WPA and I was browsing the internet just fine...and my network details in my connection list showed my network was WPA2-PSK, but after a few minutes, the connection disconnected, and I got the 'The settings saved do my match' error message again.
    Are there any special steps I have to take to delete old settings or some special configuration I have to do within Windows to get it to talk to my router correctly when I enable WPA or WPA2?  It seems odd to me that everything works fine in no security or WEP, but WPA/WPA2 seem flaky.
    Any information would be greatly, greatly appreciated.
    Thanks!

    First of all do not do any settings on your Router from the wireless computer...it can damage your router.
    Connect any computer to your Router and do the folowing settings...
    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    For Wireless Settings, please do the following : -
    Click on the Wireless tab
    - Here select manual configuration...Wireless Network mode should be mixed...
    - Provide a unique name in the Wireless Network Name (SSID) box in order to differentiate your network from your neighbours network...
    - Set the Radio Band to Standard-20MHz and change the Standard channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on Save Settings...
    Please make a note of Wireless Network Name (SSID) as this is the Network Identifier...
    For Wireless Security : -
    Click on the Sub tab under Wireless > Wireless Security...
    Change the Wireless security mode to WPA, For Passphrase input your desired WPA Key. For example , MySecretKey , This will serve as your network key whenever you connect to your wireless network. Do NOT give this key to anyone and remember the key
    Click on Advanced Wireless Settings
    Change the Beacon Interval to 75 >>Change the Fragmentation Threshold to 2304, Change the RTS Threshold to 2304 >>Click on "Save Settings"...
    NOTE** : Passphrase should be more that 8 characters and it is case sensitive ...
    Now see if you can locate your Wireless Network and attempt to connect...

  • CoreSelectOneChoice selected string value - it works but it doesn't

    Ok, I followed these steps:
    http://www.oracle.com/technology/products/jdev/tips/mills/listvalue/listbindingvalue.html
    However, I'm using JDeveloper 10.1.3.3.0.4157 and on step #2, insert inside bindings, there's no attribute bindings. I selected "attributeValues" instead, which I believe is the correct choice.
    My selectonechoice list has an updateable target view object and a read only view object for the dropdown list. So when I created my new attributeValue (see above) I selected the iterator for the updateable view object, and also selected the attribute that I want to keep track of.
    Here's the code in the page_definition file:
    <attributeValues IterBinding="CompaniesViewUPD1Iterator"
    id="companyCodeCurrentValue">
    <AttrNames>
    <Item Value="Companycode"/>
    </AttrNames>
    </attributeValues>
    Then, in faces-config.xml, I created the following managed property:
    <managed-property>
    <property-name>bindings</property-name>
    <value>#{bindings}</value>
    </managed-property>
    On the page's backing bean (the page that contains the SelectOneChoice UI control) I defined a valueChangeListener method as follows:
    public void companyCode_valueChangedListener(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    Application app = FacesContext.getCurrentInstance().getApplication();
    ValueBinding vb = app.createValueBinding("#{sessionMBean}");
    sessionMBean sessionBean = (sessionMBean)vb.getValue(FacesContext.getCurrentInstance());
    AttributeBinding bindings =
    (AttributeBinding) getBindings().getControlBinding("companyCodeCurrentValue");
    String companyCodeValue = (String)bindings.getInputValue();
    if (companyCodeValue == null) {
    sessionBean.setCompanyCode(new String("Company code value is null"));
    } else {
    sessionBean.setCompanyCode(companyCodeValue);
    } //end-if-else
    Basically, what I want to do is to take the new value from the backing bean (which has a request scope) and save it into another bean (I call it sessionMBean) that has, you guess it, a session scope. Because I will be manipulating strings in the sessionMBean I want to store the values there as strings.
    I have two records on a sample table, with two fields: a key field and a name field.
    What is happening is that the valueChangedListener is looking up the value of the companyCodeCurrentValue binding, but that value is the key of the second record when I select the first record in the CoreSelectOneChoice dropdown, and vice-versa (the key of the first record when I select the second record).
    Any tips and clues are welcome. I'll worry about the efficiency of my application code; right now my goal is just to reach my "Aha" moment.

    Hi,
    "but that value is the key of the second record when I select the first record in the CoreSelectOneChoice dropdown, and vice-versa (the key of the first record when I select the second record)"
    would indicate to me that the value change event is called before the model gets updated in the JSF lifecycle. In this case the "old" value - key 1 - is shown for select option 2. Which also means that key2 is retrieved for whatever you choose next.
    I solution to this could be to work with the select values index (get the new value from the valueChangeEvent (which is a index). You can then call
    int indx = ... get the index ....
    DCIteratorBinding dciter = getBindings().findIterator("theListIterator");
    oracle.jbo.Row Row rw = dciter.getRowAtIndx(indx);
    Object val = rw.getAttribute("theAttributeToStore");
    (you might check the syntax above because I don't have JDeveloper open to verify it)
    Frank

  • Movies & TV shows Preview works but Play doesn't

    anyone having this problem?
    latest SW installed on Apple TV
    trying to watch previously purchased movies or tv shows
    Clicking on Play -> goes to 'loading" screen -> and then returns back after 2 seconds goes back to the movie or episode starting screen
    when clicking on Preview -> goes on "loading" and then shows the Preview
    after a couple of restarts I completely wiped the Apple TV to its original factory settings with latest SW update
    Apple TV then worked for 1 evening
    2nd evening back to the same above problem
    Anyone with some wisdom here?
    thx J

    A number of people have reported similar issues recently, many appear to have found a discrepancy of some kind in their account settings and making changes to these settings or simply resetting them has resolved the matter.
    Check your account details are correct, check that you are using the correct details for Location, Region and Time Zone. You may want to change these settings and then change them back to see if that helps.
    Also check your payment details, make sure your details are exactly how they appear on your credit card statement, you might also try changing some of those details, saving them and changing them back again.
    You might also try logging out of and then back into your iTunes account (Settings > iTunes Store > Apple ID’s > Sign Out) and restarting your router. (Some have reported that after doing this, they need to check for rentals even though it may report that there aren’t any, after which rentals once again appear in the ‘movies’ feature)
    Rentals should appear under their own heading in the ‘Movies’ feature, you might also check at Settings > iTunes Store > Check For Rentals.
    At this point in time, I’m wondering if this could be related to (but not restricted to) the new feature that allows others to come into your home and use your Apple TV to download and play their content on your Apple TV without logging into their account on your Apple TV. The Terms of Use for iTunes Store content have always been to require you to only purchase and play the content from the store in the location where you live and to use a credit card registered in that location. Previously Apple seem to have been somewhat lenient on enforcing such restrictions, perhaps now they are not. However I don’t really have any evidence to support this suggestion, except that changes made to accounts in these areas do appear to be helping many.
    If you are successful in resolving your problem, perhaps you would let us know exactly which action resolved the problem for you. If you are having this problem to begin with, can you also tell us your location.

  • [SOLVED] ppp: pon seems to work, but ping doesn't

    Hi List,
    when trying to reinstall Archlinux from a CD, I get stuck in the very beginning of the process because I can't make the network connection work.
    The disk is already partitioned and formatted. I loaded the appropriate (de-latin1) keys, mounted root, boot and home partitions (/mnt/, /mnt/boot/ etc) and used swapon for the swap partition. I then copied from the backup of my old installation the /etc/ppp/peers/pppoe file, changed eth0  to enp0s7 (after doing an ifconfig), and set a symlink to this file called provider.
    Then calling pon on the commandline works as expected. However, if I ping www.google.com or so, I get the unknown host message. I believe the same setting worked for me with my former Archlinux install, and the internet connection works anyway - I'm using it for my labtop to write this message right now.
    Did I miss something? Is there some necessary config I forgot about?
    Here is the content of the pppoe file:
    plugin re-pppoe.so
    # network interface
    enp0s7
    # login name
    name "0123456789"
    usepeerdns
    persist
    defaultroute
    hide-password
    noauth
    Last edited by 4on6 (2013-12-07 18:06:48)

    brain0 wrote:
    Hm, a udev rule on the ISO is starting dhcpcd on ppp0, which it shouldn't. I don't know if this is your problem, but try
    systemctl mask [email protected]
    before launching pppd.
    I tried it, but it does not help.
    There are descriptions of how to configure pppoe, but I think I don't need(ed) to give all this specific information, all I had to do was adding a pppoe connection config file (/ppp/peers/pppoe shown above) with my phone number as user name - and the usepeerdns and noauth attributes made it unnecessary to give more info.
    From my (naive) point of view, these journal lines
    connected to ... via interface enp0s7
    Using interface ppp0
    Connect: ppp0 <--> enp0s7
    peer from calling number ... authorized
    seem to suggest that the connection config file cited above allows to establish a connection (or at least log in).
    But then
    LCP terminated by peer
    Timeout while waiting for PADO packets
    something I don't understand seems to go wrong.
    Or is the underlying problem that I forgot another config file or so? There is rp-pppoe.config too, and I changed ETH=eth0  to ETH=enp0s7, but to no avail. I could not change the user= ... settings in this file since I don't know what to put there for my provider (and if it is necessary at all).
    Or should I abort direct configuration of pppd and go for something like wvdial (which I don't know at all)?

  • Wifi works but Internet doesn't work on MacBook, works on other computers

    My Internet has never been a problem. two days ago it suddenly stopped working on my new mac book. I turned it off and restarted but the Internet (both safari and firefox) won't load. The Internet works fine on my roommates computers. Also at school the Internet is working normally. As well, the mac book says it's connected to our network but the pages just never load. Any help is appreciated.

    Hi JaschaW,
    Can you try to update me with more specific details. The only idea I can think of now, is for you to :
    1) Open System Preferences>Network.
    2) Click on Airport, go to TCP/IP.....check if there's any setting being set to Manual on the IP address part.
    OR you can try doing this....
    Shut down your mac.
    Switch it on back......now quickly press the Apple Key + the "S" key. Hold it there, until a black screen is prompted. It will prompt you to type a command, in order for you to proceed to boot normally. Do that....after that another prompt....type "exit" without the inverted comma.
    Try that....let me know if it works....
    Cheers
    Shean

Maybe you are looking for