<?xml version="1.0"?>
<rss version="2.0">
    <channel>
        <title>Gossamer Forum</title>
        <link>http://www.gossamer-threads.com/forum/</link>
        <language>en-us</language>
        <managingEditor>gforum@gossamer-threads.com</managingEditor>
        <pubDate>Fri, 24 May 2013 23:41:24 GMT</pubDate>
        <generator>Gossamer Forum by Gossamer Threads, Inc.</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        <image>
            <url>http://static.gossamer-threads.com/forum/images/gforum-logo.png</url>
            <title>Gossamer Forum</title>
            <link>http://www.gossamer-threads.com/forum/</link>
            <width>50</width>
            <height>50</height>
        </image>
        <item>
            <title>Re: [theguy] command to list all data on one page</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Btheguy%5D_command_to_list_all_data_on_one_page_P311389/?page=unread#311389</link>
            <description>Unfortunatly mySQLMan is pretty out of date ... you would probably be best to use phpMyAdmin to do the task you need (much newer, and constantly updated)

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>efef77d022115d5621cba9eb673a8215</guid>
            <pubDate>Jan 19, 2012, 6:38 AM</pubDate>
        </item>
        <item>
            <title>Re: [theguy] command to list all data on one page</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Btheguy%5D_command_to_list_all_data_on_one_page_P311388/?page=unread#311388</link>
            <description>2 weeks and nobody answered me. please someone help me</description>
            <guid>e416b49954c748b1c0fc993e1d38a155</guid>
            <pubDate>Jan 19, 2012, 5:38 AM</pubDate>
        </item>
        <item>
            <title>command to list all data on one page</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/command_to_list_all_data_on_one_page_P311332/?page=unread#311332</link>
            <description>I had to change the software for one of the sites i own on my server so i need to retrieve all e-mails from the old database to send an e-mail to old members to join the site again.
using mysqlman i clicked on sql monitor and entered
SELECT * FROM email ORDER BY id LIMIT 0, 20
but it only list 20 e-mails per page even if i change 20 to 100
what command do i need to use to list them all on one page?</description>
            <guid>2639b1b545969aab38d90eec2ebae4bd</guid>
            <pubDate>Jan 5, 2012, 2:12 AM</pubDate>
        </item>
        <item>
            <title>Re: [brewt] entering a default value of 0 with not null for an int column</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bbrewt%5D_entering_a_default_value_of_0_with_not_null_for_an_int_column_P305583/?page=unread#305583</link>
            <description>Thanks for the fix Adrian it worked....
there is something else I noticed, unlike mysql 4 mysql 5 gives back &#039;NO&#039; instead of &#039;&#039; for a column that is not null, this meant the selector in the alter form was defaulting to null even when the column was marked as not null so I mad a fix for it.

mysqlman/html.pl
sub html_alter_col

changed:
if ($null) { $null_select = &#039;&amp;lt;option&amp;gt;null&amp;lt;/option&amp;gt;&#039; }
to:
if ($null eq &#039;YES&#039;) { $null_select = &#039;&amp;lt;option&amp;gt;null&amp;lt;/option&amp;gt;&#039; }

Cheers</description>
            <guid>a008f62abfbbd70a9b6b28119b64a505</guid>
            <pubDate>May 8, 2009, 6:37 AM</pubDate>
        </item>
        <item>
            <title>Re: [brewt] entering a default value of 0 with not null for an int column</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bbrewt%5D_entering_a_default_value_of_0_with_not_null_for_an_int_column_P305392/?page=unread#305392</link>
            <description>Sorry it took so long - it&#039;s been a busy week. Here&#039;s a patch:


Code:
Index: MySQLMan.pm
===================================================================
RCS file: mysqlman/MySQLMan.pm,v
retrieving revision 1.28
diff -u -r1.28 MySQLMan.pm
--- MySQLMan.pm 10 Jun 2008 03:59:24 -0000 1.28
+++ MySQLMan.pm 25 Apr 2009 03:09:56 -0000
@@ -2942,8 +2942,9 @@
}
$col_spec .= &#039; &#039; . $IN-&amp;gt;param(&amp;quot;attributes_$i&amp;quot;) . &#039; &#039;;
$col_spec .= $IN-&amp;gt;param(&amp;quot;null_$i&amp;quot;) . &#039; &#039;;
- if ( $IN-&amp;gt;param(&amp;quot;default_$i&amp;quot;) ) {
- $col_spec .= &#039;DEFAULT &#039; . $DBH-&amp;gt;quote( $IN-&amp;gt;param(&amp;quot;default_$i&amp;quot;) ) . &#039; &#039;;
+ my $default = $IN-&amp;gt;param(&amp;quot;default_$i&amp;quot;);
+ if (length $default) {
+ $col_spec .= &#039;DEFAULT &#039; . $DBH-&amp;gt;quote($default) . &#039; &#039;;
}
$col_spec .= $IN-&amp;gt;param(&amp;quot;extra_$i&amp;quot;);

Adrian</description>
            <guid>04fcf139cb7e75e09f089c5202a91bdb</guid>
            <pubDate>Apr 24, 2009, 8:15 PM</pubDate>
        </item>
        <item>
            <title>Re: [brewt] entering a default value of 0 with not null for an int column</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bbrewt%5D_entering_a_default_value_of_0_with_not_null_for_an_int_column_P305297/?page=unread#305297</link>
            <description>Thx Adrian, look forward to it...</description>
            <guid>b9d95e28e2a51b72e6dcfd5656aa2d73</guid>
            <pubDate>Apr 18, 2009, 4:32 PM</pubDate>
        </item>
        <item>
            <title>Re: [chmodphil] entering a default value of 0 with not null for an int column</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bchmodphil%5D_entering_a_default_value_of_0_with_not_null_for_an_int_column_P305296/?page=unread#305296</link>
            <description>That looks like a bug. I&#039;ll look into a fix and getting you a patch on Monday.

Adrian</description>
            <guid>5e9cdf07878b4167f131d4c34ec9d574</guid>
            <pubDate>Apr 18, 2009, 3:40 PM</pubDate>
        </item>
        <item>
            <title>entering a default value of 0 with not null for an int column</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/entering_a_default_value_of_0_with_not_null_for_an_int_column_P305293/?page=unread#305293</link>
            <description>Having problem with int column since upgrading to mysql 5.0 when setting &#039;not null&#039; and default 0 (zero) the column comes back not null but without a default....when entered as sql in SQL Monitor it works fine???

Any help appreciated.

Cheers</description>
            <guid>bd75d5b5e2b2b70c20bedb9552574bb7</guid>
            <pubDate>Apr 18, 2009, 7:33 AM</pubDate>
        </item>
        <item>
            <title>Re: [Artimesia_2] website search feature</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5BArtimesia_2%5D_website_search_feature_P302376/?page=unread#302376</link>
            <description>Hi,

Sounds like you really could with with DBMan ( http://www.gossamer-threads.com/scripts/dbman-sql/ )

This lets you do searches on databases, via a search form - and then returns the results.

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>e01f3330949d3c6228837514a7eb615a</guid>
            <pubDate>Jun 3, 2008, 4:34 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] website search feature</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5BAndy%5D_website_search_feature_P302375/?page=unread#302375</link>
            <description>LOL - I mis-typed. I don&#039;t want to search YOUR database.

What we want to do. We wish to add products, etc. to our MYSQLMan database and put a search feature on our site so visitors can search our large product list for a particular product. Can you do this using MYSQLMan? How?

Does that make sense? We want visitors to find our stuff easily by search term in a search box....

Anything you can tell us would help.

Thx
Art</description>
            <guid>b29cd202e8ed9bc4ca210ba81876aadf</guid>
            <pubDate>Jun 3, 2008, 4:30 AM</pubDate>
        </item>
        <item>
            <title>Re: [Artimesia_2] website search feature</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5BArtimesia_2%5D_website_search_feature_P302363/?page=unread#302363</link>
            <description>Why would you want to do that? What exactly are you wanting to do a search on?</description>
            <guid>9d4b15a22bb4353116a8dd99d84fc5c1</guid>
            <pubDate>Jun 2, 2008, 11:07 PM</pubDate>
        </item>
        <item>
            <title>website search feature</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/website_search_feature_P302359/?page=unread#302359</link>
            <description>Is it possible to put a search on your website and read your MYSQL Man database?

Anyone able to do that?

Thanks
Art</description>
            <guid>2e642bc72c080afe2b417d31915ef3a6</guid>
            <pubDate>Jun 2, 2008, 2:55 PM</pubDate>
        </item>
        <item>
            <title>Get intermittent error:  malformed header from script. Bad header=</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Get_intermittent_error%3A_malformed_header_from_script._Bad_header%3D_P302121/?page=unread#302121</link>
            <description>I&#039;m trying to run this on apache2.0 and I&#039;m not sure if the conf is setup correctly, could you please tell me what it should look like for /mysqlman?
Currently have this:
Alias /mysqlman /data/sites/mysql/cgi-bin/mysqlman-1.09
&amp;lt;Location /mysqlman&amp;gt;
SetHandler perl-script
PerlSendHeader On
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI
Order allow,deny
Allow from all
&amp;lt;/Location&amp;gt;

Right now it works sometimes but I have to click back and forth....and keep getting errors like this:

[Wed May 14 14:29:03 2008] [error] [client 66.80.210.90] malformed header from script. Bad header=&amp;lt;HTML&amp;gt;: mysql.cgi, referer: http://myhost/mysqlman/mysql.cgi


Please help.

Thanks,
Chris</description>
            <guid>ec6b73d5bd780fb374b686783618697a</guid>
            <pubDate>May 14, 2008, 11:36 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] Enquire on issues of mysqlman</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5BAndy%5D_Enquire_on_issues_of_mysqlman_P301398/?page=unread#301398</link>
            <description>alright
thanks a lot</description>
            <guid>f95329588694bb52132ac83ee5ba1459</guid>
            <pubDate>Apr 7, 2008, 6:37 PM</pubDate>
        </item>
        <item>
            <title>Re: [poolboi] Enquire on issues of mysqlman</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bpoolboi%5D_Enquire_on_issues_of_mysqlman_P301389/?page=unread#301389</link>
            <description>Hi,

Maybe best to email support @ gossamer-threads.com, to see what their official reply is

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>fad82f8e7b86af3e21b9806da854a8b1</guid>
            <pubDate>Apr 7, 2008, 12:41 AM</pubDate>
        </item>
        <item>
            <title>Enquire on issues of mysqlman</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Enquire_on_issues_of_mysqlman_P301387/?page=unread#301387</link>
            <description>hi,

this is with regards to usage issues
well is there any restrictions if i&#039;m using mysqlman for commercial use?
although it&#039;s free i just would like to know if there&#039;s any legal restrictions binding mysqlman for commercial use?</description>
            <guid>7888bff7db14b30f1e68957399b382db</guid>
            <pubDate>Apr 6, 2008, 8:59 PM</pubDate>
        </item>
        <item>
            <title>Re: [poolboi] trouble installing mysqlman</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bpoolboi%5D_trouble_installing_mysqlman_P301353/?page=unread#301353</link>
            <description>Hi,

It should be very simple to setup.

Open the file, and inside the mysqlman-1.09 folder, upload ALL the files.

Then, CHMOD the following:



Code:
mysql.cgi to 755
templates\local - 777
templates\compiled - 777

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>f98308a530471e8de79e291890502bf4</guid>
            <pubDate>Apr 3, 2008, 1:28 AM</pubDate>
        </item>
        <item>
            <title>trouble installing mysqlman</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/trouble_installing_mysqlman_P301349/?page=unread#301349</link>
            <description>hi,

i&#039;m having trouble in placing the GT files and the template files
so far i&#039;ve place my sql.cgi, sql.cfg, html.pl file in the &amp;quot;cg-bin&amp;quot; folder

but i&#039;m still left with where to put the libraries GT at

when i use my browser to exexute as of now
i get the error

&amp;quot;fatal undef error: GT::Template (4524): Unable to create compiled template directory &#039;C:\Program Files\Apache Software Foundation\Apache2.2\cgi-bin\mysql.cfg/templates/compiled&#039;. Reason: No such file or directory at html.pl line 447.&amp;quot;

any idea why?</description>
            <guid>edb72c82fed96cd5ddea60ace1775510</guid>
            <pubDate>Apr 2, 2008, 8:24 PM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] Mysql Error restoring Wordpress</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5BAndy%5D_Mysql_Error_restoring_Wordpress_P299237/?page=unread#299237</link>
            <description>Hi Andy,

It always gave those strange characters on the first line, doesn&#039;t matter what line it is.

Testing many times I understood that happens if I save the file in UTF-8.
If I save the file in ANSI the restore goes fine.

Why this?

Thanks.</description>
            <guid>cb4ac0bd99cd42584214b7a71efab3cc</guid>
            <pubDate>Nov 27, 2007, 7:04 AM</pubDate>
        </item>
        <item>
            <title>Re: [julius2007] Mysql Error restoring Wordpress</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Others_C4/MySQLMan_F13/Re%3A_%5Bjulius2007%5D_Mysql_Error_restoring_Wordpress_P299234/?page=unread#299234</link>
            <description>Hi,

Does it make a difference if you remove all the commented bits? i.e

# MySQL dump
# Generated by MySQLMan 1.09 (http://gossamer-threads.com/scripts/)
# Host: localhost Database: rester_wordpress
#--------------------------------------------------------
#
# Table structure for table &#039;wx_categories&#039;
#

..etc

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>697cd36c96d3f5f7f6906f161f1886de</guid>
            <pubDate>Nov 27, 2007, 3:09 AM</pubDate>
        </item>
    </channel>
</rss>
