Page 22 of 30 FirstFirst ... 122021222324 ... LastLast
Results 211 to 220 of 298
  1. #211
    Join Date
    Dec 2008
    Location
    Rimini, Italy, Italy
    Posts
    67
    Plugin Contributions
    0

    Default [SOLVED] error 1054 inserting new ezpage

    Here's the solution to eliminate 1054 error in inserting new multilanguage ezpages.

    In .../CUSTOM_ADMIN/ezpages.php you have to modify following block:

    PHP Code:
    $sql_data_array = array('pages_title' => $pages_title,
                                      
    'page_open_new_window' => $page_open_new_window,
                                      
    'page_is_ssl' => $page_is_ssl,
                                      
    'alt_url' => $alt_url,
                                      
    'alt_url_external' => $alt_url_external,
                                      
    'status_header' => $status_header,
                                      
    'status_sidebox' => $status_sidebox,
                                      
    'status_footer' => $status_footer,
                                      
    'status_toc' => $status_toc,
                                      
    'header_sort_order' => $pages_header_sort_order,
                                      
    'sidebox_sort_order' => $pages_sidebox_sort_order,
                                      
    'footer_sort_order' => $pages_footer_sort_order,
                                      
    'toc_sort_order' => $pages_toc_sort_order,
                                      
    'toc_chapter' => $toc_chapter,
                                      
    'pages_html_text' => $pages_html_text); 
    to:

    PHP Code:
    $sql_data_array = array('page_open_new_window' => $page_open_new_window,
                                      
    'page_is_ssl' => $page_is_ssl,
                                      
    'alt_url' => $alt_url,
                                      
    'alt_url_external' => $alt_url_external,
                                      
    'status_header' => $status_header,
                                      
    'status_sidebox' => $status_sidebox,
                                      
    'status_footer' => $status_footer,
                                      
    'status_toc' => $status_toc,
                                      
    'header_sort_order' => $pages_header_sort_order,
                                      
    'sidebox_sort_order' => $pages_sidebox_sort_order,
                                      
    'footer_sort_order' => $pages_footer_sort_order,
                                      
    'toc_sort_order' => $pages_toc_sort_order,
                                      
    'toc_chapter' => $toc_chapter); 

  2. #212
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    installed this module , i just noticed php warning in my debug log file regarding ezpages.php . here it is

    PHP Warning: trim() expects parameter 1 to be string, array given in C:\wamp\www\test\admin\ezpages.php on line 140

    PHP Warning: addslashes() expects parameter 1 to be string, array given in C:\wamp\www\test\admin\includes\functions\database.php on line 65

    I really need to fix this , as this is the only warning i do get on entire site .

    warning happens when i add or update ezpages ..

  3. #213
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,846
    Plugin Contributions
    25

    Default Re: Multi-Language Support for EZ-Pages

    Quote Originally Posted by pasi View Post
    ZenCart team rejected my submission (because of an error I had made). I accidentaly copied wrong version to the dir I zipped and submitted... I have corrected it now, but will hone some little details in it before re-submitting.

    Just wait for it :)
    Hey pasi,

    I know you said just wait for it, but it has been almost two months now, so is there any news on the resubmission?

  4. #214
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Quote Originally Posted by tony_sar View Post
    installed this module , i just noticed php warning in my debug log file regarding ezpages.php . here it is

    PHP Warning: trim() expects parameter 1 to be string, array given in C:\wamp\www\test\admin\ezpages.php on line 140

    PHP Warning: addslashes() expects parameter 1 to be string, array given in C:\wamp\www\test\admin\includes\functions\database.php on line 65

    I really need to fix this , as this is the only warning i do get on entire site .

    warning happens when i add or update ezpages ..
    sorry for bumping this , but need to know if anyone knows how to fix this warning
    thanks

  5. #215
    Join Date
    Feb 2012
    Location
    Chania, Greece
    Posts
    2
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Hi everybody,
    I have install 1.3.9h version and successfully install Greek language. When I try to install the module I get this error:

    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 9
    in:
    [CREATE TABLE IF NOT EXISTS ezpages_content ( pc_id int(11) NOT NULL auto_increment, pages_id int(11) NOT NULL default '0', languages_id int(11) NOT NULL default '1', pages_title varchar(64) NOT NULL default '', pages_html_text text, PRIMARY KEY (pc_id), KEY idx_ezpages_content (pages_id,languages_id) ) TYPE=MyISAM]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    Any ideas for what it could be wrong???

  6. #216
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Quote Originally Posted by dimkostis View Post
    Hi everybody,
    I have install 1.3.9h version and successfully install Greek language. When I try to install the module I get this error:

    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 9
    in:
    [CREATE TABLE IF NOT EXISTS ezpages_content ( pc_id int(11) NOT NULL auto_increment, pages_id int(11) NOT NULL default '0', languages_id int(11) NOT NULL default '1', pages_title varchar(64) NOT NULL default '', pages_html_text text, PRIMARY KEY (pc_id), KEY idx_ezpages_content (pages_id,languages_id) ) TYPE=MyISAM]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    Any ideas for what it could be wrong???
    open ezpages_install.php located in your admin folder.

    around line 45 change

    TYPE=MyISAM
    to
    ENGINE=MyISAM

  7. #217
    Join Date
    Feb 2012
    Location
    Chania, Greece
    Posts
    2
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Quote Originally Posted by tony_sar View Post
    open ezpages_install.php located in your admin folder.

    around line 45 change

    TYPE=MyISAM
    to
    ENGINE=MyISAM

    That works just fine!!!!! thank you!!!!! :)

  8. #218
    Join Date
    Nov 2011
    Posts
    15
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Quote Originally Posted by Design75 View Post
    Hey pasi,

    I know you said just wait for it, but it has been almost two months now, so is there any news on the resubmission?
    Same question here, actually maybe this is one of the most used plugins on zen cart but nobody has updated it to 1.5 version. Even I think Ez Pages must be multilanguage by default. I hope this come within next zen cart update. PLEASE make update soon, We really need it...

  9. #219
    Join Date
    May 2012
    Posts
    5
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Dear Sir
    I need to make multi language zen website, I did that fine, but I need also the ez pages to have multi languages
    I am using zencart 1.5 .
    Is the multilanguage_ezpages_1.3.0.5v2.02 compatible with it?

    thanks In advance

  10. #220
    Join Date
    May 2012
    Posts
    5
    Plugin Contributions
    0

    Default Re: Multi-Language Support for EZ-Pages

    Quote Originally Posted by islam View Post
    Dear Sir
    I need to make multi language zen website, I did that fine, but I need also the ez pages to have multi languages
    I am using zencart 1.5 .
    Is the multilanguage_ezpages_1.3.0.5v2.02 compatible with it?

    thanks In advance


    Dear All,
    please can any one help me and ask my question --urgently--
    I tried the available multilanguage_ezpages add-on, but I didn't work.
    is there a version for zencart1.5?

    thanks

 

 
Page 22 of 30 FirstFirst ... 122021222324 ... LastLast

Similar Threads

  1. v150 EZ-Pages Meta tag fields + Multi-Language Support for EZ-Pages
    By ShopVille in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Nov 2012, 09:25 PM
  2. "Multi-Language Support for EZ-Pages" prints "Array" in Sidebox
    By andreas.hennig in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 13 Jul 2010, 08:23 AM
  3. multi language ez-pages doesnt work for me
    By bluesky2008 in forum Addon Language Packs
    Replies: 2
    Last Post: 31 Jul 2008, 04:23 PM
  4. multi language button image in header, links to multi language pages
    By bluesky2008 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 31 Jul 2008, 04:14 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR