SQL Verification Problem / Muse Form Issue (Server uses MySQL muse uses SQLite) I'm in desperate need of help

       Alright well here is my issue... I have been trying to fix it on my own for the past week non stop and I have finally came to a solid conclusion as to the cause of the issue.
   I always get the error "The server has encountered an error..." in red text when anyone tries to submit a form and also when I try and test it myself. This led me to test the server / site for compatibility or issues by using the test:
mydomain.com /scripts/form_check.php
I got the first two checks green (pass) and the third test threw a red check meaning I was having an issue with SQL verification. This then led me to days of trying to work with my hosting provider (one.com) trying to solve the problem and I was told that they use mySQL on their servers and that they couldn't do anything on their end to solve the issue. I read alot that we are recommended in this case to try and get our host to add the SQLite database to their server or whatever it is they would do, long story short I guess many people are able to ask their host to make SQLite work and most accept and add SQLite functionality to their servers but unfortunately my hosting provider doesn't want to do this and they said they were sorry and that I would need to either switch the script to work with mySQL or figure something else out...
   I took a lot of time building my site and I dont want to take the form out. I absolutely need it... I know many post on here saying "forms dont work, oh poop " or "adobe sucks I dont want to use business catalyst grrr" but I tried to find the source of the problem and I've successfully came to the conclusion that my issue is that my script wants to use SQLite but in order for my sites forms to work the server needs to have SQLite as well... My idea is that if I can configure the script and the site itself to use mySQL instead of SQLite the SQL verification will then not be an issue and my websites forms will function with no issues. I am curious if a member of the staff with adobe has experience with this particular issue and can help me out? or if a member of the adobe community has solved this problem? If not I am hoping that with the description I provided that someone with knowledge of mysql, sqlite or code in general could help me modify the script or write a new script that will allow the forms to work properly. I know its a long shot, I say that because this discussion is full of people who used muse in favor of dreamweaver because just like a large number of people in the muse discussion area, I'm a graphic designer, with plenty of computer experience, art and design skill and I am extremely familiar with photoshop. Muse is perfect in so many ways. In fact, like I mentioned above, I don't even have a complaint at this time about muse. I understand the form issue in this case, and I imagine in thousands of other users situations, is all just a matter of scripts and compatibility.. Its just a little issue between the SQLite scripts we are all given when we export our muse website and the SQL version our various hosting service may be using on their servers.
   Just incase I missed anything, to provide just a bit more info on the topic and myself for anyone who may be able to help:
I can alter the text inside of the scripts easily if anyone happens to know any lines of code that easily solve this issue (making the muse contact forms, which are native to SQLite, functional on a server using mySQL)
I was told one way I could make the forms work on a server using mySQL (or any version other than SQLite) If I were to make changes to adobe muses SQL version by converting the SQLite db to mySQL db (db = database)
I am computer literate and I can take any directions necessary, I really just need to get this done, I really appreciate any help I can get!!
Thank you in advance,
Roy

<?php
If you see this text in your browser, PHP is not configured correctly on this hosting provider.
Contact your hosting provider regarding PHP configuration for your site.
PHP file generated by Adobe Muse CC 2014.1.6
function formthrottle_check()
    if (!function_exists("sqlite_open"))
        return '1';
    $retCode ='5';
    if ($db = @sqlite_open('muse-throttle-db', 0666, $sqliteerror))
        $res = @sqlite_query($db, "SELECT 1 FROM sqlite_master WHERE type='table' AND name='Submission_History';",  $sqliteerror);
        if ($res == null or @sqlite_num_rows($res) == 0 or @sqlite_fetch_single($res) != 1)
            $created = @sqlite_exec($db, "CREATE TABLE Submission_History (IP VARCHAR(39), Submission_Date TIMESTAMP)",  $sqliteerror);
            if($created)
                @sqlite_exec($db, "INSERT INTO Submission_History (IP,Submission_Date) VALUES ('256.256.256.256', DATETIME('now'))",  $sqliteerror);
            else
                $retCode = '2';
        if($retCode == '5')
            $res = @sqlite_query($db, "SELECT COUNT(1) FROM Submission_History;",  $sqliteerror);
            if ($res != null and @sqlite_num_rows($res) > 0 and @sqlite_fetch_single($res) > 0)
                $retCode = '0';
            else
                $retCode = '3';
        @sqlite_close($db);
    else
        $retCode = '4';
    return $retCode;
function formthrottle_too_many_submissions($ip)
    $tooManySubmissions = false;
    if (function_exists("sqlite_open") and $db = @sqlite_open('muse-throttle-db', 0666, $sqliteerror))
        $ip = @sqlite_escape_string($ip);
        @sqlite_exec($db, "DELETE FROM Submission_History WHERE Submission_Date < DATETIME('now','-2 hours')",  $sqliteerror);
        @sqlite_exec($db, "INSERT INTO Submission_History (IP,Submission_Date) VALUES ('$ip', DATETIME('now'))",  $sqliteerror);
        $res = @sqlite_query($db, "SELECT COUNT(1) FROM Submission_History WHERE IP = '$ip';",  $sqliteerror);
        if (@sqlite_num_rows($res) > 0 and @sqlite_fetch_single($res) > 25)
            $tooManySubmissions = true;
        @sqlite_close($db);
    return $tooManySubmissions;
?>

Similar Messages

  • Problem with forms/app server

    Hi,
    I have a problem which is as below;
    I am opening a forms 10g application by putting my application server ip address in the browser.I can log in and go to the menu ,click and open a form in the application (there is no problem till this point).
    I generate a document and the form is saved(it gets saved and there is no problem).
    Problem
    There is a print generate button after that which is pressed (Its for printing).
    Its supposed to send the report (in MS word format) to the printer.When that button is pressed,the application gets hang.Its not responding at all.
    Its a packaged application and i dont have the source.
    Could it be an application server issue or a forms issue??.
    Because these forms were in 9i before and recompiled to 10g recently.
    Could any one suggest me which could be the problem area?
    Thanks and regards
    Ajith

    Dear Ajith,
    if u r using Forms 10g then and not using webutil functionality and trying to do something on client side (eg. printing) then forms 10g tries to do it on application server and not on client. That's why your application is getting hanged up.
    Regards,
    Manish
    India

  • Recaptcha and Muse form issue

    I am trying to add Google recaptcha to a contact form in Muse and have added my keys, but I keep getting "The server encountered an error" upon form submission every time.
    Is there more I need to do than simply add the keys?
    - I added my domain to Google recaptcha; which shows me a site key and secret key
    - I added site key to public field in recaptcha form and secret key to private key in recaptcha form in Muse form widget
    - I uploaded my exported html to my web server and tested
    - I receive this error upon submission - "The server encountered an error"
    http://costanzaphotography.com
    What am I doing wrong??
    I am a CC subscriber and have all updates...,
    Thank you!!

    Hello,
    Please take a look at the link below. this explains all the possible troubleshooting for fix suxh issues for forms hosted on a third party host.
    Troubleshooting Muse Form Widgets Used on Third-Party Servers
    Regards
    Vivek

  • Stupidly partition hdd on window7 in IMAC A1311, and now I can not use the IMAC...... Need some help

    Just bought a used IMAC A1311 core 2 duo, and there are something called Bootcamp and Window7 on it, and i log in to Window7 and stupidly partition hdd on it, and i think it has formatted everything. now the window7 is error and I do hold (alt) key when I start up the machines , it show only the window7 hdd  and i don't see any Recoery HDD........what should i do? Really need some helps right now.........

    There are several models that use A1311. So I don't know exactly what model you have. If you received installer discs with the computer, then you will need to boot from Disc 1, erase the drive, and install Snow Leopard. Some models in the A1311 line can use Internet Recovery:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer.

  • In desperate need of help!! I feel like i'm using ...

    Hi, our broadband at home is stupidly slow.  Especially the wireless.  It feels like im running dial up from ten years ago.
    The problem has been ongoing for a long time, but i've only just returned home from uni, hence why it has taken me so long to ask for help.
    After reading on the forums about the shoddy service the india call centre gives, i decided it would be best to try the forums first.
    The internet is consistently slow, and it also seems to reach speeds of 0 kb/s at times, sometimes disconnecting me, other times not.
    These are my ADS stats, i will add my test results from the bt speed checker once it has finished.  FAST RESPONSES WOULD BE LOVED!  My net even died from trying to post this, and its the only thing im running.
    Bump: Twice.
    ADSL line status
    Connection information
    Line state
    Connected
    Connection time
    0 days, 1:21:33
    Downstream
    7,616 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Interleaved
    Noise margin (Down/Up)
    7.1 dB / 21.0 dB
    Line attenuation (Down/Up)
    18.0 dB / 11.0 dB
    Output power (Down/Up)
    19.8 dBm / 11.9 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    655 / 0
    CRC Errors (Down/Up)
    6 / 2147480000
    HEC Errors (Down/Up)
    nil / 0
    Error Seconds (Local)
    5
    Edit:
    This Test comprises of Best Effort Test:  -provides background information.
    Download  Speed
    158 Kbps
    0 Kbps
    7150 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 158 Kbps
     For your connection, the acceptable range of speeds is 600-7150 Kbps.
     Additional Information:
     Your DSL Connection Rate :7616 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 6500 Kbps
    Solved!
    Go to Solution.

    Your line stats look great, your sync speed is good, and your IP profile is correct.
    Your download speed is poor.
    This could be :
    1) Hot Virtual Path at the exchange - basically your exchange has run out of bandwidth.  Do you get similar poor download speeds at all times of day and night?  If you get much faster speeds in the early morning or during the daytime, then you need the help of the forum moderators.
    2) Your WiFi connection is not working properly.  Do you get similar poor download speeds when connected to the HomeHub via an ethernet cable?  It is worth trying if you haven't done so.
    3) Are you totally sure you don't have any other devices connected to your WiFi connection dragging down your bandwidth?  Go the the "Home Network" tab in the HomeHub admin screens and see what is connected
    4) Are you signed up with BT FON?  I wonder if other people are connecting to your hub and sucking up your bandwidth? (this can cost 0.5 Mbps)  Are you living in / near a very public area?
    Hope this helps.

  • Servlet with Issues writing to MySQL Database using JNDI

    I'm hung on one servlet for my site. It compiles fine, and is accessed fine by the JSP, but doesn't do as I intended: write my blog entries to the MySQL database!
    As mentioned in the title, I'm using JNDI for connection pooling, via META-INF/context.xml.
    I'm also using JDBC Realm with a form, and that's working just fine, so I'm sure my issue isn't context.xml, as it seems to be overriding Tomcat's context file just fine, at least for authentication.
    Below is the code from the servlet, to include the annotations:
    package projectEgress.web.blog;
    import java.io.*;
    import java.text.*;
    import java.sql.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.*;
    public final class blogInput {
         /* bean properties */
        private String blogHeader;
        private String blogSubheader;
        private String blogBody;
        private String externalLinks;
        Connection conn;
        Statement stmt;
            /* getters & setters */
            public String getBlogHeader() {
                return blogHeader;
            public void setBlogHeader(String blogHeader) {
                this.blogHeader = blogHeader;
            public String getBlogSubheader() {
                return blogSubheader;
            public void setBlogSubheader(String blogSubheader) {
                this.blogSubheader = blogSubheader;
            public String getBlogBody() {
                return blogBody;
            public void setBlogBody(String blogBody) {
                this.blogBody = blogBody;
            public String getExternalLinks() {
                return externalLinks;
            public void setExternalLinks(String externalLinks) {
                this.externalLinks = externalLinks;
            /* like it says, a void which writes to the database */
            public void writeToDatabase() {
                /* create the query string to fill the table */
                String query = "insert into blogEntry (blogHeader, blogSubheader, blogBody, externalLinks) values (\"" + this.blogHeader + "\", \"" + this.blogSubheader + "\", \"" + this.blogBody + "\", \""  + this.externalLinks + "\")";
                try {
                    /*establish the datasource and make the connection */
                    Context ctxt =  new InitialContext();
                    DataSource dsrc = (DataSource)ctxt.lookup("java:comp/env/jdbc/projectEgress");
                    conn = dsrc.getConnection();
                    stmt = conn.createStatement();
                    /* Add data to table 'blogEntry' in our database */
                    int input = stmt.executeUpdate(query);
                    /* close the connections */
                    stmt.close();
                    conn.close();
                    /* check for exceptions, ensure connections are closed */
                    } catch (SQLException sqlx) {
                        sqlx.printStackTrace();
                    } catch (Exception ex) {
                        ex.printStackTrace();
                    } finally {
                        if (stmt != null) {
                            try {
                                stmt.close();
                        } catch (SQLException sqlx) {}
                        if (conn != null) {
                            try {
                                conn.close();
                        } catch (SQLException sqlx) {}
            Here are the settings I have in META-INF/context.xml (sans Realm stuff, which works):
    <Context debug="1" reloadable="true">
        <Resource name="jdbc/projectEgress"
            auth="Container"
            type="javax.sql.DataSource"
            username="********"
            password="********"
            driverClassName="com.mysql.jdbc.Driver"
            url="jdbc:mysql://localhost:3306/projectEgress?autoReconnect=true"
            validationQuery="select 1"
            maxActive="15"
            maxIdle="8"
            removeAbandoned="true"
            removeAbandonedTimeout="120" />
        <WatchedResource>WEB-INF/web.xml</WatchedResource>
        <WatchedResource>META-INF/context.xml</WatchedResource>
    </Context>And, finally, the code I'm using in the JSP which calls the method (the form action is directed to this file's URL):
        <jsp:useBean id="blogInput" class="projectEgress.web.blog.blogInput">
        <jsp:setProperty name="blogInput" property="*" />
            <jsp:scriptlet>blogInput.writeToDatabase();</jsp:scriptlet>
        </jsp:useBean>
        -YES, I know I'm using a scriptlet in a JSP... I really don't want to create a custom tag to call the method, at least not until I'm far along enough in the project to justify creating a library... let's make it all work, first! :o)
    FINALLY, the form:
    <form action="/projectEgress/area51/blogInput" method="post" id="adminForm" enctype="application/x-www-form-urlencoded">
         <div>
            <span class="inputheader">Blog Header</span><br />
          <input type="text" name="blogHeader" size="35" class="form" /><br />
            <span class="inputheader">Blog SubHeader</span><br />
          <input type="text" name="blogSubheader" size="45" class="form" /><br />
            <span class="inputheader">Blog Body</span><br />
          <textarea class="content" name="blogBody" rows="9" cols="60"></textarea><br />
            <span class="inputheader">External Links</span><br />
          <input type="text" name="externalLinks" size="45" class="form" /><br />
          <input type="submit" value="Post!" class="submit" />
         </div>
        </form>As far as I can tell, it should work, and it doesn't throw any errors (in fact it shows the success message rather than the configured error page), but when I check the blogEntry table from the MySQL prompt, it responds with "Empty set".
    I've double checked to ensure that the table columns are present in MySQL and all the naming conventions line up and they do, so I figure it's my servlet that's broken.
    Advice? Ideas?
    Thanks in advance.
    Edited by: -Antonio on Apr 25, 2008 8:03 PM with additional info

    Okay, I changed a few things in the servlet code.
    For one, I'm trying a PreparedStatement in place of Statement. Don't ask me what made me think it would work any better, it just stores the sql query in cache, but I thought I'd just try something else.
    One thing this is allowing me to do is make the connection and statement (now PreparedStatement pStmt) objects local variables. It wouldn't allow me to do so before without giving me compile errors.
    package projectEgress.web.blog;
    import java.io.*;
    import java.text.*;
    import java.sql.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.*;
    public final class blogInput {
         /* bean properties */
        private String blogHeader;
        private String blogSubheader;
        private String blogBody;
        private String externalLinks;
            /* getters & setters */
            public String getBlogHeader() {
                return blogHeader;
            public void setBlogHeader(String blogHeader) {
                this.blogHeader = blogHeader;
            public String getBlogSubheader() {
                return blogSubheader;
            public void setBlogSubheader(String blogSubheader) {
                this.blogSubheader = blogSubheader;
            public String getBlogBody() {
                return blogBody;
            public void setBlogBody(String blogBody) {
                this.blogBody = blogBody;
            public String getExternalLinks() {
                return externalLinks;
            public void setExternalLinks(String externalLinks) {
                this.externalLinks = externalLinks;
            /* like it says, a void which writes to the database */
            public synchronized void writeToDatabase() {
                Connection conn = null;
                PreparedStatement pStmt = null;
                /* create the query string to fill the table */
                String Query = "INSERT INTO blogEntry (blogHeader, blogSubheader, blogBody, externalLinks) VALUES (\"" + this.blogHeader + "\", \"" + this.blogSubheader + "\", \"" + this.blogBody + "\", \""  + this.externalLinks + "\")";
                try {
                    /*establish the datasource and make the connection */
                    Context ctxt =  new InitialContext();
                    DataSource dsrc = (DataSource)ctxt.lookup("java:comp/env/jdbc/projectEgress");
                    conn = dsrc.getConnection();
                    pStmt = conn.prepareStatement(Query);
                    /* Add data to table 'blogEntry' in our database */
                    pStmt.executeUpdate();
                    pStmt.clearParameters();
                    /* close the connections */
                    pStmt.close();
                    conn.close();
                    /* check for exceptions, ensure connections are closed */
                    } catch (SQLException sqlx) {
                        sqlx.printStackTrace();
                    } catch (Exception ex) {
                        ex.printStackTrace();
                    } finally {
                        if (pStmt != null) {
                            try {
                                pStmt.close();
                        } catch (SQLException sqlx) {}
                        if (conn != null) {
                            try {
                                conn.close();
                        } catch (SQLException sqlx) {}
    }Someone out there has to have a thought on this.
    Even if it's just something they think probably won't work, so long as it gives me another angle to see this from.

  • Is there a way to export the form data directly in mysql or using php

    Hi,
    I am using Acrobat XI to collect form data and export it as csv/ xml, then I need to import it manually to mysql. Just wondering if there is any way to automate this process so I can just select/ upload the form file and data can be imported to mysql database. I know some php also and tried finding any script but not yet found. So if there is any php script to extract the data from filled form that would also work for me.
    Any help would be appreciated.
    Thanks

    The ADBC, Acrobat Data Base Connection, has been removed from Acrobat starting with version 8.
    LiveCycle created forms support database connectivity.
    See can adobe acrobat pro connect to the sql database? (JavaScript)

  • I want to use elements 11 with an external hard drive and need some help.

    I have a macbook pro and was fine using iphoto 09 as my image manager and editor. I soon filled my hard drive and purchased a 1tb external hard drive. I moved my iphoto library to the external drive while keeping iphoto on the macbook. I recently installed elements 11 and was using it as an external editor with iphoto. I began to play around with the organizer and found that I liked it. My question is how do I move my iphoto library to elements 11 organizer while still keeping the photos on the external hard drive.

    If you import from iPhoto into Elements Organizer, the files will be copied to your hard disk and all the organization done in iPhoto09 will be carried forward to Organizer catalog. This can be done if you have enough space on your hard disk. However if you want to use Organizer solely + not create duplicate copies of your images, you can import photos directly from the Hard Disk. Ensure to write all metadata to files within iPhoto so that when the same photos are imported into Organizer, the tagging done is brought along.
    Thanks
    Analeeb

  • Can I use The Airport Express as a router only. Need your help

    Hi there,
    I need to get some help from anyone for a good wireless router for a MacBook Pro. I want to know if anyone had a Airport Express as a router only of some help in this matter.
    Hope to get your feedback. Thanks
    From Samantha Kellar

    Can you explain a bit more?
    The Apple Express is a router. The new Apple Express has a LAN port so you can have a device on a wired connection.
    Are you talking about removing the modem and only having the Airport Express?

  • I dont want to use adobe catalyst with my adobe muse forms!

    I dont want to use adobe catalyst with my adobe muse forms!
    I dont want to use third party plugins... Why? When I already bought Adobe Muse.
    I just want to create a form in MUSE and have it simple and working - without catalyst.

    So its really very good news for me, I will try it this week.
    Thanks a lot mac_heibu, sorry for mismatch information.
    You made my day, bro.

  • Popoup message "there was a problem connecting to the server"

    i have also upgraded to Lion and keep getting the popoup message "there was a problem connecting to the server" i do not use time machine and that is off i have a macbook pro and an iMac the error is on both, i have also removed the shares from Go in finder. HELP Please or do i return to the dark side "windows 7"

    Hi sorry for the delay in this reply but have been working away, this pop up message happens only when both the imac and macbook pro is on, and if you try to connect using the correct user details it just keeps popping up, it does the same when you cancel / ignore it also.
    We have reverted to only using one mac at a time and this is to say the least very annoying, our iphones and ipad do not have the same issues. There are plenty of posts suggesting that the same thing happened with time Machine but we do not use this so the fixs do not work. If i knew how i would revert back to snow lepard .

  • How to add a new font into Report Builder and Oracle Forms/Reports Server?

    Hi,
    I've searched the forum and can't find this being discussed.
    My developers run Report Builder 10.1.2.0.2 on their XP laptops.
    Their reports run (in production) on Oracle Forms/Reports Server 10.1.2.0.2.
    This server runs on MS Windows 2003, SP2.
    They've got a client who wants reports using the "Garamond Western" font.
    So....how do I get this font onto the developer's Report Builder laptops, and onto the Oracle Forms/Reports Server?
    I've moved various 'Garamond' fonts into C:\WINDOWS\FONTS on both the laptops and the server, but neither seem to recognize it.
    Thanks for your help.

    Thanks.
    This answers 1/2 of my question.
    The developer can now use Report Builder on his laptop, with the new fonts.
    But when he moves this new Report to the Oracle Application Server/Forms-Reports Server, it fails to use the new fonts.
    The Oracle App Server/Forms-Report Server is Version 10.1.2.0.2. It runs on MS Windows 2003, SP2.
    I have installed the exact same fonts on this server, into C:\WINDOWS\Fonts.
    I have used REGEDIT to change REPORTS_PATH....and placed C:\WINDOWS\Fonts; as the first value in this field.
    I have then stopped and restarted the Forms-Reports Server.

  • I keep getting an error message saying "There was a problem connecting to the server.  URLs with the type "file:" are not supported."  Can someone help me get rid of it.

    I keep getting an error message saying "There was a problem connecting to the server.  URLs with the type "file:" are not supported"  Can someone help me locate and get rid of this error.

    Open the Time Machine pane in System Preferences. If it shows that Time Machine is ON, click the padlock icon in the lower left corner, if necessary, to unlock it. Scroll to the bottom of the list of backup drives and click Add or Remove Backup Disk. Remove all the disks, then add them back. Quit System Preferences. Test.

  • Want to use Mac's for public access in public library -- NEED HELP please.

    We have a grant to replace all of the computers in our small town public library. I would like to be able to consider Macintosh computers (would Love to, actually) but have not been able to find any information about how to do that.
    Biggest issue is "access management". We have a system for PCs that logs on a patron by using their library card number and a PIN. That system then allots them an hour or two to use the computer, times them, warns them when time is running out and so on, and it also manages printer access and charges a few cents per page to print.
    We need that for Macs. The software maker gets all attitude about "we have 2000 libraries with PC's and Zero with Macs." ARGH!
    Help help help.
    Also... please point me to anyone at Apple that knows what a public library is and would like to help us overcome this attitude problem.
    We have a grant and can buy the computers. We just need some help to get it done.
    Thanks!

    This article:
    http://docs.info.apple.com/article.html?artnum=304035
    And the fact there is Smart Card access in:
    http://www.apple.com/macosx/features/300.html#security
    Suggest you may be able to do this with the operating system itself. Apple Support has specialists you can request to speak to about how to setup such systems when you call them:
    http://www.apple.com/contact/phone_contacts.html
    I've never setup such a system, but given that other features I've been able to ask about and get specialists to help me, suggest that's probably the most logical course to go.
    Message was edited by: a brody

  • Problem with Blob key legnth in MySQL & JBoss

    Hi,
    I am using MySQL 3.23.55, JBOSS 3.0.6, EJB 2.0, CMP 2.0
    I have configured the database, the tables are created but it stops at one place.In the type mappings-mappings , i have the following in the standardjbosscmp-jdbc.xml
    java-type jdbc-type sql-type
    java.lang.Object Blob LongBlob
    I get the following error while creating one of the fields at the time of deployment.
    org.jboss.deployment.DeploymentException: Error while creating table; - nested throwable: (java.sql.SQLException: General error, message from server: "BLOB column 'start_ip' used in key specification without a key length")
    I have searched on the net and came up with the following,
    it seems that we need to specify the column legnth in the create table statement. I would have to use the following
    CREATE INDEX part_of_name ON customer (name(10))
    if i was directly working on the database @ command line.
    But i am using CMP, so how do i fix this ?
    Any help is appreciated
    Regards
    Meka Toka

    That is what i said in my post
    I have searched on the net and came up with the following,
    it seems that we need to specify the column legnth in the create table statement. I would have to use the following
    CREATE INDEX part_of_name ON customer (name(10))
    if i was directly working on the database @ command line.
    My question now is
    how do i do this in CMP
    Regards
    Meka Toka

Maybe you are looking for