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: Session Errors

  1. #1
    howard is offline Junior Member
    Join Date
    Jul 2003
    Posts
    3

    Default Session Errors

    Running FreeBSD 4.7/Apache 1.3/PHP 4.3.3RC1/Mysql 4.03

    Getting the following errors.

    Notice: Undefined variable: session in /usr/local/www/pages/ig-shop/page.php on line 256

    Fatal error: Cannot redeclare clear_parse() in /usr/local/www/pages/ig-shop/class.FastTemplate.php on line 644

    Have downloaded the cf.zip and also tried with auto session start set in php.ini.

    Howard

  2. #2
    howard is offline Junior Member
    Join Date
    Jul 2003
    Posts
    3

    Default Fixed sessions error, but not Template one yet

    Changed line 256 in page.php from

    session_register($session);

    to

    session_register($HTTP_SESSION_VARS['session']);

    This fixed the session problem. Now I'll work on the template problem.

    Howard

  3. #3
    howard is offline Junior Member
    Join Date
    Jul 2003
    Posts
    3

    Default Further research

    after doing a search for the clear_parse error on Google, it seems to be a common problem especially if running php 4.3.x onwards.

    It seems to be a problem the FastTemplate script calling this function more than once.

    As most support for this problem has said to comment out the second instance (around line 640) but not the first instance (around 511).

    I've tried all combinations of the above for my version of PHP (4.3.3)
    but to no avail.

    I might have to look at another shop script which is a real pity cause I really liked the look and promise of this one.

    Howard

  4. #4
    imported_misi Guest

    Default

    You have php safe mode enabled ?

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Errors in WP 2.3.1
    By SkinnerW in forum Word Press Forum
    Replies: 1
    Last Post: 11-24-2007, 05:51 PM
  2. Session ID's
    By Duke in forum General Webmaster Talk
    Replies: 3
    Last Post: 09-04-2005, 10:45 PM
  3. Php session
    By clau in forum General Webmaster Talk
    Replies: 5
    Last Post: 08-10-2005, 09:48 AM
  4. Why do I always get the errors...
    By Floris in forum iG Shop
    Replies: 1
    Last Post: 07-19-2005, 03:57 PM
  5. Session errors?
    By Marco in forum iG Shop
    Replies: 1
    Last Post: 08-21-2003, 08:35 AM

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