PHP installed with Apache, php pages showing nothing [SOLVED]

I've followed a couple of guides to install a LAMP stack on my Arch install, and I seem to have done everything correctly (no errors anyway...), but I still can't see anything on my basic phpinfo page.
Viewing source shows nothing.
Is there anything commonly missed out I should be looking for, in order to get it showing properly?
If there's any more specific information I can give, please let me know. I'm new to these forums and realise I'm lacking detail, but any pointers would be greatly appreciated.
Thanks,
Adam
Last edited by tsdadam (2015-02-26 22:03:56)

Here's my httpd.conf, I've not moved those lines yet,
# 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 authnz_fcgi_module modules/mod_authnz_fcgi.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 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_prefork_module modules/mod_mpm_prefork.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 granted
</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"
<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.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
# 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
# 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>
LoadModule php5_module modules/libphp5.so
AddHandler php5-script php
Include conf/extra/php5_module.conf

Similar Messages

  • How do I enable flash and java on firefox23 as I have the latest versions installed yet the plugin page shows "disabled" with no option to enable

    I have updated to Firefox 23 and it disabled my Java and Flash plugins. I then updated these to Flash 11.8.800.94 and Java to Version 7 Update 25. Now these are showing up on the plug in page but are showing "disabled" with no option to enable. How do I enable them to view content on the web.

    Thanks Philipp but i have already done that and the content started working...
    However, when i closed and restarted the browser it returned back to the same settings...
    I dont think that should happen, but anyway thank you for the solution. At least I can use it by resetting the values if need be
    Appreciate your help

  • My tabs page shows nothing but the new search bar but that can't even be used either

    So I use the newtabs page all the time, infact everytime I open firefox but I have opened newtabs page this morning and none of my pages are there at all and I haven't click "Hide new tabs page". All that is on the newtabs page is that new searchbar but thats not working for searches either.

    Are there any errors in the Browser Console (Firefox/Tools > Web Developer) that could be related to this?
    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    *Download the full Firefox installer and save the file to the desktop<br>https://www.mozilla.org/en-US/firefox/all.html
    If possible uninstall your current Firefox version to cleanup the Windows registry and settings in security software.
    *Do NOT remove "personal data" when you uninstall your current Firefox version, because this will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure NOT to remove personal data when you uninstall Firefox as that will remove all Firefox profile folders and you lose your personal data.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • CPU Overheating problem on Windows 8.1 Pro (installed with BootCamp)

    There is a really important overheating problem on windows 8.1 (installed with bootcamp) even i do nothing Cpu is 50-60-70 Celcius degrees. This is really annoying problem. Most of users necessarily need windows OS for using third part programs that doesnt exist on OS X platform. I think this problem is important and has to be fixed as soon as possible.
    My brand new Mac:
    MacBook Pro (Retina, 15-inch, Mid 2014)
    2,5 GHz Intel Core i7
    16 GB 1600 MHz DDR3

    I have the same problem on macbook pro retina 15 late 2013 - top configuration

  • Hi I replaced my hard drive on macbook and I want to install mac osx10.5 with the CD that came with the macbook. When I run the CD after a while I get the page showing language options for 2 second then a gray screen appears and nothing happens

    Hi I replaced my hard drive on macbook and I want to install mac osx10.5 with the CD that came with the macbook. When I run the CD after a while I get the page showing language options for 2 second then a gray screen appears and nothing happens. I partitioned my hard drive and I tried installing Microsoft windows and that worked just fine.  But I do not understand why it wont install mac os x 10.5?????  PLEASE HELP ME.  Thanks  Hamid

    Try a new post in the 10.5 Installation forum.
    DALE

  • Need Urgent Help with Apache and PHP

    I have been struggling with apache and php for a week now and I finally broke down to post a message.
    I have apache 1.3 running on my mac mini g4 with 10.4.9 and I installed sql. I went to the entropy website and downloaded php5 to install without knowing I already had php4 on the machine. I installed 5 but could not get it to work. I then went back to httpd.conf and tried to install php4 by uncommenting out the loadmodule and addmodule lines. I restarted apache but php still did not work. I tested the phpinfo.php script but all I got was the script in Safari and not the actual page. At the moment, I have php4 and php5 on my machine but can't get either one to work. I am sure there is an easy fix but I don't know it. Please help.

    The problem is not terribly complicated, but Apache will not start with the entropy file in the folder
    /etc/httpd/users/
    Let me experiment on you. Rename the entropy file and then try to start Apache. To do this, open Terminal and paste this command:
    <pre>sudo mv /etc/httpd/users/+entropy.conf /etc/httpd/users/+entropy<pre>
    Now check the Apache configuration:
    <pre>apachectl configtest<pre>
    If it says "Syntax OK", start Apache:
    <pre>sudo apachectl start<pre>
    Since we only disabled the entropy file, you should be able to enable PHP5 with some more advanced configuring.

  • I Need PHP 5.3 no longer avail in a VC6 compatable with Apache 2.2.15

    I appologize if this question is already answered somewhere (I did search a bit)..
    1. I have written a significant amount of my site using functions only available in PHP 5.3+ (ie not in PHP5.2)
    ( see php.net /manual/en/migration53.new-features.php )
    2. PHP (in thier infinite wisdom) have decicided that not only is there no longer a VC6 (ie Apache 2.2.15 compatable) build of php 5.3.6 but they removed the 5.3.3 build and are offering only 5.2.17 in a VC6 build suitable for use with the version of Apache built into FMS4.
    (see windows.php.net/download/ and note the lines:
    Do NOT use VC9 version with apache.org binaries.
    and
    VC9 versions of Apache can be fetched at Apache Lounge. We use their binaries to build the Apache SAPIs.)
    3. The FMS4 documentation says:
    (see help.adobe.com/en_US/flashmediaserver/configadmin/WSE2A5A7B9-E118-496f-92F9-E295038DB7DB. html#WS02f7d8d4857b1677-469e53bb12984254411-8000
    The recommended approach to upgrading the Apache web server is to install or build the Apache server in a directory that is separate from the existing server. Then copy the contents of newly-installed directories to the existing server.
    In most cases, you do not replace the existing Apache configuration files with the newer versions of these files. This is because the Apache web server installation for Flash Media Server is pre-configured with specific modules and settings.)
    My Question is:
    Does this even work? I sounds like a REALY BAD idea to me to instal a version of Apache built to use the Visual C 9 runtime and then kludge in an httpd.conf file that starts loading modules that were built to interact with a version that uses the Visual C 6 library. Has anyone actually done this successfully???
    I don't blame the FMS developers here (well except for the really bad idea of making Apache "part" of the FMS package in the first place) but you a shipping with a version of Apache that is incompatable with PHP! (OK, the _latest versions_ of PHP.. but that still makes this _your_ problem.. and a big problem at that if you ask me).
    Suggestions?

    # This section includes everything in the Apache 2.2.19 httpd.conf file's module load section.
    # The modules named in the FMS version of the httpd.conf file are _almost_ a subset of the 2.2.19 collection but
    # many statements are "live" only in the FMS version.
    # The numbers in parentheses are line numbers in the indicated httpd.conf file
    # 2.2.19(60) LoadModule actions_module modules/mod_actions.so
    # FMS(136)
    LoadModule actions_module modules/mod_actions.so
    # 2.2.19(61) LoadModule alias_module modules/mod_alias.so
    # FMS(137)
    LoadModule alias_module modules/mod_alias.so
    # 2.2.19(62) LoadModule asis_module modules/mod_asis.so
    # FMS(138)
    LoadModule asis_module modules/mod_asis.so
    # 2.2.19(63) LoadModule auth_basic_module modules/mod_auth_basic.so
    # FMS(139)
    LoadModule auth_basic_module modules/mod_auth_basic.so
    # 2.2.19(64) #LoadModule auth_digest_module modules/mod_auth_digest.so
    # FMS(140)
    LoadModule auth_digest_module modules/mod_auth_digest.so
    # 2.2.19(65) #LoadModule authn_alias_module modules/mod_authn_alias.so
    # 2.2.19(66) #LoadModule authn_anon_module modules/mod_authn_anon.so
    # FMS(141)
    LoadModule authn_anon_module modules/mod_authn_anon.so
    # 2.2.19(67) #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    # 2.2.19(68) #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    # FMS(142) #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    # 2.2.19(69) LoadModule authn_default_module modules/mod_authn_default.so
    # FMS(143)
    LoadModule authn_default_module modules/mod_authn_default.so
    # 2.2.19(70) LoadModule authn_file_module modules/mod_authn_file.so
    # FMS(144)
    LoadModule authn_file_module modules/mod_authn_file.so
    # 2.2.19(71) #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    # 2.2.19(72) #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    # FMS(145) #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    # 2.2.19(73) LoadModule authz_default_module modules/mod_authz_default.so
    # FMS(146)
    LoadModule authz_default_module modules/mod_authz_default.so
    # 2.2.19(74) LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    # FMS(147)
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    # 2.2.19(75) LoadModule authz_host_module modules/mod_authz_host.so
    # FMS(148)
    LoadModule authz_host_module modules/mod_authz_host.so
    # 2.2.19(76) #LoadModule authz_owner_module modules/mod_authz_owner.so
    # 2.2.19(77) LoadModule authz_user_module modules/mod_authz_user.so
    # FMS(149)
    LoadModule authz_user_module modules/mod_authz_user.so
    # 2.2.19(78) LoadModule autoindex_module modules/mod_autoindex.so
    # FMS(150)
    LoadModule autoindex_module modules/mod_autoindex.so
    # 2.2.19(79) #LoadModule cache_module modules/mod_cache.so
    # 2.2.19(80) #LoadModule cern_meta_module modules/mod_cern_meta.so
    # FMS(151) #LoadModule cern_meta_module modules/mod_cern_meta.so
    # 2.2.19(81) LoadModule cgi_module modules/mod_cgi.so
    # FMS(152..154)
    <IfModule mpm_winnt_module>
    LoadModule cgi_module modules/mod_cgi.so
    </IfModule>
    # FMS(155..157)
    <IfModule worker_module>
    LoadModule cgid_module modules/mod_cgid.so
    </IfModule>
    # 2.2.19(82) #LoadModule charset_lite_module modules/mod_charset_lite.so
    # 2.2.19(83) #LoadModule dav_module modules/mod_dav.so
    # FMS(158)
    LoadModule dav_module modules/mod_dav.so
    # 2.2.19(84) #LoadModule dav_fs_module modules/mod_dav_fs.so
    # FMS(159)
    LoadModule dav_fs_module modules/mod_dav_fs.so
    # 2.2.19(85) #LoadModule dav_lock_module modules/mod_dav_lock.so
    # 2.2.19(86) #LoadModule dbd_module modules/mod_dbd.so
    # 2.2.19(87) #LoadModule deflate_module modules/mod_deflate.so
    # FMS(160)
    LoadModule deflate_module modules/mod_deflate.so
    # 2.2.19(88) LoadModule dir_module modules/mod_dir.so
    # FMS(161)
    LoadModule dir_module modules/mod_dir.so
    # 2.2.19(89) #LoadModule disk_cache_module modules/mod_disk_cache.so
    # 2.2.19(90) #LoadModule dumpio_module modules/mod_dumpio.so
    # 2.2.19(91) LoadModule env_module modules/mod_env.so
    # FMS(162)
    LoadModule env_module modules/mod_env.so
    # 2.2.19(92) #LoadModule expires_module modules/mod_expires.so
    # FMS(163) #LoadModule expires_module modules/mod_expires.so
    # 2.2.19(93) #LoadModule ext_filter_module modules/mod_ext_filter.so
    # 2.2.19(94) #LoadModule file_cache_module modules/mod_file_cache.so
    # FMS(164) #LoadModule file_cache_module modules/mod_file_cache.so
    # 2.2.19(95) #LoadModule filter_module modules/mod_filter.so
    # 2.2.19(96) #LoadModule headers_module modules/mod_headers.so
    # FMS(165) #LoadModule headers_module modules/mod_headers.so
    # 2.2.19(97) #LoadModule ident_module modules/mod_ident.so
    # 2.2.19(98) #LoadModule imagemap_module modules/mod_imagemap.so
    # FMS(166)
    LoadModule imagemap_module modules/mod_imagemap.so
    # 2.2.19(99) LoadModule include_module modules/mod_include.so
    # FMS(167)
    LoadModule include_module modules/mod_include.so
    # 2.2.19(100) #LoadModule info_module modules/mod_info.so
    # FMS(168)
    LoadModule info_module modules/mod_info.so
    # 2.2.19(101) LoadModule isapi_module modules/mod_isapi.so
    # FMS(169..171)
    <IfModule mpm_winnt_module>
    LoadModule isapi_module modules/mod_isapi.so
    </IfModule>
    # 2.2.19(102) #LoadModule ldap_module modules/mod_ldap.so
    # 2.2.19(103) #LoadModule logio_module modules/mod_logio.so
    # 2.2.19(104) LoadModule log_config_module modules/mod_log_config.so
    # FMS(172)
    LoadModule log_config_module modules/mod_log_config.so
    # 2.2.19(105) #LoadModule log_forensic_module modules/mod_log_forensic.so
    # 2.2.19(106) #LoadModule mem_cache_module modules/mod_mem_cache.so
    # 2.2.19(107) LoadModule mime_module modules/mod_mime.so
    # FMS(173)
    LoadModule mime_module modules/mod_mime.so
    # 2.2.19(108) #LoadModule mime_magic_module modules/mod_mime_magic.so
    # FMS(174)
    LoadModule mime_magic_module modules/mod_mime_magic.so
    # 2.2.19(109) LoadModule negotiation_module modules/mod_negotiation.so
    # FMS(181)
    LoadModule negotiation_module modules/mod_negotiation.so
    # 2.2.19(110) #LoadModule proxy_module modules/mod_proxy.so
    # FMS(175) #LoadModule proxy_module modules/mod_proxy.so
    # 2.2.19(111) #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    # FMS(176) #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    # 2.2.19(112) #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    # FMS(177) #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    # 2.2.19(113) #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    # FMS(178) #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    # 2.2.19(114) #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    # FMS(180) #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    # 2.2.19(115) #LoadModule proxy_http_module modules/mod_proxy_http.so
    # FMS(179) #LoadModule proxy_http_module modules/mod_proxy_http.so
    # 2.2.19(116) #LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    # 2.2.19(117) #LoadModule reqtimeout_module modules/mod_reqtimeout.so
    # 2.2.19(118) #LoadModule rewrite_module modules/mod_rewrite.so
    # FMS(182)
    LoadModule rewrite_module modules/mod_rewrite.so
    # 2.2.19(119) LoadModule setenvif_module modules/mod_setenvif.so
    # FMS(183)
    LoadModule setenvif_module modules/mod_setenvif.so
    # 2.2.19(120) #LoadModule speling_module modules/mod_speling.so
    # FMS(184) #LoadModule speling_module modules/mod_speling.so
    # 2.2.19(121) #LoadModule ssl_module modules/mod_ssl.so
    # FMS(190) #LoadModule ssl_module modules/mod_ssl.so
    # 2.2.19(122) #LoadModule status_module modules/mod_status.so
    # FMS(185)
    LoadModule status_module modules/mod_status.so
    # 2.2.19(123) #LoadModule substitute_module modules/mod_substitute.so
    # 2.2.19(124) #LoadModule unique_id_module modules/mod_unique_id.so
    # FMS(186)
    LoadModule unique_id_module modules/mod_unique_id.so
    # 2.2.19(125) #LoadModule userdir_module modules/mod_userdir.so
    # FMS(187)
    LoadModule userdir_module modules/mod_userdir.so
    # 2.2.19(126) #LoadModule usertrack_module modules/mod_usertrack.so
    # FMS(188) #LoadModule usertrack_module modules/mod_usertrack.so
    # 2.2.19(127) #LoadModule version_module modules/mod_version.so
    # 2.2.19(128) #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    # FMS(189) #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    # FMS(191)
    LoadModule f4fhttp_module modules/mod_f4fhttp.so
    # This section includes items that appear in _BOTH_ in the FMS version of httpd.conf and the 2.2.19 version
    # The numbers in parentheses are line numbers in the indicated httpd.conf file.
    # In some case the lines appear identically in both versions.
    # In some case the changes are not simple alternatives (see mpm_winnt_module for example)
    # 2.2.19(46)
    # Listen 80
    # FMS(12)
    Listen 8134
    # 2.2.19(130..144)
    # <IfModule !mpm_netware_module>
    # <IfModule !mpm_winnt_module>
    # User daemon
    # Group daemon
    # </IfModule>
    # </IfModule>
    # FMS(123..126)
    <IfModule mpm_winnt_module>
    ThreadsPerChild 250
    MaxRequestsPerChild 0
    </IfModule>
    # 2.2.19(179)
    # DocumentRoot "c:/Apache2/htdocs"
    # FMS(39)
    DocumentRoot "../webroot"
    # 2.2.19(189..194)
    # <Directory />
    #     Options FollowSymLinks
    #     AllowOverride None
    #     Order deny,allow
    #     Deny from all
    # </Directory>
    # FMS(43..50)
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
    Satisfy all
    </Directory>
    # 2.2.19(206..234)
    # <Directory "c:/Apache2/htdocs">
    #     Options Indexes FollowSymLinks
    #     AllowOverride None
    #     Order allow,deny
    #     Allow from all
    # </Directory>
    # FMS(51..56)
    <Directory "../webroot">
    Options -Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    # 2.2.19(240.242)
    # <IfModule dir_module>
    #     DirectoryIndex index.html
    # </IfModule>
    # FMS(41)
    DirectoryIndex index.html index.html.var index.php index.php3 index.php4 index.php5 index.py index.pl index.rb
    # 2.2.19(248..252)
    # <FilesMatch "^\.ht">
    #     Order allow,deny
    #     Deny from all
    #     Satisfy All
    # </FilesMatch>
    # FMS(118..121)
    <FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    </FilesMatch>
    # 2.2.19(261)
    # ErrorLog "logs/error.log"
    # FMS(34)
    ErrorLog logs/error_log
    # 2.2.19(268)
    # LogLevel warn
    # FMS(35)
    LogLevel info
    # 2.2.19(270..297)
    # <IfModule log_config_module>
    #     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>
    #       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    #     </IfModule>
    #     CustomLog "logs/access.log" common
    # </IfModule>
    # FMS(36..37)
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    CustomLog logs/access_log combined
    # 2.2.19(299..328)
    # <IfModule alias_module>
    #     ScriptAlias /cgi-bin/ "c:/Apache2/cgi-bin/"
    # </IfModule>
    # FMS(77)
    ScriptAlias /cgi-bin/ "cgi-bin/"
    # 2.2.19(342..347)
    # <Directory "c:/Apache2/cgi-bin">
    #     AllowOverride None
    #     Options None
    #     Order allow,deny
    #     Allow from all
    # </Directory>
    # FMS(78..83)
    <Directory "cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    # 2.2.19(358)
    # DefaultType text/plain
    # FMS(196)
    DefaultType text/plain
    # 2.2.19(360..406)
    # <IfModule mime_module>
    #     TypesConfig conf/mime.types
    #     #AddEncoding x-compress .Z
    #     #AddEncoding x-gzip .gz .tgz
    #     AddType application/x-compress .Z
    #     AddType application/x-gzip .gz .tgz
    #     #AddHandler cgi-script .cgi
    #     #AddHandler type-map var
    #     #AddType text/html .shtml
    #     #AddOutputFilter INCLUDES .shtml
    # </IfModule>
    # FMS(194)
    TypesConfig conf/mime.types
    # FMS(200..201)
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # FMS(204..206)
    AddHandler type-map var
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
    # 2.2.19(413)
    #MIMEMagicFile conf/magic
    # FMS(195)
    MIMEMagicFile conf/magic
    # 2.2.19(474..484)
    # <IfModule ssl_module>
    # SSLRandomSeed startup builtin
    # SSLRandomSeed connect builtin
    # </IfModule>
    # FMS(208.211)
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>

  • Is it possible to work with PHP pages in Oracle ERP R12 and how to set up ?

    Hi,
    Is it possible to work with PHP pages in Oracle ERP R12 and how to set up ?
    Regards
    Nandhakumar P

    Hi Nandhakumar,
    To be able to access any Oracle database using PHP you require the following:
    A server with Apache 2+  (Unix, windows etc)
    PHP enabled using OCI8
    tnsnames.ora
    Oracle instant client and associated libraries
    This gives you direct access into oracle database. As for E-Business, you will compromise the security and safty of of R12 by going in through php. Oracle is not likely to support it either.
    I have got a apache/php/Oracle XE working on a test environment and Ithe performance is not a big issue. If you must I would hughly recommend Oracle Linux for quality and security.

  • How do I compensate for only one ADDT ' tNG_config.inc.php file with many Registration pages to build?

    My dynamic site has a lot of different languages funneled into one website, using various cookies, url params, php includes, etc. all to obtain similar info in different languages. Thank you David Powers.
    It is working really well and now I’ve come to the Registration section. Okay, so registration isn’t all that hard; I could do most of it with the standard Dreamweaver set of tools. Alas, I really like much of what ADDT has to offer with welcome email messages and activation and such.
    Here’s the setup: Obviously, with many different language people, I have many different databases for them. I did that becuase we’re expecting a big audience and I really don’t want to have all those different language names in the same table. Furthermore, these tables, whereby the students will login, will also contain a lot of information about their work so again, don’t want to have one massive table. I’ve divvied them up into tables by language and I’m using those tables to keep track of them and their work.
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings.
    Here’s my situation: I notice that when I’m done with the configuring of one of the registration pages, I’m asked if I want to upload the tNG_config.inc.php page and that it has changed since the last upload. I saved a copy of the _config.inc.php and did a new registration form with the same info and when done, I compared the two _config.inc.php files. As one would guess, there is a small difference in the Connection string to the databases  $tNG_login_config["connexction"] = "connString_Ital_db".
    My problem is that I have 13 of these registration pages to do but ADDT only has the one tNG_config.inc.php. That’ll work great for the one with which it is associated, but the others will obviously break. I’ve looked through the code in the Registration pages, to find the ADDT link to the tNG_config.inc.php file hoping to rename it Italian, Spanish, etc, but the name of the file does not appear in the Registration page.  I realize that ADDT Control panel is designed for use on one site, and can then be used on others, with the changes etc. But my site seems a little unique since so many sites are actually in one.
    Has anyone whipped this problem before? I just don’t understand why there is no link in the head code of the Registration page to let me change it and to create more config files with different names. Thanks for you help!
    [Moved by moderator to appropriate forum]

    Hi Brian,
    I just tried to check all of ADDT´s "includes" files for any internal references (read: "require" or "require_once" statements) to the file "tNG_config.inc.php". So far I can only see this file referenced in the file "tNG.inc.php" (within the "$KT_tNG_uploadFileList1" array).
    So what could this mean ? Maybe you´ll have to make copies of the the original "tNG.inc.php" as well and save them as, say, "tNG.inc_ital.php" file plus make sure that these copies internally point to a different "tNG_config_ital.inc.php" file -- because it´s always the first mentioned file which gets referenced from e.g. an ADDT login page (see the "Load the tNG classes" - part)
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings
    The Control Panel will always update the main "tNG_config.inc.php" file, so any further modifications will have to become manually applied to the custom files you´re creating.
    Cheers,
    Günter

  • After turning on iMAC the sign in page comes up and accept my password. It then goes to a page with a background pictures but nothing else. If I leave it there it eventually fades and shows the clock.  How to I get it to open from there?

    After turning on iMAC the sign in page comes up and accept my password. It then goes to a page with a background pictures but nothing else. If I leave it there it eventually fades and shows the clock.  How to I get it to open from there?

    Hello,
    See if it'll Safe Boot from the HD, (holding Shift key down at bootup).

  • I downloaded FF 4 and now 5 and with neither my screen looks nothing like it shows on the FF page. For instance, I do not have the orange FF tab in the upper left corner, I have no option of "pin as app" nor do I have Panorama. Can someone please help me?

    I downloaded FF 4 and now 5 and with neither my screen looks nothing like it shows on the FF page. For instance, I do not have the orange FF tab in the upper left corner, I have no option of "pin as app" nor do I have Panorama. Can someone please help me?

    To get the orange FF tab, go to View > Toolbars > Menu Bar. This should uncheck the menu bar and give you the orange button.
    Panorama is a box made of 4 grey rectangles that should be on the far right, if it isn't after you enable the orange FF tab, right click on anywhere on a tool bar that doesn't have anything on it, and you should get a menu with a list of your tool bars that you can check and uncheck. go down to customize at the very bottom and it will open a window with all your buttons. Find the panorama/tab groups button and drag it onto the tool bar of your choice.
    to pin a tab as an app, right click on it; it's an option in the right-click menu.

  • "best practice" documentation for installing/upgrading Apache 2, php, mysql

    does any documentation exist for the recommendation procedures for installing/upgrading Apache 2, mysql, php ???
    thanks

    Yes me also
    MacBook Pro 15", iMac 24", G4 Dual 867   Mac OS X (10.4.9)  

  • Combining PHP Pages With HTML Pages.

    Hi,
    I started building my site in Dreamweaver CS4 using HTML pages, not knowing until now that any pages with interactivity need to be php.
    If my site has seven pages, can four of them be HTML, and the rest PHP? If so, are there any special considerations I have to take into account? Is there anything special that would have to be done at any time during the process of creating the PHP pages, uploading to a web host, etc?
    If not, is there a way to convert the HTML pages directly to PHP, or do I have to basically start from scratch?
    Thank you.

    Better to be consistent.  You CAN have php,  htm, html and shtml pages in your site, but this could cause a server conflict if you accidentally upload more than one index page to the same folder.
    Simply rename your ***.htm pages to ***.php (F2).
    Remove ***.htm pages from testing and remote servers.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Using Incontext editing with PHP pages

    Hi,
    Has anyone established whether you can use incontext editing
    with php pages. My site works perfectly except for the pages i have
    created in php. The reason i have used php is that they are secure
    that only certain users can access.
    The error message that comes up is: "No input file specified.
    " But the page is up.
    Thanks in advance for any help anyone can provide.
    Chris

    Hello Chris,
    Yes, it is possible to edit PHP pages with InContext Editing,
    however InContext Editing should not be used to edit dynamic
    content in PHP pages. If you edit dynamic content that is loaded
    into an InContext Editing editable region, it will be overwritten
    as static content.
    In regards to the problem you're experiencing, it appears to
    be an issue with the HEAD http request. InContext Editing is using
    HEAD requests to check the existence of the draft and published
    versions of the current page (in your case, InContext Editing is
    making a request for products_bedroom_draft.php). If those calls do
    not work as expected (the HEAD should return status code 200/304 if
    the checked page exists, 404 otherwise) then you will experience
    this behavior.
    A HEAD http request for products_bedroom_draft.php is
    returning a 502 Bad Gateway status code which is not what InContext
    Editing expects.
    Please contact your web hosting provider for assistance with
    this server issue. This will likely require changes in web server
    configuration.
    http://www.adobe.com/go/kb406749
    Please let me know if you need further assistance.
    Best regards,
    Corey

  • Flash Button not showing on php page

    Hi Folks,
    Hopefully this is a simple problem. I've added a Flash Button
    via the Insert Media -> Flash Button in DW8. Unfortunately the
    button does not show up when the php page is loaded up to the
    server. And yes, I did make sure to upload the button file. When I
    look at the source code from the server, the flash part looks a
    little different compared to how it normally looks on a .htm page.
    Here's what the 'view source' in the browser shows:

    David,
    I don't know what that file is. Can you elaborate?
    Thanks,
    Chris
    quote:
    Originally posted by:
    Newsgroup User
    chriscatalano wrote:
    > Hopefully this is a simple problem. I've added a Flash
    Button via the Insert
    > Media -> Flash Button in DW8. Unfortunately the
    button does not show up when
    > the php page is loaded up to the server. And yes, I did
    make sure to upload
    > the button file.
    But did you upload this file?
    Scripts/AC_RunActiveContent.js
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

Maybe you are looking for

  • Decode using bind variable in SQL

    I have decode statement in my SQL query which is used to define the VO object. I want to select a column depending on the value entered for the bind variable :1. dont know how to implement this in OAF - any pointers will be appreciated. decode(:1,'XO

  • How to avoid waiting forever when Updating a locked row ?

    Hi all, We have front-end application (ADF BC) on Oracle 10g database. From the adf we call stored procedure that execute the dml below : UPDATE DOC_NUMBER SET doc_nbr = doc_nbr + 1 WHERE REGISTER = pRegsCode AND doc_code = pDocCode AND loc_code = pL

  • Oracle bpel 11g email polling ?

    could oracle bpel 11g support email polling(checking inbox of an email account for a defined period time) ? try to google and find some tutorial to enable email polling in bpel 10g. but try to implement it and can't find folder BPEL in <SOA_HOME> now

  • How do I remove iCloud music function from iPhone?

    How do I remove iCloud music function from iPhone?

  • Bad Install Disk

    I have a 14 inch iBook, and recently figured out that my hard drive is bad. I can get on it, but the s.m.a.r.t. status is "failing". Anyways, I got a new external hard drive and I want to install Panther onto it, but the 1st disk is very scratched up