Unsupported Screen Size: The viewport size is too small for the theme to render properly.

Forum Replies Created

Viewing 15 posts - 211 through 225 (of 258 total)
  • Author
    Posts
  • in reply to: Won't look at the IP it's pointed to. #13881
    CalEvans
    Member

    1: Are you pointing it to a machine name or a specific IP address?

    2: what does your /etc/my.cnf look like?

    =C=

    in reply to: GPL #13848
    CalEvans
    Member
    Quote:
    I'd be interested in this if it were licensed under the GPL.

    I'm just curious, why would you NOT be interested in it if it's not released under the GPL?

    =C=

    in reply to: Rights to create files in the datadir?! #13844
    CalEvans
    Member

    sounds right. I only have 1 windows machine running mysql and I don't use it much. (Actually it's my laptop and it's usually booted into Linux, not windows) but if I remember correctly, it's the little stop-light icon in the system tray. I believe it will show you your my.ini. Make sure it's got the right one. The one with your changes in it.

    =C=

    in reply to: Rights to create files in the datadir?! #13842
    CalEvans
    Member

    ok, that's a different issue.

    Since you are using the windows server, check the MySQL control center to see what settings MySQL thinks it's using. If they are different from your my.ini settings than I'm betting that your my.ini is in the wrong place.

    =C=

    in reply to: Rights to create files in the datadir?! #13839
    CalEvans
    Member

    If you are using a Linux server type

    Code:
    ls -ld /the/directory/name

    this will result in something like this:

    Code:
    newton backups # ls -ld /home/backups/
    drwxr-xr-x   30 backup   users        4096 Mar  1 13:42 /home/backups/

    the letters at the front of the second line tell you your permissions.

    d= directory

    1st rwx = user permissions. The user backup in this case has permission to read/write and execute (since this is a dir the x means that you have permission to look into the dir)

    2nd rwx = group permissions. the group users has permission to read and look into the dir.

    3rd rwx = everyone else. Everyone else has permission to read and look into the dir.

    If you are using this one a windows box, right click on the dir and go to permissions.

    HTH,

    =C=

    in reply to: BLOB suggestion #13834
    CalEvans
    Member

    Press CTRL + L

    =C=

    in reply to: Problem Sorting a field #13830
    CalEvans
    Member

    The best way to do it is to use the order by clause in your select statement. However, if you don't want to make another trip to the database and you have a reasonable number of records (<500) you can click on the column heading to resort the result set. Click once for Descending, twice for ascending.

    HTH,

    =C=

    in reply to: Error No. 2003 #13825
    CalEvans
    Member

    Please copy the text of the error message and paste it in or do a screen capture. I'm not familiar with a 'Subject' error.

    =C=

    in reply to: Batch uploads #13820
    CalEvans
    Member

    Since SQLyog does not have a scripting language (and I argue against it if anybody is interested) this is really beyond the scope of the program. SQLyog is a query analyzer and maintenance tool. You would be better off utilizing a scripting language for something like this. PHP or PERL if you are on a real OS, VB otherwise. (Since I don't know PERL, lean on PHP for this kind of thing a lot.)

    You are right, most major systems do not do this by hand but they also don't try and use a query analyzer to do it.

    Off the top of my head the login would be something like

    get an array of the directory

    loop through the array in a for/next loop inserting one record into the table for each image with it's path and anything else you want to include.

    fairly simple.

    HTH,

    =C=

    in reply to: Missing CD/DVD drive letters in Win98 #13818
    CalEvans
    Member

    Wow! Now that's a new one.

    I'm gonna have to vote for Windows 'feature' instead of SQLyog.

    Sorry for your student''s misfortune. My suggestion would first be to 'overload' windows (install over the top of your existing setup. This should replace any missing files. If that doesn't work you can always wipe it and load http://www.gentoo.org. 😀

    =C=

    in reply to: SQLyog 3.03 password dialogue #13805
    CalEvans
    Member

    I believe you are misinterpreting the messages. When MYSQL fails a login it says something like:

    Using password YES or Using password NO. This simply indicates whether you used a password or not. it does not, has never and should never actually show you the password used in the case of a failure.

    =C=

    in reply to: Tab Completion? #13802
    CalEvans
    Member

    No, TAB completion is not in this program.

    =C=

    in reply to: Bad font chosen for Table – Insert/Update #13800
    CalEvans
    Member

    Please pardon my ignorance but what are CE fonts?

    in reply to: Big Batch File Error Handler #13779
    CalEvans
    Member
    Quote:
    Well, your computer will crash for 30 min-1 hour when you try to open that file to modify and get rid of the error… yes thats happens if you haven't heard of J-Write. May there be some other programs that could handle huge files (very fast, like working with a few K:cool:.

    If you mean try and open the batch in SQLyog….NO, DON'T DO IT! RUN AWAY! It's a known issue that SQLyog won't handle large scripts very well. I can only think of a handful of programs that would handle files as large as you are talking about and I submit that it's not reasonable to expect SQLyog to handle files that large. I would like to see it handle large scripts better than just having an 'Execute Large Script' option.

    HTH,

    =C=

    in reply to: Can't manage relationships… #13782
    CalEvans
    Member

    Relationships are only available on tabletypes that support them. (InnoDB and I believe Gemini)

    =C=

Viewing 15 posts - 211 through 225 (of 258 total)