MySQL 5.0.34 Upgrade

Hi,
    1, I'm using BOE XI R3.1 SP3 and currently on the canned MySQL 5.0.34.  Any suggestions which MySQL I should use to remediate the security risks ? The last 5.0 version is 5.0.92.  Should I jump to 5.5 ?
   2, If I'm using 5.0.92, can I install the package over the existing version ?
Thanks In Advance.

Just upgraded to PHP 5.1.6 (sttill running against MySQL 5.0.24) and everything is working now.  I'm not exactly sure what the problem was, but I'm pretty excited to have my kplaylist server running again. 
Cheers!
Darin

Similar Messages

  • MySQL & PHP issues since upgrade

    Little bit of background: I ran an arch server about two years ago, basically a personal web server (for about a year).  Had apache, mysql and php running nicely on it using the basic configurations with some minor changes.
    Now, present day.  I have recently installed Arch again and once the upgrades were announced, I held off on installing the LAMP applications.  So, Friday I installed them (as oppsed to upgrading), and thought I had them all working fine.  Apache was running, mysql was running (command line access was working well with one exception, more on that later), and php was being parsed.  When I tried to pull data out of a database, i was getting "call to undeclared function mysql_pconnect()."  I googled the error and searched the Arch forums, and everything said to make sure php was compiled with the '--with-mysql' option.  I checked that using phpinfo(), and indeed it was, but it was '--with-mysql=/shared', /usr' (or something similar).  What I ended up doing was removing the arch package and recompiling php myself using '--with-mysql' (no arguments) and it works beautifully.  So, basically, is the arch configuration for php correct?
    Also, issue number two, I have created a non-root user in mysql, but when i try to log in i receive access denied for 'user@localhost' (using password: YES).  Did i miss a setting that won't allow me to log in as anyone but root?
    Thanks in advance. 

    simple, edit your php.ini like so:
    BEFORE:
    1250:;extension=mysql.so
    AFTER
    1250:extension=mysql.so
    no need to recompile php.
    ps: "grep -n mysql.so /etc/php.ini"

  • Can't install Perl DBI or DBD::mysql after Mountain Lion upgrade

    I recently upgraded to Mountain Lion and found that my Perl DBI scripts stopped working, with the error message "Can't locate DBD/mysql.pm in @INC".
    The last time this happened, after upgrading to Lion, the solution was to install the new version of Xcode. Then I was able to use the Perl CPAN module to install DBI and DBD::mysql. (MySQL is already installed and running with no problem on the Mountain Lion machine.)
    Now I have installed Xcode 4.5.1, and tried
    mrb% sudo perl -MCPAN -e shell
    [then CPAN configures itself]
    cpan[1]> install DBI
    and it fails with this final message:
    /System/Library/Perl/5.12/darwin-thread-multi-2level/CORE/perl.h:583:11: fatal error:
          'sys/types.h' file not found
    #       include <sys/types.h>
                    ^
    1 error generated.
    make: *** [Perl.o] Error 1
      TIMB/DBI-1.622.tar.gz
      /Developer/usr/bin/make -- NOT OK
    'YAML' not installed, will not store persistent state
    Running make test
      Can't test without successful make
    Running make install
      Make had returned bad status, install seems impossible
    Failed during this command:
    TIMB/DBI-1.622.tar.gz                        : make NO
    Can anybody help?

    Here is a link to a resolution in Lion. It may also solve your Mountain Lion Perl DBD issue as well.
    If you run the command below before executing your Perl script the library is found and all is well!
    export DYLD_LIBRARY_PATH="/usr/local/mysql/lib:$DYLD_LIBRARY_PATH"
    Put this in your .bashrc or .bash_profile.
    On Apple StackExchange, Matthew Weiss had another approach.
    I found on another website the following command
    $ sudo perl -MCPAN -e 'CPAN::Shell->notest(install => CPAN::Shell->r)'
    This updated all my perl modules and all is back to normal. Not sure why or what, but don't care that it is working now.

  • Lighttpd + php + mysql not working after upgrade

    Hello!
    I have been using Arch for a couple of years now and I love it. However, recently I made an upgrade (pacman -Syu) on one web server and I can't get the lighttpd server back to working state. If I start it with "/etc/rc.d/lighttpd start" it looks like everything is ok. Even "/etc/rc.d/lighttpd status" returns that it is [STARTED] , but when I try to stop it, it returns FAIL. I assume that something is preventing the lighttpd to start, but there is nothing in the lighttpd log, neither in error.log. I have also tried to reinstall all the packages, but with no difference.I have to fix it, but I don't know where to start. Thank you for any hints you may provide.
    Best regards!
    Jernej

    Here's the content of /etc/rc.d/lighttpd I'm not that smart to figure out the name of the executable.
    =====================================
    #!/bin/bash
    daemon_name=lighttpd
    . /etc/rc.conf
    . /etc/rc.d/functions
    get_pid() {
            pidof -o %PPID $daemon_name
    case "$1" in
      start)
        stat_busy "Starting $daemon_name daemon"
        PID=$(get_pid)
        if [ -z "$PID" ]; then
          [ -f /var/run/$daemon_name.pid ] && rm -f /var/run/$daemon_name.pid
          # RUN
          $daemon_name -f /etc/lighttpd/lighttpd.conf
          if [ $? -gt 0 ]; then
            stat_fail
            exit 1
          else
            echo $(get_pid) > /var/run/$daemon_name.pid
            add_daemon $daemon_name
            stat_done
          fi
        else
          stat_fail
          exit 1
        fi
      stop)
        stat_busy "Stopping $daemon_name daemon"
        PID=$(get_pid)
        # KILL
        [ ! -z "$PID" ] && kill $PID &> /dev/null
        if [ $? -gt 0 ]; then
          stat_fail
          exit 1
        else
          rm -f /var/run/$daemon_name.pid &> /dev/null
          rm_daemon $daemon_name
          stat_done
        fi
      restart)
        $0 stop
        sleep 3
        $0 start
      status)
        stat_busy "Checking $daemon_name status";
        ck_status $daemon_name
        echo "usage: $0 {start|stop|restart|status}"
    esac
    exit 0
    =====================================

  • Dbd::mysql dead following upgrade

    I've been using a combination of apache, PHP, perl, and MySQL for web development since 10.4, which relies upon the DBD::mysql module available from CPAN. The 10.5 upgrade broke my DBD::mysql installation, and so did this one.
    On 10.5, I had MySQL 5.0.51 running nicely with DBD::mysql-4.010 and Perl 5.8.8. Following the uprage, the MySQL installation continued to work properly, but programs attempting to use DBI for MySQL encountered the following error:
    install_driver(mysql) failed: Can't locate DBD/mysql.pm in @INC (@INC contains: /Library/Perl/Updates/5.8.9 /System/Library/Perl/5.8.9/darwin-thread-multi-2level /System/Library/Perl/5.8.9 /Library/Perl/5.8.9/darwin-thread-multi-2level /Library/Perl/5.8.9 /Network/Library/Perl/5.8.9/darwin-thread-multi-2level /Network/Library/Perl/5.8.9 /Network/Library/Perl /System/Library/Perl/Extras/5.8.9/darwin-thread-multi-2level /System/Library/Perl/Extras/5.8.9 /Library/Perl/5.8.8 /Library/Perl/5.8.6 /Library/Perl/5.8.1 .) at (eval 4) line 3.
    Perhaps the DBD::mysql perl module hasn't been fully installed,
    or perhaps the capitalisation of 'mysql' isn't right.
    Available drivers: DBM, ExampleP, File, Gofer, Proxy, SQLite, Sponge.
    The perl installation went from 5.8.8 to 5.8.9 during the upgrade. I have had problems before interfacing 64-bit MySQL with 32-bit DBD::mysql, and before the upgrade I was running only 32-bit versions of MySQL.
    I have tried to reinstall both DBI and DBD::mysql in both 64-bit and 32-bit perl and MySQL. The make of DBD::mysql fails with the following error:
    cflags (mysql_config) = -I/usr/local/mysql/include -g -Os -arch x86_64 -fno-common -DP1003_1BVISIBLE -DSIGNALWITH_VIOCLOSE -DSIGNALSDONT_BREAKREAD -DIGNORESIGHUPSIGQUIT -DDONTDECLARE_CXA_PUREVIRTUAL
    embedded (mysql_config) =
    libs (mysql_config) = -L/usr/local/mysql/lib -lmysqlclient -lz -lm -lmygcc
    mysql_config (guessed ) = mysql_config
    nocatchstderr (default ) = 0
    nofoundrows (default ) = 0
    ssl (guessed ) = 0
    testdb (default ) = test
    testhost (default ) =
    testpassword (default ) =
    testsocket (default ) =
    testuser (guessed ) = root
    To change these settings, see 'perl Makefile.PL --help' and
    'perldoc INSTALL'.
    Multiple copies of Driver.xst found in: /Library/Perl/5.10.0/darwin-thread-multi-2level/auto/DBI/ /System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level/auto/DBI/ at Makefile.PL line 902
    Using DBI 1.609 (for perl 5.010000 on darwin-thread-multi-2level) installed in /Library/Perl/5.10.0/darwin-thread-multi-2level/auto/DBI/
    Writing Makefile for DBD::mysql
    [email protected] 17:01:08 ~/.bin/src/DBD-mysql-4.012 521 $ sudo make
    gcc-4.2 -c -I/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/DBI -I/usr/local/mysql/include -g -Os -arch x86_64 -fno-common -DP1003_1BVISIBLE -DSIGNALWITH_VIOCLOSE -DSIGNALSDONT_BREAKREAD -DIGNORESIGHUPSIGQUIT -DDONTDECLARE_CXA_PUREVIRTUAL -DDBDMYSQL_INSERT_ID_ISGOOD -g -arch x86_64 -arch i386 -arch ppc -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include -Os -DVERSION=\"4.012\" -DXS_VERSION=\"4.012\" "-I/System/Library/Perl/5.10.0/darwin-thread-multi-2level/CORE" dbdimp.c
    dbdimp.c: In function ‘alloc_param’:
    dbdimp.c:113: warning: format not a string literal and no format arguments
    There are additional, similar error messages, but there's a length limit on posts apparently.
    Root password was changed to blank to troubleshoot the install. I've tried setting the default perl to 5.8.9 as a system-wide paramter, but the DBI build still go into the 5.10.0 directory. I tried to compile DBI in 32-bit mode by using perl 5.8.9, but this build errors out . I've tried to set the perl 5.10.0 compiler to 32-bit mode, but that hasn't helped either.
    I can't get DBD::mysql to run correctly no matter what I've tried. Can someone please shed some light on the subject?

    Answer (of sorts) posted here:
    http://discussions.apple.com/message.jspa?messageID=10155786#10155786

  • [SLVD] MySQL Query Browser (1.2.12) hangs when changing schma/database

    After a rather big upgrade yesterday (see paste below) I have got a problem with MySQL query browser which is found in package mysql-gui-tools. Everything else seems to be okay, but after upgrading mysql-gui-tools from 5.0r12-3 to 5.0r14-1 (..and now, after another update, its at 5.0r14-2) it is no longer able to refresh schema/databases. Every time I try to change/refresh schema in the schema menu to the right the program hangs and I have to kill it. A refresh icon appears as normal to the left of the schema I'm trying to refresh, but that icon too has frozen. I am however able to execute normal SELECT queries etc if I write the full "path" to the table in the SQL query, but when I try a USE query the same thing happens.
    I have done some searching on the Internet about this and found this thread to be interesting. Too bad it's from July 2007..
    I tried to downgrade to the old version of query browser, but then I got this problem:
    /usr/bin/mysql-query-browser-bin: error while loading shared libraries: libmysqlclient_r.so.15: cannot open shared object file: No such file or directory
    ..So I guess theres a dependency problem here with the old version.
    Has anyone else got any problem with the MySQL Query Browser after upgrade or has any ideas for a solution?
    Log from pacman:
    [2009-04-12 13:52] synchronizing package lists
    [2009-04-12 13:52] starting full system upgrade
    [2009-04-12 13:55] upgraded xf86-input-evdev (2.1.2-1 -> 2.2.1-1)
    [2009-04-12 13:55] upgraded xorg-server (1.5.3-5 -> 1.6.0-3)
    [2009-04-12 13:56] synchronizing package lists
    [2009-04-12 13:56] starting full system upgrade
    [2009-04-12 13:56] upgraded glib2 (2.20.0-1 -> 2.20.1-1)
    [2009-04-12 13:56] upgraded libcap (1.10-2 -> 2.16-3)
    [2009-04-12 13:56] upgraded avahi (0.6.24-1 -> 0.6.24-3)
    [2009-04-12 13:56] upgraded cdrkit (1.1.9-1 -> 1.1.9-2)
    [2009-04-12 13:56]
    [2009-04-12 13:56] >>> Deluge's daemon is running with the "deluge" user. The default download directory is /srv/deluge/
    [2009-04-12 13:56]
    [2009-04-12 13:56] upgraded deluge (1.1.5-1 -> 1.1.6-3)
    [2009-04-12 13:56] upgraded jack-audio-connection-kit (0.109.2-2 -> 0.116.2-1)
    [2009-04-12 13:56] upgraded gstreamer0.10-bad-plugins (0.10.11-2 -> 0.10.11-3)
    [2009-04-12 13:56] upgraded hdparm (9.12-1 -> 9.14-1)
    [2009-04-12 13:56] upgraded iptables (1.4.2-1 -> 1.4.3.1-1)
    [2009-04-12 13:56] upgraded kbproto (1.0.3-1 -> 1.0.3-2)
    [2009-04-12 13:57] upgraded kdelibs (4.2.2-3 -> 4.2.2-4)
    [2009-04-12 13:57] upgraded kernel26-firmware (2.6.28-1 -> 2.6.29-1)
    [2009-04-12 13:59] >>> Updating module dependencies. Please wait ...
    [2009-04-12 13:59] >>> MKINITCPIO SETUP
    [2009-04-12 13:59] >>> ----------------
    [2009-04-12 13:59] >>> If you use LVM2, Encrypted root or software RAID,
    [2009-04-12 13:59] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2009-04-12 13:59] >>> More information about mkinitcpio setup can be found here:
    [2009-04-12 13:59] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2009-04-12 13:59]
    [2009-04-12 13:59] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2009-04-12 13:59] ==> Building image "default"
    [2009-04-12 13:59] ==> Running command: /sbin/mkinitcpio -k 2.6.29-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2009-04-12 13:59] :: Begin dry run
    [2009-04-12 13:59] :: Parsing hook [base]
    [2009-04-12 13:59] :: Parsing hook [udev]
    [2009-04-12 13:59] :: Parsing hook [autodetect]
    [2009-04-12 13:59] :: Parsing hook [pata]
    [2009-04-12 13:59] :: Parsing hook [scsi]
    [2009-04-12 13:59] :: Parsing hook [sata]
    [2009-04-12 13:59] :: Parsing hook [usbinput]
    [2009-04-12 13:59] :: Parsing hook [keymap]
    [2009-04-12 13:59] :: Parsing hook [filesystems]
    [2009-04-12 13:59] :: Generating module dependencies
    [2009-04-12 13:59] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2009-04-12 13:59] ==> SUCCESS
    [2009-04-12 13:59] ==> Building image "fallback"
    [2009-04-12 13:59] ==> Running command: /sbin/mkinitcpio -k 2.6.29-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2009-04-12 13:59] :: Begin dry run
    [2009-04-12 13:59] :: Parsing hook [base]
    [2009-04-12 13:59] :: Parsing hook [udev]
    [2009-04-12 13:59] :: Parsing hook [pata]
    [2009-04-12 13:59] :: Parsing hook [scsi]
    [2009-04-12 13:59] :: Parsing hook [sata]
    [2009-04-12 13:59] :: Parsing hook [usbinput]
    [2009-04-12 13:59] :: Parsing hook [keymap]
    [2009-04-12 13:59] :: Parsing hook [filesystems]
    [2009-04-12 13:59] :: Generating module dependencies
    [2009-04-12 14:00] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2009-04-12 14:00] ==> SUCCESS
    [2009-04-12 14:00] upgraded kernel26 (2.6.28.8-1 -> 2.6.29.1-3)
    [2009-04-12 14:00] upgraded klibc-udev (140-1 -> 141-1)
    [2009-04-12 14:00] upgraded libavc1394 (0.5.3-1 -> 0.5.3-2)
    [2009-04-12 14:00] upgraded libcddb (1.3.0-3 -> 1.3.2-1)
    [2009-04-12 14:00] upgraded libdatrie (0.1.2-1 -> 0.2.1-1)
    [2009-04-12 14:00] upgraded libdrm (2.3.1-3 -> 2.4.9-1)
    [2009-04-12 14:00] upgraded libdvdread (0.9.7-1 -> 0.9.7-2)
    [2009-04-12 14:00] upgraded libfontenc (1.0.4-1 -> 1.0.4-2)
    [2009-04-12 14:00] upgraded libid3tag (0.15.1b-2 -> 0.15.1b-3)
    [2009-04-12 14:00] upgraded libmatroska (0.8.1-1 -> 0.8.1-2)
    [2009-04-12 14:00] upgraded libmpd (0.16.1-1 -> 0.18.0-1)
    [2009-04-12 14:00] upgraded libmysqlclient (5.0.77-1 -> 5.1.33-1)
    [2009-04-12 14:00] upgraded libogg (1.1.3-1 -> 1.1.3-2)
    [2009-04-12 14:00] upgraded libsamplerate (0.1.6-1 -> 0.1.7-1)
    [2009-04-12 14:00] upgraded libthai (0.1.9-1 -> 0.1.11-1)
    [2009-04-12 14:00] upgraded libx11 (1.2-1 -> 1.2.1-1)
    [2009-04-12 14:00] installed libftdi (0.15-1)
    [2009-04-12 14:00] upgraded lirc-utils (0.8.4-1 -> 0.8.5pre2-1)
    [2009-04-12 14:00] upgraded m4 (1.4.12-1 -> 1.4.13-1)
    [2009-04-12 14:00] upgraded man-db (2.5.4-2 -> 2.5.5-1)
    [2009-04-12 14:00] upgraded man-pages (3.19-1 -> 3.20-1)
    [2009-04-12 14:00] upgraded nvidia-utils (180.29-3 -> 180.44-1)
    [2009-04-12 14:00] installed dri2proto (1.99.3-1)
    [2009-04-12 14:01] upgraded mesa (7.2-1 -> 7.4-1)
    [2009-04-12 14:01] upgraded mpfr (2.3.2-2 -> 2.4.1-1)
    [2009-04-12 14:01] upgraded mpg123 (1.7.1-4 -> 1.7.2-1)
    [2009-04-12 14:01] upgraded mysql-clients (5.0.77-1 -> 5.1.33-1)
    [2009-04-12 14:01] upgraded mysql (5.0.77-3 -> 5.1.33-1)
    [2009-04-12 14:01] upgraded mysql-gui-tools (5.0r12-3 -> 5.0r14-1)
    [2009-04-12 14:01] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2009-04-12 14:01] upgraded nvidia (180.29-3 -> 180.44-1)
    [2009-04-12 14:01] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2009-04-12 14:01] upgraded pacman-mirrorlist (20090108-1 -> 20090405-1)
    [2009-04-12 14:01] upgraded pango (1.24.0-1 -> 1.24.0-2)
    [2009-04-12 14:01] upgraded php (5.2.9-2 -> 5.2.9-3)
    [2009-04-12 14:01] upgraded pm-utils (1.2.4-3 -> 1.2.5-1)
    [2009-04-12 14:01] installed perl-xyne-common (0.01-5)
    [2009-04-12 14:01] installed perl-html-tagset (3.20-1)
    [2009-04-12 14:01] installed perl-html-parser (3.60-1)
    [2009-04-12 14:01] installed perl-libwww (5.825-1)
    [2009-04-12 14:01] installed perl-xyne-arch (0.03-5)
    [2009-04-12 14:01] ######################
    [2009-04-12 14:01] ## IMPORTANT NOTICE ##
    [2009-04-12 14:01] ######################
    [2009-04-12 14:01] Powerpill options and configuration file syntax have changed with
    [2009-04-12 14:01] version 16.0. Please remove old configuration files and use the
    [2009-04-12 14:01] default configuration file at /etc/powerpill.conf as a template for new
    [2009-04-12 14:01] ones. Please see the man page for information on the command-line options.
    [2009-04-12 14:01] upgraded powerpill (15.12-1 -> 16.0-5)
    [2009-04-12 14:01] upgraded python-numpy (1.2.1-4 -> 1.3.0-1)
    [2009-04-12 14:02] upgraded qt (4.5.0-3 -> 4.5.0-4)
    [2009-04-12 14:02] upgraded qt3 (3.3.8-9 -> 3.3.8-10)
    [2009-04-12 14:02] upgraded redland (1.0.8-1 -> 1.0.8-3)
    [2009-04-12 14:02] upgraded tdb (3.3.1-1 -> 3.3.3-1)
    [2009-04-12 14:02] upgraded smbclient (3.3.1-1 -> 3.3.3-1)
    [2009-04-12 14:02] upgraded subversion (1.6.0-2 -> 1.6.1-2)
    [2009-04-12 14:02] upgraded syslog-ng (3.0.1-4 -> 3.0.1-6)
    [2009-04-12 14:02] upgraded tzdata (2009d-1 -> 2009e-1)
    [2009-04-12 14:02] upgraded udev (140-2 -> 141-1)
    [2009-04-12 14:02] upgraded xf86-input-keyboard (1.3.2-1 -> 1.3.2-2)
    [2009-04-12 14:02] upgraded xf86-input-mouse (1.3.0-1 -> 1.4.0-2)
    [2009-04-12 14:02] upgraded xf86-video-vesa (2.1.0-1 -> 2.2.0-1)
    [2009-04-12 14:02] upgraded xfce4-mpc-plugin (0.3.3-2 -> 0.3.3-3)
    [2009-04-12 14:02] upgraded xorg-server-utils (7.4-3 -> 7.4-4)
    [2009-04-12 14:02] upgraded xorg-utils (7.4-2 -> 7.4-3)
    Last edited by siaco (2009-04-14 21:42:10)

    I found the error on this. In the current PGKBUILD found in AUR, the patch mysql-gui-tools.chema_change_freeze_bug.patch is no longer applied.
    I downloaded all related files to this package and built it myself now, with some changes to PGKBUILD and the mysql-gui-tools.chema_change_freeze_bug.patch. It works again :-)
    New PGKBUILD:
    # $Id: PKGBUILD,v 1.14 2009/04/12 11:52:45 dsa Exp $
    # Maintainer: Douglas Soares de Andrade <[email protected]>
    # Contributor: Vinay S Shastry <[email protected]>
    pkgname=mysql-gui-tools
    pkgver=5.0r14
    pkgrel=2
    arch=('i686' 'x86_64')
    pkgdesc="Set of programs to manage and interact with a MySQL server."
    url="http://www.mysql.com/products/tools/"
    license=('GPL')
    source=(http://mirrors.uol.com.br/pub/mysql/Downloads/MySQLGUITools/$pkgname-$pkgver.tar.gz
    bad-char.patch
    mysql-gui-tools-sigc_2.1.1_api_fixes.diff
    mysql-gui-tools-5.0_p12-deprecated-gtk+-api.patch
    mysql-gui-tools-gcc43.patch
    mysql-gui-tools.chema_change_freeze_bug.patch)
    depends=('gtkmm' 'gtkhtml' 'libmysqlclient' 'pcre')
    replaces=('mysql-administrator' 'mysql-query-browser')
    conflicts=('mysql-administrator' 'mysql-query-browser')
    provides=('mysql-gui-common' 'mysql-administrator' 'mysql-query-browser')
    makedepends=('pkgconfig' 'lua' 'libxml2' 'libgnomeprint')
    options=('!makeflags')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    # Patch from mysql.com to fix the freeze when selecting a schema
    patch -p1 < ../mysql-gui-tools.chema_change_freeze_bug.patch || return 1
    # Patch to make 5.0r14 compile
    patch -Np1 < $startdir/src/bad-char.patch
    patch -Np1 < $startdir/src/mysql-gui-tools-sigc_2.1.1_api_fixes.diff
    patch -Np1 < $startdir/src/mysql-gui-tools-gcc43.patch
    patch -Np0 < $startdir/src/mysql-gui-tools-5.0_p12-deprecated-gtk+-api.patch
    cd $startdir/src/$pkgname-$pkgver/common
    sh autogen.sh
    ./configure --prefix=/usr --datarootdir=/usr/share --with-gtkhtml=libgtkhtml-3.14 || return 1
    make || return 1
    make DESTDIR=$startdir/pkg install || return 1
    cd ..
    cp -R common mysql-gui-common
    cd $startdir/src/$pkgname-$pkgver/administrator
    sh autogen.sh
    ./configure --prefix=/usr --datarootdir=/usr/share --with-gtkhtml=libgtkhtml-3.14 || return 1
    make || return 1
    make DESTDIR=$startdir/pkg install || return 1
    cd $startdir/src/$pkgname-$pkgver/query-browser
    sh autogen.sh
    ./configure --prefix=/usr --datarootdir=/usr/share --with-gtkhtml=libgtkhtml-3.14 || return 1
    make CFLAGS="${CFLAGS} -D_GNU_SOURCE" || return 1
    make DESTDIR=$startdir/pkg install || return 1
    #cd $startdir/src/$pkgname-$pkgver/mysql-workbench
    #patch -p1 < ../../mysql-gui-tools-5.0_p12-workbench-lua.patch
    #./configure --prefix=/usr --with-gtkhtml=libgtkhtml-3.14 || return 1
    #make || return 1
    #make DESTDIR=$startdir/pkg install
    # Some adjusts to make mysql-workbench run
    #cd $startdir/pkg/usr/bin
    #mv mysql-workbench mysql-wb
    #mv mysql-workbench-bin mysql-wb-bin
    #install -m755 $startdir/src/mysql-workbench.sh mysql-workbench
    #rm -rf $startdir/pkg/usr/lib/
    # Fixed startup scripts
    install -m755 $startdir/mysql-administrator $pkgdir/usr/bin
    install -m755 $startdir/mysql-query-browser $pkgdir/usr/bin
    md5sums=('b8efefbf20b7264c8f3afd34424467d7'
    '4279c75bb5e6c2bfcb16c98817d55b80'
    '4625629385142862cd01d37f814d5e80'
    '33205d45329ab4fa4096b6b298a60b2c'
    '1368384dac87bc0a64adb774ab2e6cbd'
    '2ff840932405f7a6a6863f633a639fe9')
    New mysql-gui-tools.chema_change_freeze_bug.patch: (only changes to paths in file. Don't know if this was really needed, but I belive so.)
    diff -ruN mysql-gui-tools-5.0r11.ORIG/query-browser/source/linux/MQQueryDispatcher.cc mysql-gui-tools-5.0r11/query-browser/source/linux/MQQueryDispatcher.cc
    --- mysql-gui-tools-5.0r11.ORIG/query-browser/source/linux/MQQueryDispatcher.cc 2007-02-21 01:31:19.000000000 +0000
    +++ mysql-gui-tools-5.0r11/query-browser/source/linux/MQQueryDispatcher.cc 2007-11-09 15:31:38.000000000 +0000
    @@ -558,8 +558,8 @@
    Gtk::Main::instance()->run();
    - while(!req->is_complete())
    +// while(!req->is_complete())
    +// ;
    return sps;
    I hope this helps anyone else who needs to fix this!

  • Database Error after upgrading to CF8

    Hello,
    I have some applications which are running under CF MX 6.1
    and MySQL 4.0. For the Database connection I use the J-Connector of
    MySQL.
    Now I upgraded one server to CF8 and MySQL 5.0. For the
    database connection I use the intern connector for MySQL-Databases
    in the CF-Administrator.
    Now I get an error in some cases: "Incorrect decimal value:
    '' for column 'feld' at row 1 ".
    This error appears when I try to insert a value of "" in a
    decimal field. On my old server this works fine and MySQL
    automatically insert "0" in the field. Now I first thought that
    this is a problem of MySQL, but when I use a SQL-Tool like
    MySQL-Front and use the exact same query, it works. One example:
    INSERT INTO tabelle(id,feld)
    VALUES ("1","")
    The field "feld" is a decimal field. When I use a SQL-Tool
    the line is inserted and the value of feld in the db is "0". When I
    use this query in CF8 the error "Incorrect decimal value" appears.
    What can I do that CF8 is running like CF6 in this case, because I
    don't want to change all my applications.
    Thanks a lot,
    Julia

    from mysql 5 manual:
    As of MySQL 5.0.3, DECIMALand NUMERICvalues are stored in
    binary format.
    Previously, they were stored as strings.
    you now have to always provide a value to be inserted into
    the field.
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Lots of warnings when upgrading ghc and haskell libraries

    Heres the list of packages I upgraded today:
    cups 1.5.3-4 1.5.3-5 -0.73 MiB 6.87 MiB
    ghc 7.4.1-2 7.4.2-1 6.09 MiB 60.13 MiB
    haskell-mtl 2.0.1.0-4 2.1.1-1 0.43 MiB 0.19 MiB
    haskell-random 1.0.1.1-1 1.0.1.1-2 -0.05 MiB 0.29 MiB
    haskell-syb 0.3.6-1 0.3.6.1-1 0.06 MiB 0.21 MiB
    haskell-transformers 0.2.2.0-4 0.3.0.0-1 2.39 MiB 0.58 MiB
    haskell-utf8-string 0.3.7-1 0.3.7-2 -0.04 MiB 0.20 MiB
    haskell-x11 1.5.0.1-3 1.6.0-1 1.96 MiB 1.82 MiB
    haskell-x11-xft 0.3.1-3 0.3.1-4 0.01 MiB 0.09 MiB
    libcups 1.5.3-4 1.5.3-5 -0.01 MiB 0.28 MiB
    libmysqlclient 5.5.24-1 5.5.25-1 0.00 MiB 2.97 MiB
    mysql 5.5.24-1 5.5.25-1 0.57 MiB 8.45 MiB
    mysql-clients 5.5.24-1 5.5.25-1 0.00 MiB 0.81 MiB
    xmobar 0.14-2 0.15-1 0.08 MiB 0.45 MiB
    xmonad 0.10-3 0.10-4 0.09 MiB 0.71 MiB
    xmonad-contrib 0.10-3 0.10-4 0.76 MiB 4.32 MiB
    And here is some of the warnings I got when upgrading:
    ==> Unregistering cabalized packages...
    unregistering xmonad-0.10 would break the following packages: xmonad-contrib-0.10 (ignoring)
    unregistering X11-1.5.0.1 would break the following packages: X11-xft-0.3.1 (ignoring)
    ==> Done.
    ( 3/16) upgrading ghc [########################################################################################] 100%
    ==> All cabalized packages need to be reinstalled now.
    ==> See /usr/share/haskell/ and ghc-pkg list --user for a tentative list of affected packages.
    ghc-pkg: cannot find package transformers-0.2.2.0
    error: command failed to execute correctly
    ( 4/16) upgrading haskell-transformers [########################################################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read mtl/mtl.haddock:
    Interface file is of wrong version: mtl/mtl.haddock
    Skipping this interface.
    Warning: Cannot read random/random.haddock:
    Interface file is of wrong version: random/random.haddock
    Skipping this interface.
    Warning: Cannot read syb/syb.haddock:
    Interface file is of wrong version: syb/syb.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package mtl-2.0.1.0
    error: command failed to execute correctly
    ( 5/16) upgrading haskell-mtl [########################################################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read random/random.haddock:
    Interface file is of wrong version: random/random.haddock
    Skipping this interface.
    Warning: Cannot read syb/syb.haddock:
    Interface file is of wrong version: syb/syb.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package random-1.0.1.1
    error: command failed to execute correctly
    ( 6/16) upgrading haskell-random [########################################################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read syb/syb.haddock:
    Interface file is of wrong version: syb/syb.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package syb-0.3.6
    error: command failed to execute correctly
    ( 7/16) upgrading haskell-syb [########################################################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    WARNING: cache is out of date: /usr/lib/ghc-7.4.2/package.conf.d/package.cache
    use 'ghc-pkg recache' to fix.
    ghc-pkg: cannot find package utf8-string-0.3.7
    error: command failed to execute correctly
    ( 8/16) upgrading haskell-utf8-string [########################################################################################] 100%
    WARNING: cache is out of date: /usr/lib/ghc-7.4.2/package.conf.d/package.cache
    use 'ghc-pkg recache' to fix.
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    ghc-pkg: cannot find package X11-1.5.0.1
    error: command failed to execute correctly
    ( 9/16) upgrading haskell-x11 [########################################################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    ghc-pkg: cannot find package X11-xft-0.3.1
    error: command failed to execute correctly
    (10/16) upgrading haskell-x11-xft [########################################################################################] 100%
    Reading package info from stdin ... done.
    (11/16) upgrading libmysqlclient [########################################################################################] 100%
    (12/16) upgrading mysql-clients [########################################################################################] 100%
    (13/16) upgrading mysql [########################################################################################] 100%
    (14/16) upgrading xmobar [########################################################################################] 100%
    ghc-pkg: cannot find package xmonad-0.10
    error: command failed to execute correctly
    (15/16) upgrading xmonad [########################################################################################] 100%
    Reading package info from stdin ... done.
    xmonad-0.10: Warning: haddock-interfaces: /usr/share/doc/xmonad-0.10/html/xmonad.haddock doesn't exist or isn't a file
    xmonad-0.10: Warning: haddock-html: /usr/share/doc/xmonad-0.10/html doesn't exist or isn't a directory
    ghc-pkg: cannot find package xmonad-contrib-0.10
    error: command failed to execute correctly
    (16/16) upgrading xmonad-contrib [########################################################################################] 100%
    Reading package info from stdin ... done.
    xmonad-contrib-0.10: Warning: haddock-interfaces: /usr/share/doc/xmonad-contrib-0.10/html/xmonad-contrib.haddock doesn't exist or isn't a file
    xmonad-contrib-0.10: Warning: haddock-html: /usr/share/doc/xmonad-contrib-0.10/html doesn't exist or isn't a directory
    I haven't restarted yet to see if xmonad still works, but I'm a little apprehensive after seeing this output
    EDIT: Added code tags
    Last edited by cmm7825 (2012-10-12 00:15:32)

    Recompiling xmonad was a no-go for me after updating with
    pacman -Syyu
    I had errors
    [root@luderro hal]# pacman -Syyu
    :: Synchronizing package databases...
    core 103.7 KiB 301K/s 00:00 [############################################################] 100%
    extra 1404.9 KiB 1173K/s 00:01 [############################################################] 100%
    community 1680.9 KiB 1409K/s 00:01 [############################################################] 100%
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (11): ghc-7.4.2-1 haskell-mtl-2.1.1-1 haskell-random-1.0.1.1-2 haskell-syb-0.3.6.1-1 haskell-transformers-0.3.0.0-1 haskell-utf8-string-0.3.7-2
    haskell-x11-1.6.0-1 haskell-x11-xft-0.3.1-4 xmobar-0.15-1 xmonad-0.10-4 xmonad-contrib-0.10-4
    Total Download Size: 69.00 MiB
    Total Installed Size: 867.50 MiB
    Net Upgrade Size: 11.79 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    ghc-7.4.2-1-x86_64 60.1 MiB 2.25M/s 00:27 [############################################################] 100%
    haskell-transformers-0.3.0.0-1-x86_64 591.9 KiB 803K/s 00:01 [############################################################] 100%
    haskell-mtl-2.1.1-1-x86_64 195.9 KiB 401K/s 00:00 [############################################################] 100%
    haskell-random-1.0.1.1-2-x86_64 300.7 KiB 509K/s 00:01 [############################################################] 100%
    :: Retrieving packages from community...
    haskell-syb-0.3.6.1-1-x86_64 216.9 KiB 450K/s 00:00 [############################################################] 100%
    haskell-utf8-string-0.3.7-2-x86_64 208.8 KiB 495K/s 00:00 [############################################################] 100%
    haskell-x11-1.6.0-1-x86_64 1860.3 KiB 1672K/s 00:01 [############################################################] 100%
    haskell-x11-xft-0.3.1-4-x86_64 93.1 KiB 283K/s 00:00 [############################################################] 100%
    xmobar-0.15-1-x86_64 461.8 KiB 703K/s 00:01 [############################################################] 100%
    xmonad-0.10-4-x86_64 730.5 KiB 995K/s 00:01 [############################################################] 100%
    xmonad-contrib-0.10-4-x86_64 4.3 MiB 2.30M/s 00:02 [############################################################] 100%
    (11/11) checking package integrity [############################################################] 100%
    (11/11) loading package files [############################################################] 100%
    (11/11) checking for file conflicts [############################################################] 100%
    (11/11) checking available disk space [############################################################] 100%
    ==> Unregistering cabalized packages...
    unregistering X11-xft-0.3.1 would break the following packages: xmonad-contrib-0.10 (ignoring)
    unregistering transformers-0.2.2.0 would break the following packages: xmonad-0.10 mtl-2.0.1.0 (ignoring)
    unregistering syb-0.3.6 would break the following packages: X11-1.5.0.1 (ignoring)
    ==> Done.
    ( 1/11) upgrading ghc [############################################################] 100%
    ==> All cabalized packages need to be reinstalled now.
    ==> See /usr/share/haskell/ and ghc-pkg list --user for a tentative list of affected packages.
    ghc-pkg: cannot find package transformers-0.2.2.0
    error: command failed to execute correctly
    ( 2/11) upgrading haskell-transformers [############################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read mtl/mtl.haddock:
    Interface file is of wrong version: mtl/mtl.haddock
    Skipping this interface.
    Warning: Cannot read random/random.haddock:
    Interface file is of wrong version: random/random.haddock
    Skipping this interface.
    Warning: Cannot read syb/syb.haddock:
    Interface file is of wrong version: syb/syb.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package mtl-2.0.1.0
    error: command failed to execute correctly
    ( 3/11) upgrading haskell-mtl [############################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read random/random.haddock:
    Interface file is of wrong version: random/random.haddock
    Skipping this interface.
    Warning: Cannot read syb/syb.haddock:
    Interface file is of wrong version: syb/syb.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package random-1.0.1.1
    error: command failed to execute correctly
    ( 4/11) upgrading haskell-random [############################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read syb/syb.haddock:
    Interface file is of wrong version: syb/syb.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package syb-0.3.6
    error: command failed to execute correctly
    ( 5/11) upgrading haskell-syb [############################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    Warning: Cannot read utf8-string/utf8-string.haddock:
    Interface file is of wrong version: utf8-string/utf8-string.haddock
    Skipping this interface.
    ghc-pkg: cannot find package utf8-string-0.3.7
    error: command failed to execute correctly
    ( 6/11) upgrading haskell-utf8-string [############################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    Warning: Cannot read X11/X11.haddock:
    Interface file is of wrong version: X11/X11.haddock
    Skipping this interface.
    ghc-pkg: cannot find package X11-1.5.0.1
    error: command failed to execute correctly
    ( 7/11) upgrading haskell-x11 [############################################################] 100%
    Reading package info from stdin ... done.
    Warning: Cannot read X11-xft/X11-xft.haddock:
    Interface file is of wrong version: X11-xft/X11-xft.haddock
    Skipping this interface.
    ghc-pkg: cannot find package X11-xft-0.3.1
    error: command failed to execute correctly
    ( 8/11) upgrading haskell-x11-xft [############################################################] 100%
    Reading package info from stdin ... done.
    ( 9/11) upgrading xmobar [############################################################] 100%
    ghc-pkg: cannot find package xmonad-0.10
    error: command failed to execute correctly
    (10/11) upgrading xmonad [############################################################] 100%
    Reading package info from stdin ... done.
    xmonad-0.10: Warning: haddock-interfaces: /usr/share/doc/xmonad-0.10/html/xmonad.haddock doesn't exist or isn't a file
    xmonad-0.10: Warning: haddock-html: /usr/share/doc/xmonad-0.10/html doesn't exist or isn't a directory
    ghc-pkg: cannot find package xmonad-contrib-0.10
    error: command failed to execute correctly
    (11/11) upgrading xmonad-contrib [############################################################] 100%
    Reading package info from stdin ... done.
    xmonad-contrib-0.10: Warning: haddock-interfaces: /usr/share/doc/xmonad-contrib-0.10/html/xmonad-contrib.haddock doesn't exist or isn't a file
    xmonad-contrib-0.10: Warning: haddock-html: /usr/share/doc/xmonad-contrib-0.10/html doesn't exist or isn't a directory
    The solution I found was to uninstall/reinstall everything which depends on ghc:
    pacman -Qi ghc
    pacman -Rdd ghc haskell-mtl haskell-random haskell-syb haskell-transformers haskell-utf8-string haskell-x11 haskell-x11-xft xmonad xmonad-contrib <any other dependencies here>
    pacman -Syyu ghc haskell-mtl haskell-random haskell-syb haskell-transformers haskell-utf8-string haskell-x11 haskell-x11-xft xmonad xmonad-contrib <any other dependencies here>
    Probably not ideal, but the digging I did to use ghc to fix the problem turned up nothing.
    By the way, a litmus test to determine if your Haskell setup is sane:
    xmonad --recompile
    should not return any errors.
    Last edited by hal (2012-06-13 18:51:15)

  • What's the default mysql database name in Crystal Report Server XIR2

    Hi Experts,
    I am upgrading Crystal Report Server from XIR2 to XI3.1.
    I need to know the default mysql database name when upgrading.
    Anyone knows?

    Hi,
    In XI3.1, when BOE installed with default mySQL DB then the installer creates a DataSource with name "Business Objects CMS".
    And the DB name will be "BOE120".
    I guess in XIR2 DB name will be ''BOE115".
    Also, if you launch the CMC admin page then in the settings link the DB info will be displayed.
    -Noor.
    Edited by: Nooreazam Sayyad Abdullas Peerzade on Dec 15, 2010 1:54 PM

  • MySQL 5.0.24 and KPlaylist

    I've been running a KPlaylist site for quite awhile without any troubles.  The MySQL 5.0.24 upgrade seems to be incompatible with KPlaylist.  (See this thread for details.)
    Is anybody else seeing this?
    Darin

    Just upgraded to PHP 5.1.6 (sttill running against MySQL 5.0.24) and everything is working now.  I'm not exactly sure what the problem was, but I'm pretty excited to have my kplaylist server running again. 
    Cheers!
    Darin

  • Mysql: resetting the root password

    Hello all!
    Going on Day 4 here and definitely at the end of the rope!
    When trying to connect to my databases (which 2 months ago
    worked fine)
    I received the following error by DW "An unidentified error
    has
    occured". After numerous hours troubleshooting, I have come
    to the
    conclusion the passwords in Mysql must have got damaged.
    --tried to clear the passwords in Mysql by Mysql A.4.1
    Reference Manual
    instructions of making a new word file with the text:
    SET PASSWORD FOR 'root'@'localhost' = PASSWORD('');
    and then went to the bin directory of Mysql and typed:
    mysqld-nt --init-file=c:\mysql-init.txt (name of file)
    Of course Nothing happened concerning the "unidentified
    error" after
    re-starting Mysql.
    Does anyone know another way to reset the passwords?
    And do you know why they would become damaged for no reason?
    The Mysql,
    php, phpMyAdmin, Dw intergration just seems so delicate and
    fragile--it
    seems some clitch comes along after say 10 hours of work
    everytime.
    This is not the *first* crash I have had with this set up.
    Why would
    passwords work one day and not the next--it's not like I'm
    racing my
    computer on Friday nights!
    Many thanks,
    Star2

    To David Powers:
    THANK YOU SO MUCH FOR YOUR HELP. Sorry it took so long for me
    to
    reply...I started looking at the documentation and lost track
    of time
    and then had to go to work.
    The versions I'm using are: Mysql version is 4.1.1 and PHP is
    5.0.
    So let me see if I have this straight:
    --since I'm using a version of Mysql that is higher than 4.1,
    I need to
    download the MySQLI extension
    Should I upgrade the MySQL to 5.0 first? I was thinking about
    upgrading
    to DW8. Would it be better to upgrade to MySQL 5.0 with DW8?
    I want to just download the MySQLI extension, connections
    work again,
    and then upgrade to DW8 and then that's it-no problem. That
    is probably
    wishful thinking!!
    Again, thank you so much! This is not the first time you have
    talked me
    down from the "Day 4 Ledge"...I definitely would have quit
    this long ago
    with this group's help and your help.
    Many thanks,
    Star2
    P.S. I'll try to post the MySQLI downloading result here if I
    can...if I
    don't beat my computer to death in a "computer rage" first.
    > Star2 wrote:
    >
    >> I received the following error by DW "An
    unidentified error has
    >> occured". After numerous hours troubleshooting, I
    have come to the
    >> conclusion the passwords in Mysql must have got
    damaged.
    >
    >
    > The problem is almost certainly to do with the versions
    of MySQL and
    > PHP. Since MySQL 4.1, you either need to use the MySQLI
    extension to
    > connect to MySQL, or you need to set the password using
    OLD_PASSWORD().
    >
    >
    http://dev.mysql.com/doc/refman/5.0/en/old-client.html
    >
    >> Does anyone know another way to reset the passwords?
    >
    >
    >
    http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html
    >
    >> And do you know why they would become damaged for no
    reason? The
    >> Mysql, php, phpMyAdmin, Dw intergration just seems
    so delicate and
    >> fragile--it seems some clitch comes along after say
    10 hours of work
    >> everytime.
    >
    >
    > I've been running PHP, MySQL and DW daily for several
    years now. If
    > correctly set up, they work in perfect harmony.
    >

  • Re-Orientation

    I've been using Dreamweaver since 2002, and I've been subscribed to CS6/Creative Cloud for a year. However, it's time to pause to see where I'm going.
    I just bought a new MacBook Pro and updated all my software (along with a massive website upgrade). I've downloaded my favorite software programs - Dreamweaver and Photoshop, along with Acrobat, Illustrator and Bridge.
    But there are so many other software programs to learn about, I wondered if anyone could give me a brief overview. Which programs are most popular, which ones do most web designers consider essential? (I have read the brief descriptions of each program.)
    Two things I'm especially confused about are graphics and videos. I've read that Apple doesn't support Flash, and I do get lots of plug in error messages when I view videos on Facebook or YouTube. Is Flash still viable? Also, Creative Cloud includes several video programs, and I don't understand how they relate to each other.
    I do understand the difference between Photoshop and Illustrator, but I need help organizing images. I've been using Apple's Aperture program, which is pretty good, but I'm not sure if it will really do what I want it to. So which would be Adobe's equivalent - Lightroom or Bridge?
    I've built my own content management systems powered by PHP and MySQL, though I may upgrade to WordPress, Drupal or Joomla in the near future. That's yet another source of confusion. Do people who use Drupal continue using Dreamweaver? Do CMS's have their own type programs that compete with Adobe's?
    Thanks.

    Hi, I upgraded from a powerbook 190cs sys 7.5.5 to a MacBook.
    If you haven't used OS X, then you will need to get used to the dock, the new apple menu and some minor interface changes, but I think that the finder experience has not changed much.
    The finder's help menu can be a lot of help, for example the first thing I missed was the "Control Strip" from my old powerbook. If you search for control strip in the help menu, it will explain that it is no longer available in OSX, but it shows the alternatives.
    Sometimes I still try to find the "special" menu when emptying the trash.
    In OSX you can customize most of the keyboard shortcuts, so I added
    -shift-0 for Sleep, just as in old sys 7.5

  • Kernel26-2.6.32.9-1 module dependencies update error

    Hi,
    I got some error message during today's system upgrade:
    >>> Updating module dependencies. Please wait ...
    /tmp/alpm_Jsb2Sa/.INSTALL: line 87: depmod: command not found
    Full log:
    ( 1/41) upgrading avahi [#####################] 100%
    New optional dependencies for avahi
    pygtk: avahi-discover
    dbus-python: avahi-discover
    ( 2/41) upgrading lame [#####################] 100%
    ( 3/41) upgrading cdrdao [#####################] 100%
    ( 4/41) installing libevent [#####################] 100%
    ( 5/41) upgrading chromium [#####################] 100%
    warning: /etc/logrotate.d/crond saved as /etc/logrotate.d/crond.pacsave
    ( 6/41) upgrading dcron [#####################] 100%
    ( 7/41) upgrading devede [#####################] 100%
    ( 8/41) upgrading e2fsprogs [#####################] 100%
    ( 9/41) upgrading parted [#####################] 100%
    (10/41) upgrading devicekit-disks [#####################] 100%
    (11/41) upgrading filesystem [#####################] 100%
    (12/41) upgrading fakeroot [#####################] 100%
    (13/41) upgrading gparted [#####################] 100%
    (14/41) upgrading heimdal [#####################] 100%
    (15/41) upgrading imagemagick [#####################] 100%
    (16/41) upgrading iputils [#####################] 100%
    (17/41) upgrading kernel26-firmware [#####################] 100%
    (18/41) upgrading kernel26 [#####################] 100%
    >>> Updating module dependencies. Please wait ...
    /tmp/alpm_Jsb2Sa/.INSTALL: line 87: depmod: command not found
    >>> MKINITCPIO SETUP
    >>> ----------------
    >>> If you use LVM2, Encrypted root or software RAID,
    >>> Ensure you enable support in /etc/mkinitcpio.conf .
    >>> More information about mkinitcpio setup can be found here:
    >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    ==> Building image "default"
    ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    :: Parsing hook [pata]
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    :: Generating image '/boot/kernel26.img'...SUCCESS
    ==> SUCCESS
    ==> Building image "fallback"
    ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [pata]
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    ==> SUCCESS
    (19/41) upgrading kernel26-headers [#####################] 100%
    (20/41) upgrading libfetch [#####################] 100%
    (21/41) upgrading libjpeg [#####################] 100%
    (22/41) upgrading libmysqlclient [#####################] 100%
    (23/41) upgrading m4 [#####################] 100%
    (24/41) upgrading mysql-clients [#####################] 100%
    (25/41) upgrading mysql [#####################] 100%
    (26/41) upgrading nvidia-utils [#####################] 100%
    (27/41) upgrading nvidia [#####################] 100%
    /tmp/alpm_32SqSs/.INSTALL: line 3: depmod: command not found
    /tmp/alpm_32SqSs/.INSTALL: line 8: rmmod: command not found
    In order to use the new nvidia module, exit Xserver and unload it manually.
    (28/41) upgrading php [#####################] 100%
    (29/41) upgrading php-apache [#####################] 100%
    (30/41) upgrading python-xlib [#####################] 100%
    (31/41) upgrading qt3 [#####################] 100%
    (32/41) upgrading smbclient [#####################] 100%
    (33/41) upgrading samba [#####################] 100%
    (34/41) upgrading saxon [#####################] 100%
    (35/41) upgrading sudo [#####################] 100%
    (36/41) upgrading syslog-ng [#####################] 100%
    (37/41) upgrading thunderbird [#####################] 100%
    (38/41) upgrading thunderbird-en-gb [#####################] 100%
    (39/41) upgrading unzip [#####################] 100%
    (40/41) upgrading vlc [#####################] 100%
    New optional dependencies for vlc
    libdvdcss: for decoding encrypted DVDs
    lirc-utils: for lirc plugin
    (41/41) upgrading x264
    Could you please shed some light on tis error? What steps should I take?
    Thanks.

    Don't know why you think I removed that package or reinstalled kernel. I didn't. I just run a system upgrade after some days, but you might read it in the initial post.
    Edit:
    # pacman -S module-init-tools
    warning: module-init-tools-3.11.1-2 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): module-init-tools-3.11.1-2 [0.32 MB]
    Total Download Size: 0.32 MB
    Total Installed Size: 0.73 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    module-init-tools-3... 323.0K 574.3K/s 00:00:01 [#####################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [#####################] 100%
    (1/1) upgrading module-init-tools [#####################] 100%
    What do you say now?
    Last edited by siriusb (2010-03-02 19:13:40)

  • Package that overwrite other packages

    I'm building a new package "mysqlclient" that will contain only the mysql client programs and libraries. Basically just run with configure option --without-server.
    Anyway, how does pacman handle a package that overwrites another package? For example if I install my new mysqlclient and then later install the official mysql package, what happens?

    ianneub wrote:
    Toth wrote:If you want to install the full mysql later on, you could always just remove mysqlclient, and then install mysql.
    Is it possible to check this from the package? Maybe it's better to just seperate the files from -client and -server so they don't overlap.
    I don't really see the point. If you want just the client, or just the server you can use ABS to compile it as you have done. Or just install all of mysql and only use the client.  If you want you can leave the client package named "mysql" and then just upgrade it to the standard package if you want both the client and server tools. Separating software into multiple packages just gets messy, IMO. There are some files that would be common to both, some that are only for the server, some that are only for the client. You'd end up with three packages: mysql-common, mysql-client, and mysql-server. Ugh. Just look at Debian's repositories sometime and you'll see why it's probably a better idea not to do it that way. Leaving it as a single package also makes it much easier to maintain.

  • So many software programs! Overview?

    I just bought a new MacBook Pro and updated all my software (along with a massive website upgrade). I'm subscribed to Creative Cloud and have downloaded my favorite software programs - Dreamweaver and Photoshop, along with Acrobat, Illustrator and Bridge.
    But there are so many other software programs to learn about, I wondered if anyone could give me a brief overview. Which programs are most popular, which ones do most web designers consider essential? (I have read the brief descriptions of each program.)
    I've built my own content management systems powered by PHP and MySQL, though I may upgrade to WordPress, Drupal or Joomla in the near future.
    Two things I'm especially confused about are graphics and videos. I've read that Apple doesn't support Flash, and I do get lots of plug in error messages when I view videos on Facebook or YouTube. Is Flash still viable? Also, Creative Cloud includes several video programs, and I don't understand how they relate to each other.
    I do understand the difference between Photoshop and Illustrator, but I need help organizing images. I've been using Apple's Aperture program, which is pretty good, but I'm not sure if it will really do what I want it to. So which would be Adobe's equivalent - Lightroom or Bridge?
    Thanks.

    >which ones do most web designers consider essential?
    That is probably a question for http://forums.adobe.com/community/dreamweaver

Maybe you are looking for

  • IPod playlists & crossfade playback

    I have created some great playlists in ITunes using the crossfade playback function. Does anyone know whether I can: 1) Transfer the playlists to my iPod with the crossfade function intact? 2) If not, any suggestions for how I can burn the playlist t

  • Help in MSEG select performance.

    Hi all, please, help me with this performance. The coment lines was the original code. The previous code got time out and the new code is taking long long time. The range r_mblnr has about 1500 records. MSEG table has more than 1.500.000 records. Tha

  • Current state of photoshop plug-ins for Intel?

    The good news (I guess) is that CS3 is now Universal. A reason to send a large chunk of money to Adobe. Bad news seems to be that every plug-in I've looked at so far is not available for Intel OS-X. (Admittedly I've only looked at a few like FocusMag

  • I subscribe to Acrobat Pro XI online and my computer is not recognizing it

    I've subscribed to Acrobat Pro XI and pay $21 and change monthly.  Currently Acrobat does not recognize my subscription and keeps asking me to purchase Acrobat Pro to export PDF to Word, Excel to PDF, etc.   In other words, I'm not able to use any of

  • Photoshop Elements 8 on early macbook

    Hi I have one of the 1st gen black macbooks, it has 2 GHz Intel Core Duo. I have had the RAM upped to 2 GB and the hard disk upped to 250MB which has about 100MB free still. Will I be able to run Photoshop Elements 8 on this? Thanks Iain.