| |
小坂英雄 経歴など
●略歴
愛知県在住。大学卒業後、銀行に7年、29歳で独立。現在は創業支援、経営支援を中心に、コンサルティング活動を行っています。起業家・経営者に囲まれた生活を送っており、行動を促すようなアドバイスができたとき、大きな喜びを感じます。
●IT
ITに関しては、自分でチャレンジすることが好きで、本サイトをはじめ、私の管理サイトに関しては全て自作です。HTMLやCGI、PHP、オープンソースではWP、osCommerceも構築してきました。Google APIも少しだけ活用しております。
●講演活動
講演を行うようになってから、緊張感からか、あまり体調を壊さなくなりました。起業、契約書(ワーク)をテーマにしたものを多くご依頼いただいております。私も健康を維持できるので(笑)、ご依頼をお待ちしています。
Credit
© 2007-2008 Hideo Kosaka All Rights Reserved. Wordpress
|
|
»
osCommerceにeasypopulateを組み込んだ場合の商品一括登録について。
このようなメッセージがupload後に表示されます。
16************... ERROR! - Too many characters in the model number.
12 is the maximum on a standard OSC install.
Your maximum product_model length is set to 15
You can either shorten your model numbers or increase the size of the field in the database.
そこでphpmyadminの文字数を増やしても、同じエラーが出ます。
解決方法は、adminフォルダのeasypopulate.phpの次の部分を変更。
//**** Size of products_model in products table ****
// set this to the size of your model number field in the db. We check to make sure all models are no longer than this value.
// this prevents the database from getting fubared. Just making this number bigger won't help your database! They must match!
global $modelsize;
$modelsize = 15;
この$modelsize = 15;を$modelsize = 200;などとして、データベース上の数値と合わせます。データベース上にproductsとorders_productsのテーブルがあります。その中の、フィールドproducts_modelの数値を15から200にします。
テーブルproducts
products_model varchar(15) →varchar(200)
テーブルorders_products
products_model varchar(15) →varchar(200)
なるほど、先ほどのeasypopulate.phpコメントアウト部分にも書いてありましたね。
これでエラーが消えました。
●その他OSCやEPに関する記録
osCommerce備忘録
|
»
|
|
ジャンル osCommerce || コメントは受け付けていません。