Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19
  1. #11
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,504
    Plugin Contributions
    0

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    How do I find that and how to fix that problem?

    Quote Originally Posted by mc12345678 View Post
    Well, from what I understand of the log, it appears that perhaps the file is in the catalog/includes/auto_loaders directory.... even though that doesn't seem to make sense that it would affect the admin side without some other admin related files attempting to call the catalog directory version...

    The geeky way would be to turn on or set DEBUG_AUTOLOAD to true so that the list of files involved with the autoload will be displayed and the last one basically being the "problem"...

  2. #12
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,504
    Plugin Contributions
    0

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    Sorry, that isn't the latest version of the mod.

    Quote Originally Posted by ihangat2000 View Post
    Latest CEON URI Mapping: v.5.0.1 , for zen cart v.1.5.7, from ceon website.

    ceon website

  3. #13
    Join Date
    Mar 2012
    Location
    yogyakarta, indonesia
    Posts
    16
    Plugin Contributions
    2

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    Quote Originally Posted by wmorris View Post
    Sorry, that isn't the latest version of the mod.
    Have you downloaded and extracted it?
    Zip file size: 4,242 KB (v.5.0.1)
    and contains a folder:
    zen_cart_version_specific / v1.5.7

  4. #14
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,504
    Plugin Contributions
    0

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    Ok, I got the admin area up. I got one problem when I enable the ceon mapping the main store won't come up. When I disable it the store comes up. Why?


    Quote Originally Posted by swguy View Post
    Are you installing the latest CEON URI Mapping?

    https://www.zen-cart.com/downloads.php?do=file&id=2250

    Check your copy of admin/includes/functions/general.php vs a fresh download of 1.5.7 and make sure it hasn't been changed.
    Last edited by wmorris; 10 Jul 2020 at 03:45 AM.

  5. #15
    Join Date
    Jul 2012
    Posts
    16,718
    Plugin Contributions
    17

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    Quote Originally Posted by wmorris View Post
    Ok, I got the admin area up. I got one problem when I enable the ceon mapping the main store won't come up. When I disable it the store comes up. Why?
    If you're using version 5.0.0, then it isn't working because the ZC software changed one of its load sequences that is corrected in version 5.0.1 as previously discussed. Probably receive some sort of indication of too many redirects?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #16
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,504
    Plugin Contributions
    0

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    SWguy,
    I have installed the latest CEON URI Mapping. My Admin is working fine. Here is the thing. When I enable the mod. My Storefront won't come up & when I disable the mode it comes up fine. I did some changes on my .htaccess in the main root directory. Here is my htaccess file.

    Code:
    ## BEGIN CEON URI MAPPING REWRITE RULE
    
    RewriteEngine On
    
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite any URIs for some, popular specific file format extensions,
    #   which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264|woff2)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/Site-Manager [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors/ [NC]
    # Don't rewrite cgi-bin directory
    RewriteCond %{REQUEST_URI} !^/cgi\-bin/ [NC]
    # Don't rewrite zc_plugins directory
    RewriteCond %{REQUEST_URI} !^/zc_plugins/ [NC]
    # Don't rewrite logs directory
    RewriteCond %{REQUEST_URI} !^/logs/ [NC]
    # Don't rewrite readme directory
    RewriteCond %{REQUEST_URI} !^/readme/ [NC]
    # Don't rewrite .well-known directory
    RewriteCond %{REQUEST_URI} !^/\.well\-known/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* /index.php [QSA,L]
    
    ## END CEON URI MAPPING REWRITE RULE
    Quote Originally Posted by swguy View Post
    Are you installing the latest CEON URI Mapping?

    https://www.zen-cart.com/downloads.php?do=file&id=2250

    Check your copy of admin/includes/functions/general.php vs a fresh download of 1.5.7 and make sure it hasn't been changed.

  7. #17
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,504
    Plugin Contributions
    0

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    I just installed Zen Cart on a test site then installed the latest ceon mapping that is the only mod that is on the test site still doesn't work. What am I missing?

  8. #18
    Join Date
    Jan 2008
    Location
    San Diego, CA - USA
    Posts
    11
    Plugin Contributions
    14

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    I upgraded Ceon URI Mapping to the latest version (v.5.0.1) on a test site (running on a WAMPP with PHP v.7.4.6), upgraded to Zen Cart v.1.5.7 and everything seems to be working fine except for a couple of things:
    1. Admin: Catalog > Categories/Products > URI Mapping: empty
    - I fixed that by adding
    PHP Code:
    $this->collectInfoHandler(); 
    to \admin\includes\classes\class.CeonURIMappingAdminProductPages.php (line 100).
    2. Update Product's URI not working
    - I am still looking for a solution to that problem. However, I noticed that on file \admin\includes\ceon_uri_mapping_javascript.php there is a condition that was supposed to execute when
    PHP Code:
    $_GET['action'] == 'update_product' 
    (line 15) and it is never executed. Any idea?
    - WDV -

  9. #19
    Join Date
    Jan 2008
    Location
    San Diego, CA - USA
    Posts
    11
    Plugin Contributions
    14

    Default Re: Admin page blank after intstall ceon uri mapping! Error!

    Quote Originally Posted by wvasconcelos View Post
    I upgraded Ceon URI Mapping to the latest version (v.5.0.1) on a test site (running on a WAMPP with PHP v.7.4.6), upgraded to Zen Cart v.1.5.7 and everything seems to be working fine except for a couple of things:
    1. Admin: Catalog > Categories/Products > URI Mapping: empty
    - I fixed that by adding
    PHP Code:
    $this->collectInfoHandler(); 
    to \admin\includes\classes\class.CeonURIMappingAdminProductPages.php (line 100).
    2. Update Product's URI not working
    - I am still looking for a solution to that problem. However, I noticed that on file \admin\includes\ceon_uri_mapping_javascript.php there is a condition that was supposed to execute when
    PHP Code:
    $_GET['action'] == 'update_product' 
    (line 15) and it is never executed. Any idea?
    Just as an update on my previous post...
    I run a fresh install of Zen Cart 1.5.7 and then installed Ceon v.5.0.1.
    The module is working just fine, out of the box, with no update required.
    So, the problem is NOT related to Ceon URI Mapping.
    I should have tested that before; by bad...

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. How to remove the zenid code ?? After installed CEON URI Mapping
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 3 May 2016, 10:03 PM
  2. v154 Admin blank page - CEON URL mapping
    By saplanet in forum General Questions
    Replies: 12
    Last Post: 14 Jan 2015, 04:29 PM
  3. v139d Ceon uri mapping, how to generate uri mapping for bulk bulk-imported products?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 8 Jan 2013, 06:52 AM
  4. Ceon URI Mapping no admin logon page
    By Cuda71 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 19 Nov 2011, 06:03 AM
  5. Paypal orders not being logged in my 1.3.8 after installing ceon uri mapping
    By catach in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 29 Apr 2010, 07:07 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