1
Answers
Vote up!
1
Vote down!

How can I change the Main Menu titles

I have installed Commerce Kickstart 2 succesfully, and in the Main (?) menu appears 'Sample Category 1', 'Sample Category 2', 'All Products' .

I can't figure out how to change the titles of these menu options, because on the Menu section says:

"The menu module allows on-the-fly creation of menu links in the content authoring forms. To configure these settings for a particular content type, visit the Content types page, click the edit link for the content type, and go to the Menu settings section. "

When I follow the instructions, the following error appears:

Additional uncaught exception thrown while handling exception.
Original

PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away: SELECT * FROM {commerce_tax_rate}; Array ( ) in commerce_tax_ui_commerce_tax_rate_info() (line 347 of C:\xampp\htdocs\Basicos\profiles\commerce_kickstart\modules\contrib\commerce\modules\tax\commerce_tax_ui.module).
Additional

PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away: SELECT ff.* FROM {filter_format} ff WHERE (status = :db_condition_placeholder_0) ORDER BY weight ASC; Array ( [:db_condition_placeholder_0] => 1 ) in filter_formats() (line 409 of C:\xampp\htdocs\Basicos\modules\filter\filter.module).
Uncaught exception thrown in session handler.

PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away in _drupal_session_write() (line 209 of C:\xampp\htdocs\Basicos\includes\session.inc).

Anyone can help?

Asked by: mam53
on September 13, 2012

1 Answer

Vote up!
0
Vote down!

First try seems successful, atolhugh it's not stress tested yet. We had to change a Doctrine file though, parts of the connection settings were not passed properly. We now have a hard-coded fix in place:in the class Doctrine_Adapter_Oracle (file: Oracle.php) line 105 we added$this->config['dbname'] = (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=host.nl)(PORT=1521)))(CONNECT_DATA=(SID=sid)))';$this->config['charset'] = AL32UTF8 ;Although the fix is not definitive yet (hard to reproduce the issue because of it's randomness), it did solve another issue we had (thus Oracle PDO == Experimental == Trouble?).

Answer by: Anonymous (not verified)
Posted: Sep 24, 2012