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

Forum Replies Created

Viewing 15 posts - 616 through 630 (of 2,527 total)
  • Author
    Posts
  • in reply to: Support Calling Sql Script From Other Sql Script #19386
    Ritesh
    Member

    Thanks.

    I have added it in the TO-DO list of SQLyog.

    in reply to: Trial Version Run Out. #19385
    Ritesh
    Member
    Quote:
    sync structure

    We always supported Structure Sync without PRIMARY KEYS.

    in reply to: sja and php #15843
    Ritesh
    Member

    Its not out yet. It will take another 3-4 days 🙂

    in reply to: sja and php #15840
    Ritesh
    Member

    QUOTE(stroperyliad @ May 21 2004, 04:13 PM)
    Found the solution: this error only occures only with sja2.0  😡 , the old version sja1.1 works perfect 😀

    [snapback]3030[/snapback]

    This is due to the fact that sjasession.xml implementation was done in v2.0 and thus its failing!

    in reply to: sja and php #15839
    Ritesh
    Member

    SJA takes two parameters as suggested in the docs:

    CODE
    sja jobfile -llogfile

    Note: there is no space between -l and the logfile. If you dont specify -l, then SJA will create sja.log in the same folder from where SJA is executed.

    Other then sja.log, SJA also creates sjasession.xml which has error written in XML format. You cannot specify the path for this file and it will always open up in the same folder as SJA. This basically requires that the path of SJA has write permission otherwise SJA wont be able to create the sjasession.xml and hence it will stop after throwing up the error:

    Error opening session ERROR log file.

    We acknowledge that this is a bad design and we plan to fix it in 4.2 BETA 4. v4.2 BETA 3 will be released today and we dont want to change the code so late in the release. You can expect BETA 4 anytime next week 🙂

    in reply to: Feature Req: Sql Template #19331
    Ritesh
    Member

    We will reimplement it in v4.2 BETA 3. v4.2 BETA 3 is couple of days away 🙂

    in reply to: Synchronization Problems #19343
    Ritesh
    Member

    What is the error you are getting?

    Can you give me more info about your MySQL (source and target) & SQLyog versions? How big is the table that you are trying to sync?

    in reply to: I Need Help Here #19341
    Ritesh
    Member

    Host address is nothing much but the computer address in which your MySQL server is running.

    Can you give us more details about your setup?

    in reply to: Sync Agent Abnormal Termination #19311
    Ritesh
    Member

    All's well that end's well 🙂

    in reply to: Tunnelling Problem? #19314
    Ritesh
    Member
    in reply to: Sync Agent Abnormal Termination #19308
    Ritesh
    Member

    This is very strange.

    Can you mail me sample data to reproduce the error at our end?

    in reply to: 4.1 Encoding Problems #19307
    Ritesh
    Member

    As you know, we plan to completely overhaul the language issues in v4.3. This proposal is already in the plan for v4.3 where a user can actually specify the collation to be used.

    With v4.3, issues similar to PvUtrix's will be fixed 🙂

    in reply to: Insert / Update Data Display Question #19292
    Ritesh
    Member

    Which version of SQLyog are you using?

    in reply to: Insert / Update Data Display Question #19288
    Ritesh
    Member

    I am not sure if I understood the problem. Can you post a screenshot?

    in reply to: Erro No 1064 – When Syncing #19277
    Ritesh
    Member

    Sorry for the delay in replying. We are still working on BETA 3 (there are number of bugs that are still to be fixed).

    Though the Error 1064 bug can fixed by applying the following patch in SQLyogTunnel.php.

    Change:

    Code:
       /* fix in v4.1 that checks for global configuration flag get_magic_quotes_gpc() to stripslashes or not */
       if (get_magic_quotes_gpc()) {
           $xmlrecvd = stripslashes ( urldecode ( $_POST['textfield'] ) );
       } else {
           $xmlrecvd = urldecode ( $_POST['textfield'] );
       }    

    to

    Code:
       /* fix in v4.1 that checks for global configuration flag get_magic_quotes_gpc() to stripslashes or not */
       if (get_magic_quotes_gpc()) {
           $xmlrecvd = stripslashes ( rawurldecode ( $_POST['textfield'] ) );
       } else {
           $xmlrecvd = rawurldecode ( $_POST['textfield'] );
       }    
Viewing 15 posts - 616 through 630 (of 2,527 total)