Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Results 1 to 4 of 4

Thread: error solved with class.fastTemplate.php 661 and 644

  1. #1
    marco23 is offline Junior Member
    Join Date
    Jul 2004
    Posts
    1

    Default error solved with class.fastTemplate.php 661 and 644

    hello everybody
    I just got this php shop script and i tried to install it and i had same problem as everybody here. with Fatal error: Cannot redeclare clear_parse() in c:\Apache\Apache2\htdocs\varios\IGSHOP\rclass.Fast Template.php on line 661

    or for admin it will finnish with numbers 644

    i came in this forum but i did not found any answer so i had to make it work my self.

    after 2 hours work, in the end i solved the problem

    all you have to do is
    Delete this from this file class.FastTemplate.php
    // Aliased function - used for compatibility with CGI::FastTemplate
    function clear_parse()
    {
    $this->removed();
    }


    also in admin delete from the same file class.FastTemplate.php

    I hope this will help you a bit.

    Marco
    Http://www.alsat.co.uk/forum

  2. #2
    KillerSpuds is offline Junior Member
    Join Date
    Aug 2004
    Posts
    2

    Default

    Didn't work for me...

    Looks like the moderators don't answer questions here very often, is this still in devopment or is it a project in a sepended/teminated state?

  3. #3
    gmguy is offline Junior Member
    Join Date
    Dec 2004
    Posts
    1

    Default Worked for me...

    I found the "function clear_parse" in two places in each class.FastTemplate.php file.

    I just searched for "function clear_parse" and commented them out using "//" in front of each line of the function. So it ended up looking like this;

    Code:
    //	******************************************
    //
    //	function clear_parse ( $ReturnVar = "")
    //	{
    //		$this->clear($ReturnVar);
    //	}
    //      Commented out 
    //	******************************************
    I did this for 4 files total;
    /class.FastTemplate.php
    /class.FastTemplate.php3
    /admin/class.FastTemplate.php
    /admin/class.FastTemplate.php3

    It seems to work fine.

  4. #4
    murali2611 is offline Junior Member
    Join Date
    Jan 2005
    Posts
    3

    Default Worked for me tooo

    that worked for me toooooo!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Class or ID?
    By ForumJoiner in forum General Webmaster Talk
    Replies: 0
    Last Post: 03-27-2007, 10:13 AM
  2. Replies: 1
    Last Post: 02-04-2005, 02:40 AM
  3. class.FastTemplate.php error
    By pionas in forum iG Shop
    Replies: 1
    Last Post: 12-08-2003, 06:01 PM
  4. Fatal Error FastTemplate.php
    By Marco in forum iG Shop
    Replies: 4
    Last Post: 08-21-2003, 08:33 AM
  5. class.FastTemplate
    By borislav in forum iG Shop
    Replies: 6
    Last Post: 07-05-2003, 05:16 PM

Bookmarks

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
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124