My PHP Script .. Stopped

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
egturnkey
Forum Commoner
Posts: 34
Joined: Sun Jul 26, 2009 7:35 pm

My PHP Script .. Stopped

Post by egturnkey »

Hello Friends,

This is a php script that was working fine but with no reason why,it stopped and no longer working


can anyone please download it and test it .

http://css2php.com/php_scp.rar

Image


it is free php script and no support it has.
The photo album website allows visitors to sign up for an account to store their digital photos online. The admin specifies different account packages stating the number of photos and length of time that the users photo gallery will be displayed online and accessible to their friends and family. The accounts are paid via PayPal.


it must be something has changed in php.ini

it did stopped working

index.php

Code: Select all

 
require_once 'include/config.php';
echo do_template('header.html');
 
and template header.html can't define anything btween {}
t can't define {site_path} or anything btween {}

like {title}

Code: Select all

 
<html>
<head>
<title>{title}</title>
<link rel="STYLESHEET" type="text/css" href="{site_path}/include/style.css">
</head>
<TD><IMG SRC="{site_path}/images/spacer.gif" WIDTH=67 HEIGHT=1 ALT=""></TD>
 
did someone ever face such problem , it must needs a change in php.ini rgith !!! since the script made at 2004
User avatar
Jade
Forum Regular
Posts: 908
Joined: Sun Dec 29, 2002 5:40 pm
Location: VA

Re: My PHP Script .. Stopped

Post by Jade »

sounds like your do_template isn't working right. Have you checked to see if the config file is setup properly?
Post Reply