View Single Post
  #62  
Old 23rd July 2012, 02:27
Joe Joe is offline
Senior Member
 
Join Date: Apr 2010
P2P
Posts: 167
Default
What the hell it seems a mess as unable to do any install from your beta site missing folders an crap .. Really want other to help you beta test this shit .. Get your crap together before you release this shit at lease when other do it all some what works .. include(PATH_CONFIGS . "database.php"); <<< missing This file is not even in there ... FFS so how do you all thing one will do with out all it peaces
"Configs" => PATH_CONFIGS,
"Avatars" => PATH_AVATARS, << missing
"Torrents" => PATH_TORRENTS,
"Imdb Posters" => PATH_IMAGES . "/imdb/", <<< Missing

finish you setup folder an make sure all your folders there So we can help you debug it ..

This is your install guide an it whacked

Click the image to open in full size.

Bump: OMG making some progress here

openTracker Installation


Warning: mysql_connect(): Access denied for user 'root'@'localhost' (using password: NO) in /var/www/html/setup/index.php on line 43
Access denied for user 'root'@'localhost' (using password: NO)


FFS not even got to add my SQL DB info yet FFS really guys you need some real help on this as you putting up stuff that others need to finish your coding if you need help ask not say we good to go .. you site is junk no real support who the hell is the support over there please do tell no live or local help .. This error should not come from fresh server install .

Here

Code:
            case 'step1':
                $html .= "<h5>MySQL check</h5>";
                include(PATH_CONFIGS . "database.php");
                if (isset($config['mysql'])) {
                    $conn = mysql_connect($config['mysql']['hostname'], $config['mysql']['username'], $config['mysql']['password']) or die(mysql_error());
                    if ($conn) {
                        $s = mysql_select_db($config['mysql']['database']) or die(mysql_error());
                        if ($s) {
                            $html .= "<font color='green'>Mysql connection successfully made.</font>";
                            $html .= "<br /><br /><form method='get' action='index.php'><input type='hidden' name='step' value='step2' /><input type='submit' value='Install' /></form>";
                        }
                    }
                }
                break;
So as it shows in post how to install it an you see its not given me the section to add my DB shit so get your shit together again ..

Last edited by Joe; 23rd July 2012 at 02:46.
Reply With Quote