Database issue URL

I haven't used AW so much actually I've only made 2 or 3 documents. But I am learning.
I was trying to make a database, everything going smoothly until I wanted to make a web link. I get to the menu of adding a link, but nothing is pressable, its all been blocked off.
Is it not possible to add any type of link to a database in AW? Whether it be a document link or a web link?
Urgent Help please.

Hello
I've found a hole in previous script.
Here's a corrected version just in case.
H
-- SCRIPT
  µ DB open link
  v0.2
  version for MACRO
  v0.2 - fixed to handle fss coercion failure properly.
  Preparation -
   (1) Copy this script into new window of Script Editor and
      save it as application (without showing startup screen) in, e.g. -
      AppleWorks 6:AppleWorks Essentials:Scripts:µƒ:
   (2) Restart AppleWorks 6.
  Usage (e.g.) -  
    Provided that
     (a) DB has the following fields:
      'link'  text
      'open'  checkbox (default value is initially UNchecked)
      'µ'  calculation
     (b) and this script is saved in:
      AppleWorks 6:AppleWorks Essentials:Scripts:µƒ:µ DB open link
     (c) and 'µ' field has the following formula:
      =MACRO(":µƒ:µ DB open link", 2, "main", 'open', 'link')
    Then you check the 'open' check box, and the script will try to open the link given in 'link' field.
    ('µ' field will show result code such as "1" = opened, "0" = done nothing, "-1" = error)
  Tips -
    If you're lucky enough, you may be able to double click the 'open' check box
     so that it will open the link and yet let the check box revert to unchecked.
property astid : a reference to AppleScript's text item delimiters
property Errs1 : "File not found ("
-- for test
set x to true
set u to "http://www.wwf.org/"
set u to ":test file"
main(x, u)
-- end of test
on main(x, u)
  boolean x: check box value. true for checked, false for not checked.
  string u: url string or file path string
    url = "http://..." or "file:///..."
    file path = HFS/HFS+ (colon delimited) path (full path or partial path) [*1]
  Note
  *1. If script fails to locate specified path (=u), it will interpret (u) as partial path
   and try to locate the file at ([parent path of front DB document] & u)
   Specially, u = ":partial_path" will be resolved as "partial_path" under grand parent of DB file,
    "::partial_path" as "partial_path" under grand-grand parent of DB file, etc.
try
if x is false then return "0"
if u starts with "http://" or u starts with "file:///" then
openUrl(u)
else
openFile(u)
end if
return "1"
on error errs
try
display dialog errs with icon 2
on error number -128
end try
return "-1"
end try
end main
on openUrl(u)
  string u: url string
open location u -- open url with default browser
end openUrl
on openFile(u)
  string u: file path string
-- resolve u as alias (= ua)
try
if u starts with ":" then error number 8004 -- force resolve it as partial path
set ua to u as alias
on error -- u is not resolved as is
-- get DB's parent path (= fdp)
tell application "AppleWorks 6" to set fa to file of front document
try
set astid's contents to {":"}
set fdp to "" & ((fa as text)'s text items 1 thru -2) & ":"
set astid's contents to {""}
on error errs number errn
set astid's contents to {""}
error errs number errn
end try
-- get file's fss and alias (fss coercion will handle the partial path with leading colon(s))
try
-- fss coercion should fail if the directory(ies) in path does not exist.
set u1fss to (file (fdp & u) as file specification)
on error number errn
error (Errs1 & errn & ") :" & return & return & u)
end try
try
-- alias coercion should fail if the file does not exist.
set ua to u1fss as alias
on error number errn
error (Errs1 & errn & ") :" & return & return & u & return & return & (u1fss as text))
end try
end try
-- open ua
ignoring application responses -- for safety (AW6 may hang without this)
try
tell application "Finder" to open ua -- open file with its default application
on error --
end try
end ignoring
end openFile
-- END OF SCRIPT
  Mac OS 9.1.x  

Similar Messages

  • Database issue in TM

    Hi,
    Can someone throw light how we access or find out if there is any  database issue or where fine tuning is required for improving ABAP performance using tcode sdf/mon.
    Currently when I enter into transaction and select SQL trace etc we only get info about the job and program is running status but don't have any idea about the performance of the jobs etc

    Hi,
    Go to se30 .
    there you provide your program name & in swich on/off button you can check your session is active for trace.
    now you execute your program.
    as soon as you will come back you will find this screen.
    here you can find your all trace and you can check your DB table trace in DB Table Tab.
    Regards,
    Jaydeep

  • Cloud Database issue:-Timeoutexpired. The Timeout perion elapsed prior to completion of the operation or the server is not responding

    I am facing following issue in cloud database
    Issue:  Altering any stored procedure in cloud database, Application throwing time out issue.
    If same stored procedure running in backend(SQL),it’s executing without delay i.e. executing in 3 sec, not sure what is happening.
    This is not happening on regular basis, After altering procedure if I wait for 15 to 20 minutes(not running any queries) then it will automatically get resolved.
    Please let me know if any fix is available for the above issue.

    Hello,
    Try to enable TCP/IP and Named Pipes using the following article. Restart SQL Server service when done.
    http://technet.microsoft.com/en-us/library/ms191294.aspx
    Enable and start SQL Server Browser service.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Database issue? Client issue?

    very similar sql statements. if it returns less than 100 rows, it takes 1 second, which is acceptable. But when it returns 1000+ rows, it takes 10+ seconds, which is not acceptable.
    My question is, is it the database issue? or because of the network/ client memory that taking too long to show the data on the sql plus?
    Since the execution of the sql is fast, I think the bottleneck is on showing the results....how to improve it?
    Thanks for your help!
    Ken
    =======
    1099 rows selected.
    Elapsed: 00:00:21.12
    SQL>
    10 rows selected.
    Elapsed: 00:00:00.31
    SQL>
    Edited by: user9511515 on May 2, 2013 8:55 AM

    user9511515 wrote:
    very similar sql statements. if it returns less than 100 rows, it takes 1 second, which is acceptable. But when it returns 1000+ rows, it takes 10+ seconds, which is not acceptable.Very similar? Not good enough.
    As this means that you cannot simply isolate one aspect (number of rows returned), and use that as a comparative benchmark. You have not provided any evidence that the number of rows returned, is the reason for the difference in performance.
    Assuming your sql1 and sql2 are on the same data - another contributing factor to the performance difference could be that sql1 hit the disk (and cached data), and that sql2 conveniently hit the cache and not the disk.
    A word from he-who-waves-lead-pipe-and-foams-at-the-mouth - the type of comparison you are attempting is almost always fundamentally flawed. Even an identical SQL executed within seconds of one another, will have different elapsed execution times.
    Performance tuning is not about comparing process 1 with process 2 and trying to figure out why one is slow and the other fast. Performance tuning is about examining, in detail, the workload of a process. Because if you have no idea WHAT the process is doing, how can determine which parts are slow and which parts can be optimised?

  • Database control url is null

    Dear Members
    --Database 11g and window server 2003
    I have installed OUI( Oracle universal insaller) and the with the help of DBCA(Database Configuration Assistant) i have installed the database. Before DBCA completion of Database it give error message like database control not running. When i press OK the DBCA completed and database installed but where it shows the database control url it shows database url is null.
    when i try to give this url http://sweetdba:1158/em it shows error.
    Please tell me why the url is not working. 11g database is working and connected.
    Thanks & regards

    Thanks Reply
    During the installation it shows error
    Database Configuration assistant: Warning
    Enterprise manager configuration failed due to following err-
    Error instantiating EM Configuration files
    Refer to the log files at
    D:\oracle\app\cfgtoollogs\dbca\ocp11g\emconfig.log for more details
    you can retry configuring this database with enterprize manager
    by manually running D:\oracle\app\product\11.1.0\db_1\bin\emca script
    From emconfig.log i am adding few last lines so the problem could be found.
    Creating directories...
    Aug 13, 2010 4:51:59 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Unable to create D:\oracle\App\product\11.1.0\db_1\khaliqdba.mksons.com_ocp11g/sysman/collection: Permission denied
    Aug 13, 2010 4:51:59 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing CMD /C D:\oracle\App\product\11.1.0\db_1\bin\emctl.bat deploy dbconsole D:\oracle\App\product\11.1.0\db_1\khaliqdba.mksons.com_ocp11g khaliqdba.mksons.com:3938 khaliqdba.mksons.com ocp11g
    Aug 13, 2010 4:51:59 PM oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Failed to deploy state dirs
    Aug 13, 2010 4:51:59 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error instantiating EM configuration files
    Refer to the log file at D:\oracle\App\cfgtoollogs\dbca\ocp11g\emConfig.log for more details.
    Aug 13, 2010 4:51:59 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error instantiating EM configuration files
         at oracle.sysman.emcp.EMAgentConfig.updateAgentConfigFiles(EMAgentConfig.java:2948)
         at oracle.sysman.emcp.EMAgentConfig.performConfiguration(EMAgentConfig.java:1237)
         at oracle.sysman.emcp.EMAgentConfig.invoke(EMAgentConfig.java:240)
         at oracle.sysman.emcp.EMAgentConfig.invoke(EMAgentConfig.java:218)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:226)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
         at java.lang.Thread.run(Thread.java:595)
    Aug 13, 2010 4:51:59 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to D:\oracle\App\product\11.1.0\db_1\oui
    Please Tell me the problem.
    I will be thank full to you.
    Edited by: SweetKUR on Aug 15, 2010 10:03 PM
    Edited by: SweetKUR on Aug 15, 2010 10:06 PM

  • Oracle database issue

    HI
    Oracle database issue in reg to
    ora-00607 (internal error occured whilemaking changes to a datablock
    ora-600(internal error code agruments 4193, 4997, 4526
    while database is shutting down.
    oracle 10.2.0.1 upgraded to 10.2.0.3
    os Linux eS4
    please advise to trouble shoot the issue.
    Priyanka

    Ok.. I have experience on this issue.. Post your alert log contents (not all )..
    I hoping that anybody had come across with issue so that thy can express their views>>>>>>
    This is the not right place to put this post.. To get immediate replies, post it on
    General Database Discussions
    All the best..
    Yusuf

  • Strange Database issues while trying to create new user through EM...

    I'm attempting to configure my local Oracle 11g database in order to create a Content Server user in order to setup a Fatwire installation. I'm getting some strange issues with my database that I was hoping maybe someone could help me out with.
    The guide I'm following starts with this:
    +1. Determine the Console Server port:+
    a. Open the emoms.properties file in a text editor. The file is located in:
    +<ora_home>/<servername>_<SID>/sysman/config/+
    b. Find the line,
    oracle.sysman.emSDK.svlt.ConsoleServerPort
    and make a record of the port number value at the end of the line.
    When I open the emoms.properties file in Notepad++, I'm unable to read the contents - it's all symbols/jibberish.
    The next step says this:
    +2. Log in to the Oracle Enterprise Manager console:+
    a. Execute the following command: emctl status dbconsole
    When I execute that command I get the following error:
    Environment variable ORACLE_UNQNAME not defined. Please set ORACLE_UNQNAME to database unique name.
    The third step says this:
    Open a browser and go to the URL highlighted in bold in step a above. If you see
    a “Security Mismatch” error, ignore it (the error appears if you are using a selfsigned
    certificate).
    I skipped to this step because I'm assuming the link it wants me to go to is my EM console (https://localhost:1158/em/console/aboutApplication), however when I browse to that URL I get the following error:
    503 Service Unavailable
    Service is not initialized correctly. Verify that the repository connection information provided is correct.
    Clearly, something isn't right here. What's going on? Any help would be appreciated.

    Alfonso Vicente wrote:
    Did you try what I suggested?Yes, thanks for the advice. Now I'm having some additional issues. When I run emctl status dbconsole I get the following error:
    OC4J Configuration issue. C:\app\john.smith\product\11.2.0\dbhome_1/oc4j/j2ee/OC4
    J_DBConsole_ORCL-SMITH.company.com_localhost_orcl not found.
    This is appearing after I made the appropriate changes to the emoms.properties file and set ORCL_UNQNAME to "localhost_orcl" <-- is that correct? the path to my emoms.properties is:
    C:\app\john.smith\product\11.2.0\dbhome_1\localhost_orcl\sysman\config
    Here is my emoms.properties file, does this look right?
    #Mon Mar 19 17:56:05 EDT 2012
    oracle.sysman.emSDK.svlt.ConsoleServerName=localhost\:1158_Management_Service
    oracle.sysman.eml.mntr.emdRepPwd=2ad171ddf6ce91aebf1c2f2c371ee5a315591a1be21f37965a88d54126d7528aa1091f543569e58b
    emdrep.ping.pingCommand=/bin/ping -c 3 -w 30 <hostname>
    em_oob_shutdown=false
    LargeRepository=false
    oracle.sysman.eml.mntr.emdRepPort=1521
    em_email_address=
    oracle.sysman.eml.mntr.emdRepPwdSeed=8622625238442107993
    em_oob_crash=false
    em.oms.dumpModules=omsThread,repos
    oracle.sysman.emRep.dbConn.statementCacheSize=50
    oracle.sysman.db.isqlplusUrl=%ISQLPLUS_PROTOCOL%\://%ISQLPLUS_HOST%\:%ISQLPLUS_PORT%/isqlplus/dynamic
    em_oob_startup=false
    oracle.sysman.emSDK.svlt.ConsoleServerPort=4889
    em_from_email_address=_NOT_AVAILABLE_
    oracle.sysman.eml.mntr.emdRepPwdEncrypted=TRUE
    oracle.sysman.db.isqlplusWebDBAUrl=%ISQLPLUS_PROTOCOL%\://%ISQLPLUS_HOST%\:%ISQLPLUS_PORT%/isqlplus/dba/dynamic
    oracle.sysman.emSDK.svlt.ConsoleServerHost=localhost
    em_from_email_name=_NOT_AVAILABLE_
    oracle.sysman.emSDK.svlt.ConsoleServerHTTPSPort=1159
    em_email_gateway=
    oracle.sysman.eml.mntr.emdRepServer=localhost
    oracle.sysman.eml.mntr.emdRepSID=NO_VALUE
    oracle.sysman.eml.mntr.emdRepConnectDescriptor=(DESCRIPTION\=(ADDRESS_LIST\=(ADDRESS\=(PROTOCOL\=TCP)(HOST\=localhost)(PORT\=1521)))(CONNECT_DATA\=(SERVICE_NAME\=orcl)))
    oracle.sysman.emkeyfile=C:\app\john.smith\product\11.2.0\dbhome_1\localhost_orcl\sysman\config\emkey.ora
    em.ip.ui.enable=true
    oracle.sysman.eml.mntr.emdRepUser=sysman
    oracle.sysman.emSDK.svlt.PublicServletEnabled=true

  • CSS load balancing issue: url isn't accessible even though services are up

    service Server1:80
      ip address 10.10.10.34
      protocol tcp
      port 80
      keepalive type http
      keepalive uri "/test.asp"
      active
    service Server2:80
      protocol tcp
      port 80
      keepalive type http
      keepalive uri "/test.asp"
      ip address 10.10.10.35
      active
    owner Ow1
    content LBR1:80
        vip address 192.168.1.159
        port 80
        protocol tcp
        url "/*"
        balance weightedrr
        add service Server1:80
        add service Server2:80
        advanced-balance sticky-srcip
        sticky-inact-timeout 21
        flow-timeout-multiplier 8
        active
    service Server1:80
      ip address 10.10.10.34
      protocol tcp
      port 80
      keepalive type http
      keepalive uri "/test.asp"
      active
    service Server2:80
      protocol tcp
      port 80
      keepalive type http
      keepalive uri "/test.asp"
      ip address 10.10.10.35
      active
    owner OW1
      content LBR2:80
        vip address 192.168.1.98
        protocol tcp
        port 80
        url "/*"
        balance weightedrr
        add service Server1:80
        add service Server2:80
        advanced-balance sticky-srcip
        sticky-inact-timeout 21
        flow-timeout-multiplier 8
        active
    All services are alive all the time and both contexts are alive all the time.
    when user tries to access LBR2:80's URL it works all the time. but when user tries to access LBR1:80's url then it works sometimes and some times it doesn't work.
    could you advise what the issue could be?

    When the SYN comes in the CSS will first check for the srcip in the sticky database and if it finds a match will forward to the stuck server. If the source ip is not in the sticky database the request will be load balanced using weightedrr and a server selected. That sticky server will then be added to the sticky database.
    If the sticky-srcip is used between 2 content rule, it will use separate sticky table.
    You may need to take packet capture to understand what is really failing along with
    a following outputs :
    sh flow
    sh rule Ow1 LBR1:80 ser
    regards
    Andrew

  • Database control url

    Hy,
    i have installed oracle 10g release 2 and I try to connect to database contro with url http://tlvrg4:1158/em but when i submit recive this message (in all browser)
    The page cannot be displayed
    Why? How can I solve this problem?
    I try to lanch tnsping from command line and the result it's ok in the same way if i connet to sqlplus from command ling it work but if i try to connect with browser i recive the same message:
    The page cannot be displayed
    Why? How can I solve this problem?
    Thank's

    I believe the default port number is 5500, unless you changed it.
    http://tlvrg4:5500/em
    also verify that enterprise manager is up and running.
    From a command prompt
    emctl status dbconsole
    this will show you the status of em
    if it is down, you can start it with
    emctl start dbconsole
    Also I have had issues before with a server (tlvrg4 in your case) not being in a HOST file in the OS. You can also supplement the IP address of the server in for the name.

  • Multiple Database Issues

    I have now experienced 5 issues in a row with HP Support because apparently HP utilizes multiple databases to track customer sales vs. support accounts. EVERY TIME I have has to send in my laptop to get fixed (that's getting old too), HP has sent the shipping material to the wrong address which I have not lived at for over nine months now! ... THIS IS INEXCUSABLE!!!
    Each time this has happened I was assured it would not happen again ... "That all my information has been updated" ... well apparently NOT!!!
    Somewhere in HP's system they still have my OLD ORIGINAL ADDRESS that is NOT being updated properly and is then utilized as my current address despite giving the support team my NEW address every time.  Even my email updates are still being sent to my old email address (which I fortunately still have access too).
    HP - YOU GUYS NEED TO GET THIS SYSTEM WORKED OUT BECAUSE IT IS NOT WORKING AND YOUR MAKING AN ALREADY BAD SITUATION OF NEEDING SUPPORT AND TURNING IT IN TO AN EVEN WORSE SITUATION!!!

    In general you aren't going to be able to use an Access database online. In order to get that to work you'd have to modify your IIS settings to allow access to Access databases (refer to TechNet on how to do this).  By default it won't serve up such
    files.  Assuming you did do that then nothing would prevent somebody from trashing your DB since everyone would have access to it.  Additionally Access is not really designed for multiple users to work with it at the same time.  Yes it does
    "technically" support multiple users if properly configured but you're going to run into all sorts of issues.
    Even after all that you're going to run into the issues with linked servers and whatnot because Access is assuming you're running things locally.  Hence any resources it uses will assume to come from the same location.  Assuming it even builds
    the URL correctly IIS is still going to fail to deliver the file (unless it is HTML or similar).  So you'd have to add all the additional file types to IIS before it would server them up. 
    Personally your network admin should be throwing a fit by now about security.  This is the wrong approach to solving your problem IMO.  Without understanding your problem it is hard to provide suggestions but I would at least consider using FTP
    over HTTP.  At least with an FTP server you can access files without having to configure things and you can add security. Access is still probably not going to behave well but it would be a start.  Alternatively UNC paths would work a lot better
    if you're on the same network.
    If none of that works then creating a web service on the hosted network that interacts with the database and that your code can call would be a step up. 
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • RMAN 11gR2 DUPLICATE TARGET FOR STANDBY FROM ACTIVE DATABASE - Issue -HELP

    First question.
    Can primary and standby database have the same SID name?
    As I recall it is yes.
    I believe they must have different GLOBAL or DB_UNIQUE_NAME?
    Anyway, RMAN I believe is telling me it is having problems copying control file on first and dies.
    Permissions Issue on STANDBY machine?
    RMAN> connect target backup_admin/backup_admin
    connected to target database: LABDG (DBID=1973403623)
    RMAN> connect auxiliary sys/oracle@STANDBY;
    connected to auxiliary database: LABDG (not mounted)
    RMAN> DUPLICATE TARGET DATABASE FOR STANDBY FROM ACTIVE DATABASE;
    Starting Duplicate Db at 18-JUL-11
    using target database control file instead of recovery catalog
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: SID=10 device type=DISK
    contents of Memory Script:
    backup as copy reuse
    targetfile '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/orapwLABDG' auxiliar
    '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/orapwLABDG' ;
    executing Memory Script
    Starting backup at 18-JUL-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=151 device type=DISK
    Finished backup at 18-JUL-11
    contents of Memory Script:
    backup as copy current controlfile for standby auxiliary format '/u01/oradat
    restore clone controlfile to '/u01/app/oracle/flash_recovery_area/LABDG/cont
    '/u01/oradata/LABDG/control01.ctl';
    executing Memory Script
    Starting backup at 18-JUL-11
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile copy
    copying standby control file
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 07/18/2011 11:20:54
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 07/18/2011 11:20:
    ORA-17628: Oracle error 19505 returned by remote Oracle server

    Hi,
    Permissions Issue on STANDBY machine?First problem I see is the sysdba password must be the same on both sides (target and auxiliary dbs).
    From the documentation.
    The source database and auxiliary instances must use the same SYSDBA password, which means that both instances must have password files. You can
    create the password file with a single password so you can start the auxiliary instance and enable the source database to connect to it.Check all prereqs for the standby db duplicate here.
    http://download.oracle.com/docs/cd/E11882_01/backup.112/e10643/rcmsynta020.htm#i81724
    Rgds,
    Tycho

  • Access database issue in SQL Plus

    Hi Friends,
    I download a oracle 10g to install sql Plus without create database. (I download client and does not find SQL Plus)
    I can ping database server from client PC and also set up a TNS.
    However I got a error ORA 12504 --TNS:listener was not start.
    I can access database by sql plua from server side. I do not think we need to put a listener file in client PC under admin path.
    my database set as RAC module and system as window 2003
    how to fix this issue?
    Thanks,
    JIm

    OK, just to be clear, you have a single client machine where you have installed something with the 10g label. Are you saying that you installed the Oracle database bits, but did not create a database? Rather than doing a client-only install? Is there a single Oracle home on the client machine?
    And then you have a RAC database running on multiple Windows 2003 servers, right? Is there a listener running for this RAC database? Can you connect to it from other client machines?
    Are you certain that the service name you specified in the client machine's tnsnames.ora file matches the service the listener is listening for?
    Justin

  • Setup PeopleTools 8.53 Database Issue (Linux Version)

    Folk,
    Hello. I am installing PeopleTools 8.53 Internet Architecture. Database Server is Oracle Dabase 11gR1. OS is Oracle Linux 5.
    I have installed JDK7, WebLogic 10.3.6, Tuxedo 11gR1 and PeopleTools 8.53 successfully. But when set up PeopleTools8.53 Database in the way as below,
    I get an error message and cannot proceed.
    [user@localhost PT8.53]$ pwd
    /opt/PT8.53
    [user@localhost PT8.53]$ ls
    AppBatchDBORA     dict                        psconfig.sh     setup
    AppBatchDBWebExe  etc                         PSEMAgent       sqr
    appserv           fonts                       PSEMViewer      src
    bin               jre                         readme.txt      toolsadmin.sh
    cblbin            jre1.7.0                    scripts         utility
    ccr               log                         sdk             web
    class             PeopleTools_InstallLog.log  SecurityAddIns
    data              peopletools.properties      secvault
    [user@localhost PT8.53]$ ./psconfig.sh
    [user@localhost PT8.53]$ cd setup
    [user@localhost setup]$ ls
    ccr                     pscbl.mak                PsTestFramework
    Client                  pscbl_mf.mak             pstuxftp.txt
    dashboard               PsCIA                    psvccrt
    dbcodes.pt              psdb.sh                  ptib.jar
    dotnetredist            psdmtx.cfg               readonly.txt
    endorsed                psmkreadonly.sh          searchCobolPgms.ps
    NOTESDB                 psmkwritable.sh          soap
    nVisionDrill            PsMpCrystalInstall       unicode.cfg
    OpenXmlSDK              PsMpDbInstall            unpack_jre.sh
    parmfile                PsMpPIAInstall           UPGCOMPVIEWER
    peopletools_ab_reg.cfx  PsMpWebAppDeployInstall  WebCenter
    pkgs                    PSODBC                   writable.txt
    PsCA                    psrun.mak
    [user@localhost setup]$ cd PsMpDbInstall
    [user@localhost PsMpDbInstall]$ ls
    InstData  setup.bat  setup.sh
    [user@localhost PsMpDbInstall]$ ./setup.sh
    Setting temporary directory /tmp/IA.6736
    Executing setup.linux LAX_VM /opt/PT8.53/jre/bin/java  -DCOMP_NAME=localhost.localdomain -DPS_UMASK=0002
    Preparing to install...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    Launching installer...
    ===============================================================================
    Peoplesoft Database Configuration                (created with InstallAnywhere)
    Preparing CONSOLE Mode Installation...
    ===============================================================================
    Welcome
    Welcome to the PeopleSoft Database Configuration Wizard 8.53
    This Wizard will assist you in configuring and loading a PeopleSoft database.
    PRESS <ENTER> TO CONTINUE:
    ===============================================================================
    Error
    You must run psconfig.sh (. ./psconfig.sh) under your PS_HOME directory before
    starting the Database Configuration Wizard.
    PRESS <ENTER> TO ACCEPT THE FOLLOWING (OK):
    [user@localhost PsMpDbInstall]$
    As you see the above, I have run ./psconfig.sh in the directory /opt/PT8.53 and then run ./setup.sh in the directory /opt/PT8.53/setup/PsMpDbInstall.
    but get the error message:
    "You must run psconfig.sh (. ./psconfig.sh) under your PS_HOME directory before starting the Database Configuration Wizard."
    I have run the 2 commands ./psconfig.sh and ./setup.sh in root but get the same error message.
    My question is: Does PeopleTools8.53 Linux Version have a problem ? How to solve the issue ?
    Thanks.

    Folks,
    Hello. Thanks a lot for replying.
    . ./psconfig.sh has gone through. Now, I get new issues as below:
    [root@localhost PsMpDbInstall]# pwd
    /opt/PT8.53/setup/PsMpDbInstall
    [root@localhost PsMpDbInstall]# ./setup.sh
    Setting temporary directory /tmp/IA.30567
    Executing setup.linux LAX_VM /opt/PT8.53/jre/bin/java  -DCOMP_NAME=localhost.localdomain -DPS_UMASK=0022
    Preparing to install...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    Launching installer...
    ===============================================================================
    Peoplesoft Database Configuration                (created with InstallAnywhere)
    Preparing CONSOLE Mode Installation...
    ===============================================================================
    Welcome
    Welcome to the PeopleSoft Database Configuration Wizard 8.53
    This Wizard will assist you in configuring and loading a PeopleSoft database.
    PRESS <ENTER> TO CONTINUE:
    ===============================================================================
    Please enter an installation location or press <ENTER> to accept the default
       (DEFAULT: /opt/PT8.53):
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Note: If you have installed PeopleSoft Applications outside PeopleTools PS_HOME
    then choose the PeopleSoft Applications home PS_APP_HOME, else leave the
    default PS_HOME.
    Choose the directory where you previously installed PeopleSoft Applications,
       commonly known as PS_APP_HOME.  or press <ENTER> to accept the default
       (DEFAULT: /opt/PT8.53):
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    For a database platform of 'Oracle', are you installing a:
        1- Non-Unicode Database
      ->2- Unicode Database
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    Oracle - UNICODE
    ===============================================================================
    Select Character Set:
      ->1- AL32UTF8      
        2- UTF8          
    To select an item enter its number, or 0 when you are finished [0] : 0
    Database Create Type:
      ->1- PeopleTools System
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Select PeopleSoft Application:
      ->1- PeopleTools System Database - US English
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
       Specify the directory path for 'sqlplus' [/products/oracle/9.2.0/bin]: /home/user/OracleDB_Home/bin
       Specify the location for ORACLE_HOME [/products/oracle/9.2.0]: /home/user/OracleDB_Home/bin
    Location of modified scripts: /opt/PT8.53/modifiedscripts
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Do you want to create a new SID or use existing one?
      ->1- Create new SID
        2- Use existing SID
    To select an item enter its number, or 0 when you are finished [0] : 2
    Do you want to create a new SID or use existing one?
        1- Create new SID
      ->2- Use existing SID
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
       Oracle SID [PTSYS]: DB1
       DatabaseName [PTSYS]: PT853
       Mount Point 1( for SYSTEM and REDO LOGS file in createdb.sql, ex: NT 'C'  ,
       UNIX 'u01') [c]: u01
       Mount Point 2 ( for PSTEMP and PSDEFAULT file in utlspace.sql, ex: NT 'C'  ,
       UNIX 'u01') [c]: u01
       Mount Point 3 ( for all files in xxddl.sql, ex: NT 'C'  , UNIX 'u01') [c]: u01
    Enable AutoExtend for Peoplesoft Tablespaces?
      ->1- Yes
        2- No
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
       Peoplesoft owner ID (ex: 'SYSADM') [SYSADM]: SYSADM
       Peoplesoft owner password (ex: 'SYSADM') []:      
       Peoplesoft owner password Re-type []:      
       Peoplesoft connect ID [people]: people
       Peoplesoft connect password []:      
       Peoplesoft connect password Re-type []:      
       Peoplesoft default tablespace  (ex: 'PSDEFAULT') [PSDEFAULT]: PSDEFAULT
       Location of init.ora file complete path
       [/home/user/OracleDB_Home/bin/dbs/initDB1.ora]:
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 2
    ===============================================================================
       Oracle SID [DB1]:
       DatabaseName [PT853]:
       Mount Point 1( for SYSTEM and REDO LOGS file in createdb.sql, ex: NT 'C'  ,
       UNIX 'u01') [u01]:
       Mount Point 2 ( for PSTEMP and PSDEFAULT file in utlspace.sql, ex: NT 'C'  ,
       UNIX 'u01') [u01]:
       Mount Point 3 ( for all files in xxddl.sql, ex: NT 'C'  , UNIX 'u01') [u01]
    Enable AutoExtend for Peoplesoft Tablespaces?
      ->1- Yes
        2- No
    To select an item enter its number, or 0 when you are finished [0] :
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] :
    ===============================================================================
    Please enter the Appserver User and Password for your database.
       Appserver User []: tlisten
       Password []:       
       Re-type Password []:       
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Please enter the Webserver User and Password for your database.
       Webserver User : PTWEBSERVER
       Password []:           
       Re-type Password []:           
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Choose whether to enable or disable all other user profiles in your database.
      ->1- Disable
        2- Enable
    To select an item enter its number, or 0 when you are finished [0] : 2
    Choose whether to enable or disable all other user profiles in your database.
        1- Disable
      ->2- Enable
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Choose whether to set the password same as the OPRID (user) or a different
    password (a global password, same for all OPRIDs).
      ->1- Set the password same as OPRID
        2- I would like to set a different password
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Select Base Lanaguage
      ->1- ENG - US English                       
    To select an item enter its number, or 0 when you are finished [0] : 1
    Select Base Lanaguage
      ->1- ENG - US English                       
    To select an item enter its number, or 0 when you are finished [0] : 0
    Press 1 for Next, 2 for Previous, 3 to Cancel or 5 to Redisplay [1] : 1
    ===============================================================================
    Pre-Installation Summary
    Please Review the Following Before Continuing:
    Product Name:
        Peoplesoft Database Configuration
    Install Folder:
        /opt/PT8.53
    Apps Install Home:
        /opt/PT8.53
    Database Platform:
        Oracle  -  Unicode
    Oracle SID:
        DB1
    Application:
              PeopleTools System Database - US English
    Database Name:
        PT853
    Please type 'back' to go to previous panels
    PRESS <ENTER> TO CONTINUE:
    ===============================================================================
    Installing...
    [==================|==================|==================|==================]
    [------------------|------------------|------------------|------------------]
    ===============================================================================
    Please Wait...
    Executing.. /opt/PT8.53/modifiedscripts/psadmin.sql.
    ===============================================================================
    Please Wait...
    Executing.. /opt/PT8.53/modifiedscripts/connect.sql.
    ===============================================================================
    Executing DM: -CT ORACLE -CS localhost.localdomain -CD PT853 -CO SYSADM -CP
    SYSADM -CI people -CW people -FP /opt/PT8.53/modifiedscripts/dbsetup.dms
    Console Mode: true
    Initializing Data Mover ... please wait
    Console DM Mode: /opt/PT8.53/bin/psdmtx /opt/PT8.53/setup/parm1
    Error: unable to terminate process
    ExitCode: 127
    Error: true
    ===============================================================================
    Error
    The following error occurred while running data mover .
    Error: File not found: /opt/PT8.53/scripts/pt853ora.dms
    Please select OK to exit installer.
    PRESS <ENTER> TO ACCEPT THE FOLLOWING (OK):
    ===============================================================================
    Install Complete
    The installation of Peoplesoft Database Configuration is complete, but some
    errors occurred during the install.
       Please see the installation log for details.  Press "Done" to quit the
    installer.
    PRESS <ENTER> TO EXIT THE INSTALLER:
    [root@localhost PsMpDbInstall]#
    As you see the entire installation process above, the Installer cannot initialize Data Mover. I have run dbsetup.dms seperately, it cannot run. The 2 files psdmtx and parm1 cannot run.
    My questions are:
    First, how to get to Data Mover Bootstrap mode at this point of the installation so that import data into Database Instance ?
    Second, how to view Oracle database instances in Oracle Database Server so that make sure Database instance PT853 is created ?
    Thanks.

  • Database issue

    Hi All,
    I have a small problem with the database (mysql) that i have set up. So to start off the website is for a funeral directors, within this site is a page where people can donate (http://www.milesfunerals.com/donations_2.php ), they put the name of the deceased into the search box and it brings bring up the name of the deceased with a url link. This url link then takes them to another site called justgiving, a donations and fundraising portal site, here the donations can then be made. Just to clarify, the database used by the funeral directors is a separate setup to justgiving. The data uploaded to this database is done by the staff after having arranged the funeral. Once they have found out details of charities etc the staff then create a donations page for that deceased person, chooses a url (also through justgiving) then uploads both the name of deceased along with url to the miles funeral database.
    The problem i have is, justgiving only allows the one charity per page so if the family have chosen to have more than the one charity there would need to be 2 pages created under the same name, therefor 2 urls are needed BUT only the one url per name can be entered into the funeral database. Is there some way that 2 url links can present? Below is the php code for the insert data page. I have stared out parts for security reasons.
    <?php require_once('../Connections/*****.php'); ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "index.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO donation (name, url) VALUES (%s, %s)",
                           GetSQLValueString($_POST['name'], "text"),
                           GetSQLValueString($_POST['url'], "text"));
      mysql_select_db($database_*******, $*****);
      $Result1 = mysql_query($insertSQL, $*******) or die(mysql_error());
      $insertGoTo = "insert_success.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Insert data</title>
    <style type="text/css">
    @import url("../Style sheet.css");
    a:link {
              color: #D91327;
    a:visited {
              color: #D91327;
    a:hover {
              color: #CEB239;
    a:active {
              color: #D91327;
    </style>
    </head>
    <body>
    <div id="container"><img src="../banner.jpg" width="1082" height="187" alt="banner" />
    <p> </p>
    <p class="admin_heading">Insert Record to Database</p>
    <p> </p>
    <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
      <table align="center">
        <tr valign="baseline">
          <td height="25" align="right" nowrap="nowrap" bgcolor="#E6CC7F">Deceased Name:</td>
          <td height="25" bgcolor="#E6CC7F"><input type="text" name="name" value="" size="70" /></td>
        </tr>
        <tr valign="baseline">
          <td height="25" align="right" nowrap="nowrap" bgcolor="#F5E7B8">Deceased Unique Url:</td>
          <td height="25" bgcolor="#F5E7B8"><input type="text" name="url" value="" size="70" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right"> </td>
          <td><input type="submit" class="submit" value="Insert record" /></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>

    Yep Dreamweaver is happy with that. Ok next page is below.
    <?php require_once('../Connections/******.php'); ?>
    <?php
    if (array_key_exists('submit', $_POST)) {
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;  
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsDonationResults = "-1";
    if (isset($_POST['Name'])) {
      $colname_rsDonationResults = $_POST['Name'];
    mysql_select_db($database_********, $*******);
    $query_rsDonationResults = sprintf("SELECT * FROM donation WHERE name = %s", GetSQLValueString($colname_rsDonationResults, "text"));
    $rsDonationResults = mysql_query($query_rsDonationResults, $******) or die(mysql_error());
    $row_rsDonationResults = mysql_fetch_assoc($rsDonationResults);
    $totalRows_rsDonationResults = mysql_num_rows($rsDonationResults);
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Donations</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <link href="../Style sheet.css" rel="stylesheet" type="text/css">
    <script src="../Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script type="text/javascript" src="../SpryAssets/SpryValidationTextField.js"></script>
    <script type="text/javascript" src="../SpryAssets/SpryValidationCheckbox.js"></script>
    <link href="../SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css">
    <link href="../SpryAssets/SpryValidationCheckbox.css" rel="stylesheet" type="text/css">
    </head>
    <LINK REL="SHORTCUT ICON" HREF="http://www.milesmemorials.com/favicon.ico">
    <body>
    <div id="container">
    <?php include('includes/header.php'); ?>
    <?php include('includes/navbar2.php'); ?>
    <?php include('includes/navbar.php'); ?>
    <?php include('includes/sidebar.php'); ?>
    <div class="maindiv" id="maindiv-index">
      <p> </p>
        <p> </p>
    <p class="subheading2">Donations</p>
        <p class="maintext">Please enter the name of the person in whose memory you wish to make a donation and click on the "search" button.  When the name appears, please click on the link (URL) next to it. This will automatically take you to the fundraising page for that individual.  On our fundraising pages you will be able to donate to the charity chosen by the family (including donations with GiftAid)</p>
    <p class="maintext"> </p>
    <form action="../donations_2.php" method="post" name="form1" id="form11">
      <table cellpadding="2" cellspacing="0" border="0">
        <tr>
          <td align="right"><label for="Name">Name of Deceased</label></td>
          <td><input name="Name" type="text" value="" size="60"></td>
        </tr>
        <tr>
          <td align="center" colspan="2"></td>
        </tr>
        <tr>
          <td align="center" colspan="2"></td>
        </tr>
        <tr>
          <td align="center" colspan="2"><p>
            <input name="submit" type="submit" class="submit" value="Search" >
          </p>
            <p>  </p></td>
        </tr>
        <tr>
          <td align="center" colspan="2"></td>
        </tr>
      </table>
    </form>
    <?php if ($totalRows_rsDonationResults > 0) { // Show if recordset not empty ?>
      <table width="690" border="0" align="center" cellpadding="4" cellspacing="0">
    <tr>
    <tr>
    <td style="border-right: #c8a263 thin solid;width="345" bgcolor="#EDD994" ><?php echo $row_rsDonationResults['name']; ?></td>
    <td bgcolor="#EDD994" style= "width="345" ;bgcolor="#EDDA95"><a href="http://<?php echo $row_rsDonationResults['url']; ?>"><?php echo $row_rsDonationResults['url']; ?></a></td>
    </tr>
    </table>
      <?php } // Show if recordset not empty ?>
      <?php
    if (isset($totalRows_rsDonationResults) && ($totalRows_rsDonationResults ==0)) { // Show if recordset empty ?>
    <p class="maintext"><strong>No record found</strong></p>
    <?php } // Show if recordset empty ?>
    </div>
    <?php include('includes/footer.php'); ?>
    </div>
    </body>
    </html>

  • Mysql database issue

    Hi all,
    Please am a newbie when it comes to php and forms, I have created a site with a registration and login forms and I have equally created mysql database and table for the form inside mysql server but I need the database to take the data from the registration form and store it, and at the same time when the user login it will bring the their data to them. But I don't know how to connect it with form on my site and have it on my rootfolder/local server.  I will really appreciate if anyone can help out.

    I guess you should install Apache server. Then you configure your server with php and mysql with php.
    After that you can access your form from localhost url which will make a call to ur db and return you output. Hope it helps..
    Thanks,
    Ashish
    website: http://www.wikiuncle.com

Maybe you are looking for

  • Personal File Sharing & Network in the Sidebar

    I have had the same symptoms as other posts; but the real answer was not given, YET. If you use the Network icon in the Sidebar, and you move between networks, Where or How do you Refresh the Finder? Rebooting or Shutdown is not the answer. Windows N

  • A few simple questions

    Hi, the company I work for will soon be doing some work with OS X server and in an effort to familiarise myself with the software I have set it up at my home on an old blue and white G3 (sadly the best hardware I have to spare right now). I would lik

  • Sorting issue in ALV ABAP webdynpro

    Hi All, We are displaying the data in ALV format using ABAP webdynpro. The issue here is sorting the values. The field  is the character field, as the field may contain character or numberic values. When we sort a set of values in ascending order, th

  • Bring back an expired project

    bring back an expired project in Dreamweaver

  • InDesign CS3 Proximity English Error (OS 10.8.5)

    I'd just like to get rid of the error message when opening documents in InDesign CS3 (on a Mac using OS 10.8.5). See attached for error message. Thanks!! -Teresa