Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2006
    Location
    Pleasant Grove, Utah
    Posts
    59
    Plugin Contributions
    0

    Default Header Rotate With Ultime Seo Urls Broken

    Here is what I had:

    In the .css file I had this:

    Code:
    background-image: url('../header_images/rotate.php');
    then I had a number of jpg's in the /includes/templates/<mytemplate>/header_images along with a rotate.php file (that I found out on the web when google searching) in that same directory that looked like this:

    Code:
    <?php
    /*
      By Matt Mullenweg > http://photomatt.net
      Inspired by Dan Benjamin > http://hiveware.com/imagerotator.php
      Latest version always at:
      http://photomatt.net/scripts/randomimage
    */
    
    // Make this the relative path to the images, like "../img" or "random/images/".
    // If the images are in the same directory, leave it blank.
    $folder = '';
    
    // Space seperated list of extensions, you probably won't have to change this.
    $exts = 'jpg jpeg png gif';
    
    $files = array(); $i = -1; // Initialize some variables
    if ('' == $folder) $folder = './';
    
    $handle = opendir($folder);
    $exts = explode(' ', $exts);
    while (false !== ($file = readdir($handle))) {
      foreach($exts as $ext) { // for each extension check the extension
        if (preg_match('/\.'.$ext.'$/i', $file, $test)) { // faster than ereg, case insensitive
          $files[] = $file; // it's good
          ++$i;
          }
        }
      }
    closedir($handle); // We're not using it anymore
    mt_srand((double)microtime()*1000000); // seed for PHP < 4.2
    $rand = mt_rand(0, $i); // $i was incremented as we went along
    
    header('Location: '.$folder.$files[$rand]); // Voila!
    ?>
    Everything was working great until I put on the Ultimate SEO Urls contribution and now my header won't show up. If I change the code in the .css file to this:
    Everything was working great until I put on the Ultimate SEO Urls contribution and now my header won't show up. If I change the code in the .css file to this:

    Code:
    background-image: url('../header_images/picture.jpg');
    The header works but it won't rotate obviously.

    I am thinking it has something to do with the url being rewritten because of the rotate.php file reference but I can't figure it out.

    Thanks for your help in advance.
    Jason Petty

  2. #2
    Join Date
    Jan 2006
    Location
    Pleasant Grove, Utah
    Posts
    59
    Plugin Contributions
    0

    Default Re: Header Rotate With Ultime Seo Urls Broken

    No one wants to reply? I would really like to get this working again but with the SEO URLs, which I want, I can't get it working. Thanks.
    Jason Petty

  3. #3
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Header Rotate With Ultime Seo Urls Broken

    You'll have to study some of the other posts in the support thread for the SEFU module you're using ... there are discussions on how to tell the code to bypass rewriting for a specific file ... likely via an extra .htaccess line.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 

Similar Threads

  1. Broken links on new install, after removing simple seo urls
    By contriveit in forum Upgrading to 1.5.x
    Replies: 14
    Last Post: 2 Feb 2013, 08:44 PM
  2. Ultime Seo Urls and Check Out Error
    By printwithdesign in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 18 Nov 2011, 11:03 AM
  3. 1.3.8 Multilingual URLs with Ultimate SEO URLs?
    By vko82 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 Aug 2011, 01:07 PM
  4. Ultimate SEO URLs is messing with my admin URLs
    By Chrome Orange in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 21 Jul 2009, 01:13 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