Avatar billede Chewie Novice
15. juni 2003 - 10:26 Der er 34 kommentarer og
1 løsning

TYPO3 - kan ikke kommer igang

Hej exp´er

Jeg har nøje fuldt denne nedestående guide til at komme igang med TYPO3 (CMS) men der opstår et problem ved punkt 3 (se guiden side 4) jeg får denne meddelse

---------
In the main source distribution of Typo3, the install script is disabled by a die() function call.
Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!
---------

jeg har uploadet det til en server på nettet (xx.frac.dk) så istedet for http://localhost/quickstart/ har jeg skrevet http://xxx.frac.dk/guickstart/ ???

guide >> http://typo3.sunsite.dk/documentation/quickstart_dk.pdf

nogle der ved hvad der kan være galt ??

(jeg er meget ny i det her)

chewie
Avatar billede jakobclausen Nybegynder
15. juni 2003 - 10:31 #1
Har du prøvet at gøre som der står i fejlmeddelse, at fjerne die() funktionen?
Avatar billede Chewie Novice
15. juni 2003 - 10:32 #2
jeg aner ikke hvor jeg skal fjerne den :(
Avatar billede Chewie Novice
15. juni 2003 - 10:52 #3
Avatar billede jakobclausen Nybegynder
15. juni 2003 - 11:08 #4
chewie >> Det står jo direkte i den meddelse du får. I filen typo3/install/index.php skal du fjerne die()
Avatar billede Chewie Novice
15. juni 2003 - 11:15 #5
OK ... men for mig at se stå der bare noget simpel tekst i index.php

<?php
/***************************************************************
*  Copyright notice

*  (c) 1999-2003 Kasper Skårhøj (kasper@typo3.com)
*  All rights reserved
*
*  This script is part of the Typo3 project. The Typo3 project is
*  free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
*
*  The GNU General Public License can be found at
http://www.gnu.org/copyleft/gpl.html.
*  A copy is found in the textfile GPL.txt and important notices to the license
*  from the author is found in LICENSE.txt distributed with these scripts.
*
*
*  This script is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/***************************************************************

Starter-script for install screen

****************************************************************/



// **************************************************************************
// Insert some security here, if you don't trust the Install Tool Password:
// **************************************************************************

    // This checks for my own IP at home. You can just remove the if-statement.
    die("In the main source distribution of Typo3, the install script is disabled by a die() function call.<BR>Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");



// *****************************************************************************
// Defining constants necessary for the install-script to invoke the installer
// *****************************************************************************
define("TYPO3_MOD_PATH", "install/");
$BACK_PATH="../";

    // Defining this variable and setting it non-false will invoke the install-screen called from init.php
define("TYPO3_enterInstallScript", "1");
require ("../init.php");

?>
Avatar billede jakobclausen Nybegynder
15. juni 2003 - 11:16 #6
hmm, og det er den der ligger i mappen install under typo3? For så har jeg ikke flere bud!
Avatar billede Chewie Novice
15. juni 2003 - 11:19 #7
og ingen die() funktion ( dette er typo3/install/index.php )
Avatar billede exp Juniormester
15. juni 2003 - 11:21 #8
i index.php laver du dette:
-----------------------------------------------------------

// **************************************************************************
// Insert some security here, if you don't trust the Install Tool Password:
// **************************************************************************

    // This checks for my own IP at home. You can just remove the if-statement.
    die("In the main source distribution of Typo3, the install script is disabled by a die() function call.<BR>Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");

--------------------------------------------------------

til dette:

--------------------------------------------------------

// **************************************************************************
// Insert some security here, if you don't trust the Install Tool Password:
// **************************************************************************

    // This checks for my own IP at home. You can just remove the if-statement.
    //die("In the main source distribution of Typo3, the install script is disabled by a die() function call.<BR>Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");

--------------------------------------------------------

Læg mærke til, at denne linie er udkommenteret (//):

--------------------------------------------------------

// die("In the main source distribution of Typo3, the install script is disabled by a die() function call.<BR>Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");
Avatar billede Chewie Novice
15. juni 2003 - 11:24 #9
<?php
/***************************************************************
*  Copyright notice

*  (c) 1999-2003 Kasper Skårhøj (kasper@typo3.com)
*  All rights reserved
*
*  This script is part of the Typo3 project. The Typo3 project is
*  free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
*
*  The GNU General Public License can be found at
http://www.gnu.org/copyleft/gpl.html.
*  A copy is found in the textfile GPL.txt and important notices to the license
*  from the author is found in LICENSE.txt distributed with these scripts.
*
*
*  This script is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/***************************************************************

Starter-script for install screen

****************************************************************/



// **************************************************************************
// Insert some security here, if you don't trust the Install Tool Password:
// **************************************************************************

    // This checks for my own IP at home. You can just remove the if-statement.
    //die("In the main source distribution of Typo3, the install script is disabled by a die() function call.<BR>Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");



// *****************************************************************************
// Defining constants necessary for the install-script to invoke the installer
// *****************************************************************************
define("TYPO3_MOD_PATH", "install/");
$BACK_PATH="../";

    // Defining this variable and setting it non-false will invoke the install-screen called from init.php
define("TYPO3_enterInstallScript", "1");
require ("../init.php");

?>

-----------

Sådan ??
Avatar billede Chewie Novice
15. juni 2003 - 11:27 #10
THX ..... nu funker det SUPER
Avatar billede exp Juniormester
15. juni 2003 - 17:27 #11
Det var så lidt :-)
Avatar billede sjtf Nybegynder
21. oktober 2003 - 10:38 #12
hej
Jeg har samme problem, men hvordan rette jeg sådan side? hvilket program skal jeg bruge, er det muligt at der er en der kan sende ming den rigtige side.

men venlig hilsen

sjtf
Avatar billede Chewie Novice
21. oktober 2003 - 10:45 #13
Avatar billede sjtf Nybegynder
21. oktober 2003 - 11:41 #14
hej igen

Er der en der kan hjælpe mig når jeg åbner siden kommer der alt dette det liner ikke de i sakriver, og jeg kan ikke finde rundt i det. er der en der kan skrive hvad det er der er fejl.

sjtf

<?php
/***************************************************************
*  Copyright notice

*  (c) 1999-2003 Kasper Skårhøj (kasper@typo3.com)
*  All rights reserved
*
*  This script is part of the Typo3 project. The Typo3 project is
*  free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
*
*  The GNU General Public License can be found at
http://www.gnu.org/copyleft/gpl.html.
*  A copy is found in the textfile GPL.txt and important notices to the license
*  from the author is found in LICENSE.txt distributed with these scripts.
*
*
*  This script is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* Login-screen of Typo3.
*
* GET vars:
* u=    default username
* p=    default password
* L=    'OUT' = logout
* A=    '1' (true) = Alternative backend
* redirect_url=    URL to redirect to instead of starting the TBE
*
* @author    Kasper Skårhøj <kasper@typo3.com>
*/

define("TYPO3_PROCEED_IF_NO_USER", 1);
require ("init.php");
require ("template.php");
require_once (PATH_t3lib."class.t3lib_loadmodules.php");


// ***************************
// Script Classes
// ***************************
class SC_index {
    var $content;
   
    var $loadModules;
    var $redirect_url;
    var $redirect_url_input;
    var $GPinterface;
    var $A;
    var $u;
    var $p;
    var $L;
    var $L_vars;
    var $interfaceSelector;
    var $forceA;

    function init()    {
        global $AB,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
        global $TBE_MODULES,$TBE_TEMPLATE;
       
        // ******************************
        // Registering Global Vars
        // ******************************
        $this->redirect_url = t3lib_div::GPvar("redirect_url");
        $this->redirect_url_input = $this->redirect_url ? 1 : 0;
        $this->GPinterface = t3lib_div::GPvar("interface");
        $this->A = t3lib_div::GPvar("A");        // If "A" is true, the alternative backend is started
       
        $this->forceA = 0;
        if ($CLIENT["BROWSER"]=="opera" || $CLIENT["BROWSER"]=="konqu" || ($CLIENT["BROWSER"]=="net" && $CLIENT["VERSION"]<6.1))    $this->forceA=1;        // Alternative Backend is forcibly started if netscape <6.1 or Opera.        //  || stristr(t3lib_div::getIndpEnv("HTTP_USER_AGENT"),"Netscape6")
       
        if ($this->forceA)    $this->A=1;
        if ($this->A && !$this->redirect_url_input)    {$this->redirect_url="alt_main.php";}    // Only change redirect_url if it has not been set from outside...
#debug($this->redirect_url);
       
        $this->u = t3lib_div::GPvar("u");        // preset username
        $this->p = t3lib_div::GPvar("p");        // preset password
        $this->L = t3lib_div::GPvar("L");        // If "L" is "OUT", then any logged in used is logged out. If redirect_url is given, we redirect to it
       
        // *********
        // Logout?
        // *********
        if ($this->L=="OUT" && is_object($BE_USER))    {
            $BE_USER->logoff();
            if ($this->redirect_url)    header("Location: ".t3lib_div::locationHeaderUrl($this->redirect_url));
            exit;
        }
       
        // ******************************
        // The modules are loaded - just so that any errors will show now and not later when the JavaScript loads
        // ******************************
        $this->loadModules = t3lib_div::makeInstance("t3lib_loadModules");
        $this->loadModules->load($TBE_MODULES);

        $this->L_vars = explode("|",$TYPO3_CONF_VARS["BE"]["loginLabels"]);
    }
    function main()    {
        global $AB,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
        global $TBE_MODULES,$TBE_TEMPLATE;
       
        $this->content="";
        $this->content.=$this->makeLoginLogoutForm();
        $this->content.=$this->makeStartHTML();
    }
    function makeLoginLogoutForm()    {
        global $AB,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
        global $TBE_MODULES,$TBE_TEMPLATE;

        $TBE_TEMPLATE->bgColor="#CCCCCC";
       
        // Code for the challenged form.
        $challenge = md5(uniqid(""));
       
        $content='
        <div align="center">
        <form action="index.php" method="POST" name="loginform" autocomplete="off">
        <table border=0 cellspacing=2 cellpadding=10 width="100%">
        <tr>
            <td bgcolor="'.$TBE_TEMPLATE->bgColor2.'" align="center">
                <table border=0 cellspacing=0 cellpadding=2>
                    <tr>
                        <td><img src="clear.gif" width=1 height=1 hspace=35></td>
                        <td><img src="clear.gif" width=1 height=1 hspace=5></td>
                        <td><img src="clear.gif" width=1 height=1 hspace=25></td>
                    </tr>
        ';
       
        $this->interfaceSelector = "";
        $interfaceHidden="";
        $interfaceSelector_jump = "";
        if ($TYPO3_CONF_VARS["BE"]["interfaces"] && !$this->redirect_url_input)    {
            $parts = t3lib_div::trimExplode(",",$TYPO3_CONF_VARS["BE"]["interfaces"]);
            if (count($parts)>1)    {
                $tempLabels=explode(",",$this->L_vars[5]);
                $labels=array();
                $labels["classic"]=$tempLabels[0];
                $labels["alternative"]=$tempLabels[1];
                $labels["frontend"]=$tempLabels[2];
               
                $jumpScript=array();
                $jumpScript["classic"]="main.php";
                $jumpScript["alternative"]="alt_main.php";
                $jumpScript["frontend"]="../";
               
                reset($parts);
                while(list(,$valueStr)=each($parts))    {
                    if (!$this->forceA || $valueStr!="classic")    {
                        $this->interfaceSelector.='<option value="'.$valueStr.'">'.htmlspecialchars($labels[$valueStr]).'</option>';
                        $interfaceSelector_jump.='<option value="'.$jumpScript[$valueStr].'">'.htmlspecialchars($labels[$valueStr]).'</option>';
                    }
                }
                $this->interfaceSelector='<select name="interface">'.$this->interfaceSelector.'</select>';
                $interfaceSelector_jump='<select name="interface" onChange="document.location=this.options[this.selectedIndex].value;">'.$interfaceSelector_jump.'</select>';
            } elseif (!$this->redirect_url_input) {
                $interfaceHidden='<input type="hidden" name="interface" value="'.trim($TYPO3_CONF_VARS["BE"]["interfaces"]).'">';
                $this->GPinterface=trim($TYPO3_CONF_VARS["BE"]["interfaces"]);
            }
        }

        $loginCopyrightWarrantyProvider = strip_tags(trim($GLOBALS["TYPO3_CONF_VARS"]["SYS"]["loginCopyrightWarrantyProvider"]));
        $loginCopyrightWarrantyURL = strip_tags(trim($GLOBALS["TYPO3_CONF_VARS"]["SYS"]["loginCopyrightWarrantyURL"]));
       
        if (strlen($loginCopyrightWarrantyProvider)>=2 && strlen($loginCopyrightWarrantyURL)>=10)    {
            $warrantyNote='Warranty is supplied by '.$loginCopyrightWarrantyProvider.'; <a href="'.$loginCopyrightWarrantyURL.'" target="_blank">click for details.</a>';
        } else {
            $warrantyNote='TYPO3 comes with ABSOLUTELY NO WARRANTY; <a href="http://typo3.com/1316.0.html" target="_blank">click for details.</a>';
        }
       
        if (!$BE_USER->user["uid"])    {
            // document.loginform.p_field.focus();  ... was in the username field once...
            $content.='
                    <tr>
                        <td nowrap><font face="VERDANA,ARIAL,SANS-SERIF" size="2"><b>'.$this->L_vars[0].':</b></font></td>
                        <td></td>
                        <td nowrap><input type="Text" name="username" value="'.$this->u.'"'.$TBE_TEMPLATE->formWidth(10).' onBlur="if(parent.typoWin && parent.typoWin.TS){this.value=parent.typoWin.TS.username;}"></td>
                    </tr>
                    <tr>
                        <td nowrap><font face="VERDANA,ARIAL,SANS-SERIF" size="2"><b>'.$this->L_vars[1].':</b></font></td>
                        <td></td>
                        <td nowrap><input type="password" name="p_field" value="'.$this->p.'"'.$TBE_TEMPLATE->formWidth(10).'></td>
                    </tr>';
            if ($this->interfaceSelector && !t3lib_div::GPvar("loginRefresh"))    {
            $content.='<tr>
                            <td nowrap><font face="VERDANA,ARIAL,SANS-SERIF" size="2"><b>'.$this->L_vars[2].':</b></font></td>
                            <td></td>
                            <td nowrap>'.$this->interfaceSelector.'</td>
                        </tr>';
            }
            $content.='<tr>
                        <td nowrap></td>
                        <td></td>
                        <td nowrap><input type="Submit" name="commandLI" value="'.$this->L_vars[3].'" onClick="document.loginform.login_status.value=\'login\';doChallengeResponse();"></td>
                    </tr>
            ';
            $content.='<tr>
                        <td colspan=3 align="center"><font face="VERDANA,ARIAL,SANS-SERIF" size="1" color="#666666">'.$this->L_vars[7].'</font></td>
                    </tr>
            ';
        } else {
            if ($interfaceSelector_jump)    {
            $content.='<tr>
                            <td nowrap><font face="VERDANA,ARIAL,SANS-SERIF" size="2"><b>'.$this->L_vars[2].':</b></font></td>
                            <td></td>
                            <td nowrap>'.$interfaceSelector_jump.'</td>
                        </tr>';
            $content.='<tr>
                            <td colspan=3>&nbsp;</td>
                        </tr>';
            }
            $content.='
                    <tr>
                        <td nowrap><B><font face="VERDANA,ARIAL,SANS-SERIF" size="2">&nbsp;&nbsp;'.$BE_USER->user["username"].'&nbsp;&nbsp;</font></b></td>
                        <td></td>
                        <td nowrap><input type="Hidden" name="p_field" value=""><input type="Submit" name="commandLO" value="'.$this->L_vars[4].'" onClick="document.loginform.p_field.value=\'\'; document.loginform.login_status.value=\'logout\';"></td>
                    </tr>
            ';
        }
        $content.='
                </table>
            </td>
        </tr>
        </table>

       
        <div align="left" style="text-align:left;font-family: verdana,arial,helvetica; font-size:10px; margin-top:10px; width:500px;"><a href="http://typo3.com/" target="_blank"><img src="gfx/loginlogo_transp.gif" width="75" vspace=2 height="19" alt="TYPO3 logo" border="0" align="left">TYPO3 CMS'.($GLOBALS["TYPO3_CONF_VARS"]["SYS"]["loginCopyrightShowVersion"]?' ver. '.htmlspecialchars($GLOBALS["TYPO_VERSION"]):'').'</a>. Copyright &copy; 1998-2003 Kasper Skårhøj. Extensions are copyright of their respective owners. Go to <a href="http://typo3.com/" target="_blank">http://typo3.com/</a> for details.
        '.strip_tags($warrantyNote,'<a>').' This is free software, and you are welcome to redistribute it under certain conditions; <a href="http://typo3.com/1316.0.html" target="_blank">click for details</a>. Obstructing the appearance of this notice is prohibited by law.
        </div>
       
        <input type="Hidden" name="userident" value="">
        <input type="Hidden" name="challenge" value="'.$challenge.'">
        <input type="Hidden" name="redirect_url" value="'.htmlspecialchars($this->redirect_url).'">
        <input type="Hidden" name="loginRefresh" value="'.t3lib_div::GPvar("loginRefresh").'">
        <input type="Hidden" name="login_status" value="">
        '.$interfaceHidden.'
        </form>
        </div>
        ';
       
        return $content;
    }
    function makeStartHTML()    {
        global $AB,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$HTTP_GET_VARS,$HTTP_POST_VARS,$CLIENT,$TYPO3_CONF_VARS;
        global $TBE_MODULES,$TBE_TEMPLATE;

        $content="";;

        if (!$BE_USER->user["uid"])    {
            $content.='
            <script language="JavaScript">
              if (parent.typoWin && parent.typoWin.TS)    {
                  document.loginform.username.value = parent.typoWin.TS.username;
              }
              if (document.loginform.username.value == \'\') {
                document.loginform.username.focus();
              } else {
                document.loginform.p_field.focus();
              }
            </script>
            ';
        }
       
        // If a users is logged in:
        // AND if either the login is just done (commandLI) or a loginRefresh is done or the interface-selector is NOT enabled (If it is on the other hand, it should not just load an interface, because people has to choose then...)
        if ($BE_USER->user["uid"] && (t3lib_div::GPvar("commandLI") || t3lib_div::GPvar("loginRefresh") || !$this->interfaceSelector))    {
            if (!$GLOBALS["HTTP_COOKIE_VARS"][$BE_USER->name])    {
                t3lib_BEfunc::typo3PrintError ("Login-error","Yeah, that's a classic. No cookies, no TYPO3.<BR><BR>Please accept cookies from TYPO3 - otherwise you'll not be able to use the system.",0);
                exit;
            }
#debug($this->redirect_url,1);
#debug($this->GPinterface);
            switch ($this->GPinterface)    {
                case "classic":
                    if (!$this->forceA)    $this->redirect_url="";
                break;
                case "alternative":
                    $this->redirect_url = "alt_main.php";
                break;
                case "frontend":
                    $this->redirect_url = "../";
                break;
            }
#debug($this->redirect_url,1);
#debug(t3lib_div::locationHeaderUrl($this->redirect_url),1);
       
       
            if ($this->redirect_url && !t3lib_div::GPvar("loginRefresh"))    {
                header("Location: ".t3lib_div::locationHeaderUrl($this->redirect_url));
                exit;
            } else {
                if ($BE_USER->uc["winH"] && $BE_USER->uc["winW"])    {
                    $winH=t3lib_div::intInRange($BE_USER->uc["winH"],500,1200);
                    $winW=t3lib_div::intInRange($BE_USER->uc["winW"],500,1200);    // Standard value is 655
                    $winWidth='height='.$winH.',width='.$winW.',';
                } else {
                    $winWidth='';
                }
               
                $JSwindowParams = $BE_USER->uc["JSwindowParams"] ?  $BE_USER->uc["JSwindowParams"] : $winWidth.'status=1,menubar=0,resizable='.($CLIENT["BROWSER"]=="msie" || ($CLIENT["BROWSER"]=="net" && $CLIENT["VERSION"]>=6)? 1 : 0);
               
                $content.='
                <script language="JavaScript">
                    var openD = '.($BE_USER->uc["openDirectly"]?1:0).';
                    var openA = '.($BE_USER->uc["alternativeBackend"]&&t3lib_div::GPvar("interface")!="classic"?1:0).';
               
                    function start()    {
                        var time = new Date();
                        var theCount=time.getSeconds();
                        if (openD)    {theCount = "";    }
                        theCount+="'.md5(t3lib_div::getIndpEnv("HTTP_HOST")).'";
                        window.open("main.php","typowin_"+theCount,"'.$JSwindowParams.'");
                    }
               
                    if (parent.typoWin && parent.typoWin.busy) {
                        parent.typoWin.busy.loginRefreshed();
                        parent.close();
                    } else if (top.opener && top.opener.busy) {
                        top.opener.busy.loginRefreshed();
                        top.close();
                    } else if (top.opener && top.opener.TBE_EDITOR_loginRefreshed) {
                        top.opener.TBE_EDITOR_loginRefreshed();
                        top.close();
                    } else {
                        if (openA) {
                            document.location = "alt_main.php";
                        } else if (openD)    {
                            document.location = "../";
                            start();
                        } else {
                            if (confirm("'.$LANG->php3Lang["mess"]["start_typo3"].'"))    {
                                document.location = "../";
                                start();
                            }
                        }
                    }
                </script>
                ';
                $content.="<BR>".$TBE_TEMPLATE->fontwrap($LANG->php3Lang["mess"]["close_login"].'<BR><BR><A href="#" onClick="start();">Start Typo3</a>');
            }
        }
        return $content;
    }
    function printContent()    {
        global $TBE_MODULES,$TBE_TEMPLATE;

        $TBE_TEMPLATE->topSpace=0;

        echo $TBE_TEMPLATE->startPage("Typo3 Login");
        echo '
        <SCRIPT LANGUAGE="JavaScript" SRC="md5.js"></SCRIPT>
        <script language="javascript">
          function doChallengeResponse() {
              password = document.loginform.p_field.value;
            if (password)    {
                password = MD5(password);    // this makes it superchallenged!!
                str = document.loginform.username.value+":"+password+":"+document.loginform.challenge.value;
                document.loginform.userident.value = MD5(str);
                document.loginform.p_field.value = "";
                document.loginform.submit();
            }
          }
        </script>';
       
        t3lib_BEfunc::typo3PrintError ($this->L_vars[6],$this->content,"",0);
        echo $TBE_TEMPLATE->endPage();
    }
   
    // ***************************
    // OTHER FUNCTIONS:   
    // ***************************
}

// Include extension?
if (defined("TYPO3_MODE") && $TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["typo3/index.php"])    {
    include_once($TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["typo3/index.php"]);
}












// Make instance:
$SOBE = t3lib_div::makeInstance("SC_index");
$SOBE->init();
$SOBE->main();
$SOBE->printContent();
?>
Avatar billede sjtf Nybegynder
21. oktober 2003 - 11:57 #15
det var den forkerte index jeg fant efter at have fundet den nye og rettede den får jeg denn fejl når jeg skriver http://www.bookmakerportalen.dk/quickstart/

Cannot find configuration. This file is probably executed from the wrong location.
er der en der ved hvad der er galdt

sjtf
Avatar billede Chewie Novice
21. oktober 2003 - 12:03 #16
ligger der en index.php i folderen /quickstart/ ?
Avatar billede sjtf Nybegynder
21. oktober 2003 - 12:50 #17
ja det er der.

sjtf
Avatar billede Chewie Novice
21. oktober 2003 - 13:13 #18
har du sat chmod 777 på de filer der bliver oplyst under installationen (til sidst) ?
Avatar billede sjtf Nybegynder
21. oktober 2003 - 15:38 #19
nej, hvad er det, er ikke en ørn til at programer.
Avatar billede Chewie Novice
21. oktober 2003 - 15:49 #20
hvis du tør stole på mig ... så send alle informationerne til mig ... så skal jeg sætte det op for dig (iaften) srk(at)langdraget(dot)dk
Avatar billede sjtf Nybegynder
21. oktober 2003 - 16:11 #21
er det mine ftp og password du skal bruge?
sjtf
Avatar billede Chewie Novice
21. oktober 2003 - 16:31 #22
Ja og mysql oplysninger

slet det gamle og upload en ren installation (så er jeg fri for at gøre det)
Avatar billede sjtf Nybegynder
24. oktober 2003 - 00:00 #23
Hej
Nu har jeg fået indtaleret typo3 og skal til at lave en side men får denne fejl er der nogle der ved hvad der er?

Fatal error: Call to undefined function: imagegif() in /customers/bookmakerportalen.dk/bookmakerportalen.dk/httpd.www/t3lib/class.t3lib_stdgraphic.php on line 1405


sjtf
Avatar billede Chewie Novice
24. oktober 2003 - 09:20 #24
et eller andet sted i admin delen kan man indstille hvordan typo3 skal pakke billederne. med Glib eller imagemagic .... jeg kan ikke huske hvor :-( (du slå begge funktioner fra)

chewie
Avatar billede Chewie Novice
24. oktober 2003 - 09:27 #25
det er under "installation" (password) "all configuration" fjern hakket i "[gif_compress]"

chewie
Avatar billede sjtf Nybegynder
24. oktober 2003 - 12:01 #26
tak nu virker det, lige en sidste ting, hvordan fjerner jeg det der powered by typo3.

sjtf
Avatar billede Chewie Novice
24. oktober 2003 - 12:16 #27
Hvor ?
Avatar billede sjtf Nybegynder
24. oktober 2003 - 12:20 #28
det er på alle sider Se www.bookmakerportalen.dk
Avatar billede Chewie Novice
24. oktober 2003 - 12:24 #29
hvilken mappe ligger dit typo3 i ?

nomalt ser den sådan ud http://www.bookmakerportalen.dk/quickstart/index.php

du laver så en vidrestilling fra www.bookmakerportalen.dk til http://www.bookmakerportalen.dk/quickstart/
Avatar billede sjtf Nybegynder
24. oktober 2003 - 12:25 #30
jeg tænker på at der en box hvor der står powered by typo3
sjtf
Avatar billede Chewie Novice
24. oktober 2003 - 12:38 #31
sorry det kan jeg ikke huske .... :-|
Avatar billede sjtf Nybegynder
28. oktober 2003 - 11:48 #32
Hej

hvordan dowenloader jeg nye funktioner til typo3?

sjtf
Avatar billede exp Juniormester
28. oktober 2003 - 11:50 #33
Avatar billede sjtf Nybegynder
29. oktober 2003 - 11:55 #34
Hej når jeg prøver at logge på for at dowenloade får jeg følgne fejl:
Warning: fopen("http://ter.typo3.com/?id=t3_extrep&tx_extrep[T3instID]=N%2FA&tx_extrep[returnUrl]=http%3A%2F%2Fwww.bookmakerportalen.dk%2Ftypo3%2Fmod%2Ftools%2Fem%2Findex.php%3Fter_connect%3D1&tx_extrep[gzcompress]=1&tx_extrep[user][fe_u]=rndsijoo&tx_extrep[user][fe_p]=cfischer&tx_extrep[cmd]=currentListing&tx_extrep[listmode]=1", "r") - No such file or directory in /customers/bookmakerportalen.dk/bookmakerportalen.dk/httpd.www/typo3/t3lib/class.t3lib_div.php on line 1179

kan du hjælpe min med hvad der er galt.

sjtf
Avatar billede Chewie Novice
29. oktober 2003 - 12:07 #35
soory men jeg her ikke prøvet at installere dem .... så jeg ved ikke hvad der kan være glat :o(

chewie
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester



Seneste spørgsmål Seneste aktivitet
I går 23:37 Poe strøm Af lurup i LAN/WAN
I går 14:46 GIF-EDITOR Af snestrup2000 i Billedbehandling
I går 14:03 Logge ind Af Bob i PC
I går 12:12 2 skærme - 1 virker - den anden siger No signal Af eksmojo i Skærme
I går 10:33 openvpn projekt Af dcedata1977 i Windows