Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13
  1. #11
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Admin blank page - CEON URL mapping

    Quote Originally Posted by lat9 View Post
    One additional thing to try. You'll need to edit /YOUR_ADMIN/includes/application_top.php, starting at line 31:
    Code:
    /**
     * set the level of error reporting
     *
     * Note STRICT_ERROR_REPORTING should never be set to true on a production site. <br />
     * It is mainly there to show php warnings during testing/bug fixing phases.<br />
     * note for strict error reporting we also turn on show_errors as this may be disabled<br />
     * in php.ini. Otherwise we respect the php.ini setting
     *
     */
    if (defined('STRICT_ERROR_REPORTING') && STRICT_ERROR_REPORTING == true) {
      @ini_set('display_errors', TRUE);
      error_reporting(version_compare(PHP_VERSION, 5.3, '>=') ? E_ALL & ~E_DEPRECATED & ~E_NOTICE : version_compare(PHP_VERSION, 5.4, '>=') ? E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_STRICT : E_ALL & ~E_NOTICE);
    } else {
      error_reporting(0);
    }
    You'll modify that section to add the line in red:
    Code:
    /**
     * set the level of error reporting
     *
     * Note STRICT_ERROR_REPORTING should never be set to true on a production site. <br />
     * It is mainly there to show php warnings during testing/bug fixing phases.<br />
     * note for strict error reporting we also turn on show_errors as this may be disabled<br />
     * in php.ini. Otherwise we respect the php.ini setting
     *
     */
    define ('STRICT_ERROR_REPORTING', true);
    if (defined('STRICT_ERROR_REPORTING') && STRICT_ERROR_REPORTING == true) {
      @ini_set('display_errors', TRUE);
      error_reporting(version_compare(PHP_VERSION, 5.3, '>=') ? E_ALL & ~E_DEPRECATED & ~E_NOTICE : version_compare(PHP_VERSION, 5.4, '>=') ? E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_STRICT : E_ALL & ~E_NOTICE);
    } else {
      error_reporting(0);
    }
    That might point out a PHP error during the initialization process. Don't forget to either remove that line when you're finished or set the constant to false.
    As a side note to this, it is VERY useful when all else fails/can't seem to figure out what is going on, but is not something suggested for every case (at least in a site that is live, which shouldn't be what we are discussing anyways). Hopefully this upgrade/attempt to incorporate plugins is being done in a development environment separate from the live store. The above will display information that is not desired to be cached by search engines or visible to the "public". But sometimes... It can be a life saver, much like lat9's other utilities for coding, debugging, and seeing what is going on in the background of ZC.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  2. #12
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,838
    Plugin Contributions
    31

    Default Re: Admin blank page - CEON URL mapping

    I am using CEON URI mapping with ZC 1.54 with no issues. The merging is just the same as previous.
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  3. #13
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Admin blank page - CEON URL mapping

    Quote Originally Posted by torvista View Post
    I am using CEON URI mapping with ZC 1.54 with no issues. The merging is just the same as previous.
    I planned to take a look at it myself in the coming week or two, but haven't devoted the time to the upgrade/verification yet... Good to know that no specific issues identified once the CEON URI specific code is merged into the correct locations of the file(s) of ZC 1.5.4.

    Curious though, was the new logging of database changes feature(s) included/considered as part of the incorporation? I'm not yet sure if the addition/modification/deletion of the URIs is something that needs/should be logged...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v153 Fresh install but CEON URI MAPPING states url already exists..confused.
    By choochoo in forum All Other Contributions/Addons
    Replies: 10
    Last Post: 6 Oct 2014, 10:26 PM
  2. Ceon url mapping url issue
    By Indiasupplement in forum General Questions
    Replies: 1
    Last Post: 22 Sep 2013, 01:23 AM
  3. v150 blank admin page after ceon 4.4.1 install
    By midi73 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 1 Jan 2013, 10:53 PM
  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

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