Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
2 registered (id242, cascadeclimbers), 26 Guests and 16 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 06/05/06
Posts: 14994
Top Posters (30 Days)
Ruben 50
DennyP 24
Gizmo 24
Dunny 17
SteveS 14
AllenAyres 12
dbremer 10
drkknght00 9
SD 9
driv 8
Latest Photos
OK Corral Shoot Out
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Topic Options
#1499 - 07/20/06 09:34 AM Step 8 Fails v7 Beta 1 (Createtables.php)
Mark S Offline
Carpal Tunnel
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Hi guys,
I'm attempting to install v7 beta but it fails with the following
error after Step 8 "proceed to next step".

This is the error i recieve after i click the button.

Code:
Fatal error: main(): Failed opening required 'libs/smarty/Smarty.class.php' 
(include_path='.:/usr/local/lib/php') in 
*******/***/homepages/test/forums/install/createtable.php on 
line 40 


*** = the rest of the path..

php 5
If i HTACCESS to force php 5 i get these errors?

Code:
 Warning: require(libs/smarty/Smarty.class.php)
 [function.require]: failed to open stream: 
No such file or directory in *******/***//homepages/test/forums/install/createtable.php on line 40


Fatal error: require() 
[function.require]: Failed opening required 'libs/smarty/Smarty.class.php' 
(include_path='.:/usr/local/lib/php5') in *******/***//homepages/test/forums/install/createtable.php on line 40


Any help frown

I'm also using php 4.2 sick as default.
(I did read the 4.3 in the install doc).
But php 5 fails too frown

All tests passed only this error Setting up Tables.
I did download this install when it came out in the
newsletter a week ago.
Followed the Install manual to the letter.
I created an admin, not the import option.

Help, i so much want this to work. smile
_________________________
Version v7.5.6 smile smile < Threads satisfaction status
People who inspire me Rick Gizmo Ian David jgeoff ntdoc
Oooo i hear 8 is coming? just after 7 my friend.
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#1501 - 07/20/06 09:38 AM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Mark S]
Ron M Offline

Registered: 06/04/06
Posts: 361
Loc: Des Moines, IA
Can you verify that the libs directory was uploaded completely?
_________________________
Threads Alpha Tester
My Homepage
Top
#1502 - 07/20/06 09:46 AM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Ron M]
Mark S Offline
Carpal Tunnel
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Yeh there alll there,
ive put the createtables.php back up too incase of corruption.

I had a look in the file and i made an ammendment to see if
it made a diffrence.

all it was on line 40 was
include ('blar blar');

but the other include files were
include ("blar blar");

so i changed it from ' to "

But the same error appears frown
(put original back after that).

I will upload the full lib directory again.
but i dont think thats the answer.

will let you know
_________________________
Version v7.5.6 smile smile < Threads satisfaction status
People who inspire me Rick Gizmo Ian David jgeoff ntdoc
Oooo i hear 8 is coming? just after 7 my friend.
Top
#1504 - 07/20/06 09:59 AM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Mark S]
Mark S Offline
Carpal Tunnel
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Nope No Joy frown

I deleted the libs directory.
Uploaded it again.

I havent set any file permissions as its not listed
in the install manual.

-------------
I double checked the files and there all there.





_________________________
Version v7.5.6 smile smile < Threads satisfaction status
People who inspire me Rick Gizmo Ian David jgeoff ntdoc
Oooo i hear 8 is coming? just after 7 my friend.
Top
#1511 - 07/20/06 11:38 AM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Mark S]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
Can you make sure that Smarty.class.php exists in your libs/smarty directory? It could be a case issue on your server, so make sure that it's the proper case as well. What's odd about this is the fact that if it was a path issue then it should be erroring out on the line right before the one that is actually causing the error, as shown below. So this leads me to believe it's a problem with just the Smarty.class.php file.

require_once("libs/phpmailer/class.phpmailer.php");
require('libs/smarty/Smarty.class.php');
Top
#1541 - 07/20/06 03:22 PM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Rick]
Mark S Offline
Carpal Tunnel
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Whooo Hooo

Its working.

I had to rename 2 files. under PHP4.2
smarty.class.php
to
Smarty.class.php

And

smarty_compiler.class.php
to
Smarty_Compiler.class.php

The Second one errored once the tables were made,
and i think when the catergories were to be made.

I havent tested it in PHP 5 as of yet.
But its looking good.

Do you think i will get away with PHP 4.2 crazy

Will keep you posted of any other errors as i tweak things.

Will be styles my first task.

Thanks a million i can now play lol.... grin
_________________________
Version v7.5.6 smile smile < Threads satisfaction status
People who inspire me Rick Gizmo Ian David jgeoff ntdoc
Oooo i hear 8 is coming? just after 7 my friend.
Top
#1549 - 07/20/06 04:37 PM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Mark S]
Ron M Offline

Registered: 06/04/06
Posts: 361
Loc: Des Moines, IA
Case sensitivity is a webserver thing, not a PHP thing, so you will be fine with PHP 5.
_________________________
Threads Alpha Tester
My Homepage
Top
#1556 - 07/20/06 06:23 PM Re: Step 8 Fails v7 Beta 1 (Createtables.php) [Re: Ron M]
Mark S Offline
Carpal Tunnel
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Just to followup..

I used WISE FTP PRO to up load,
and on the connetion i used in the session settings,
it was ticked "filecase lower" sick

So it was my FTP program that converted those to lower case.

My help someone, or an additional comment in the installation guide?
_________________________
Version v7.5.6 smile smile < Threads satisfaction status
People who inspire me Rick Gizmo Ian David jgeoff ntdoc
Oooo i hear 8 is coming? just after 7 my friend.
Top



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
How do I make a selection between helpdesk and service desk
by Telly
Yesterday at 09:47 PM
Ability to "like" individual posts (not Facebook "likes)
by doug
Yesterday at 09:03 AM
Island Permissions
by ThreadsUser
05/22/12 03:03 PM
streaming video
by prkrgrp
05/20/12 07:02 PM
New Posts Corrupted? Can someone help?
by PianoWorld
05/19/12 09:41 AM
Forum Stats
10488 Members
36 Forums
33836 Topics
181688 Posts

Max Online: 978 @ 06/24/07 11:19 PM
Random Image