Author Topic: PHPDirector Version .30 - Public Beta  (Read 1895 times)

0 Members and 1 Guest are viewing this topic.

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 406
  • Karma: 4
    • View Profile
    • FireDart
PHPDirector Version .30 - Public Beta
« on: December 29, 2009, 01:28:52 AM »
PHPDirector Version .30 - Public Beta

Well it is here! PHPDirector Version .30 Beta,
We have made some great strides to get this version ready for public display BUT we are not entirely there yet(Note the "Beta" after PHPDirector Version .30)!

Release Date(s):
PHPDirector Version .30 Beta: 12/18/2009 ~
PHPDirector Version .30: Planned - 12/31/2009 - 1/1/2010

What is new in PHPDirector Version .30 Beta:
✓ New Default Template
✓ Upgraded Admin Panel
✓ Member Area
✓ User Registration
✓ Edit Video Details Ability
✓ Video Comment
✓ Ability for Users to select a language


Members that help make PHPDirector Version .30 possible:
FireDart
hilflo
Jeff
krissy
Shave.
winracer
• All other members or guests that visit or use PHPDirector

Other
• N/A

Bugs:
• Visit the this Board: http://phpdirector.co.uk/forum/index.php/board,20.0.html for any bug issues


EDIT!
Fixed the following:
Make Text Lighter
Change Text Font(Tahoma, Arial, sans-serif)
Fix Webkit(Safari, Google Chrome) Rendering Issue
IE Video display[/s]
« Last Edit: January 01, 2010, 06:17:50 PM by FireDart »

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 406
  • Karma: 4
    • View Profile
    • FireDart
Re: PHPDirector Version .30 - Released
« Reply #1 on: January 01, 2010, 06:19:30 PM »
PHPDirector Version .30 is Released, you can download the new package by going to the Download Page:
http://www.phpdirector.co.uk/index.php?id=2

Offline ruffa

  • phpd Basic Member
  • **
  • Posts: 39
  • Karma: 0
    • View Profile
Re: PHPDirector Version .30 - Public Beta
« Reply #2 on: January 02, 2010, 09:28:29 PM »
Can anyone tell me how to upgrade? i have .25 i think, want to upgrade to latest.
Can someone also remind me what goes in the localhost part of the fiel i need to edit? is that just the root URL or can u use */ or whatever it is?? /*?

I'm hoping that we will see a bulk uploader function in future, it takes ages to add videos when you have to type out all the video title+description each time, maybe i'm using an older verion, not sure. Look forward to trying the latest one.

thnx

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 406
  • Karma: 4
    • View Profile
    • FireDart
Re: PHPDirector Version .30 - Public Beta
« Reply #3 on: January 02, 2010, 10:59:01 PM »
Can anyone tell me how to upgrade? i have .25 i think, want to upgrade to latest.
Can someone also remind me what goes in the localhost part of the fiel i need to edit? is that just the root URL or can u use */ or whatever it is?? /*?

I'm hoping that we will see a bulk uploader function in future, it takes ages to add videos when you have to type out all the video title+description each time, maybe i'm using an older verion, not sure. Look forward to trying the latest one.

thnx

An upgrade is not currently available.

Am not sure what the problem is were you need to type up all the info for submitting a video. We fixed the problem in .25.


To make an upgrade file I guess we can use the below code from .25, just don't know how to edit it:
Code: [Select]
<?php
require('config.php'); // get the db connection info

$conn mysql_connect($cfg["db_host"], $cfg["db_user"], $cfg["db_pass"]);
mysql_select_db($cfg["db_name"]);
if(! 
$conn )
{
  die(
'Could not connect: ' mysql_error());
}
$sql 'UPDATE pp_config
        SET version=".25"
        WHERE version=".2"'
;
$retval mysql_query$sql$conn );

echo 
' Version has been updated to .25';

echo 
'<FORM><INPUT TYPE="BUTTON" VALUE="Go Back" 
ONCLICK="history.go(-1)"></FORM>
 '
;

if(! 
$retval )
{
  die(
'Could not create table: ' mysql_error());
}
mysql_close($conn);
?>