当前位置: 首页>>代码示例>>PHP>>正文


PHP Base::PathRelativo_Raiz方法代码示例

本文整理汇总了PHP中Base::PathRelativo_Raiz方法的典型用法代码示例。如果您正苦于以下问题:PHP Base::PathRelativo_Raiz方法的具体用法?PHP Base::PathRelativo_Raiz怎么用?PHP Base::PathRelativo_Raiz使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Base的用法示例。


在下文中一共展示了Base::PathRelativo_Raiz方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: PathRelativo_Descargas

 public static function PathRelativo_Descargas()
 {
     return Base::PathRelativo_Raiz() . "Descargas/";
 }
开发者ID:devildrey33,项目名称:devildrey33,代码行数:4,代码来源:devildrey33_Opciones.php

示例2: devildrey33

include "Web/devildrey33.php";
$Web = new devildrey33();
$Web->InicioPlantilla(basename(__FILE__), "devildrey33.es", "");
$ArrayDatos = (require dirname(__FILE__) . '/Web/Passwords.php');
// Valores de las configuraciones del htaccess
$htaccess = devildrey33_htaccess::ObtenerValores();
?>
    <article class='Blog' pagina='FaqBarba.php'>
        <br />
        <h2>Instal·lació</h2>
        <p>Et vaig dir que la web no funcionaba si no la posaves a l'arrel del servidor, però ara ja es pot fer anar desde un sub-directori.</p>
        <?php 
if ("/" . Base::PathRelativo_Raiz() !== $htaccess["RewriteBase"]) {
    echo "<p>Desde aquesta arrel " . Base::URL_Raiz() . " es necesita un '<code>RewriteBase /" . Base::PathRelativo_Raiz() . "</code>' i tens ho configurat com a '<code style='color:red; font-weight:bold'>RewriteBase " . $htaccess["RewriteBase"] . "</code>'. " . "Obre aquest enllaç per solucionar-ho : <a href='AsignarRaiz.php' target='_blank'>AsignarRaiz.php</a>, i despres recarrega el Faq.";
} else {
    echo "<p>Desde aquesta arrel " . Base::URL_Raiz() . " es necesita un '<code>RewriteBase /" . Base::PathRelativo_Raiz() . "</code>' i tens ho configurat com a '<code style='color:green; font-weight:bold'>RewriteBase " . $htaccess["RewriteBase"] . "</code>'. ";
}
?>
            <div class='nota'>No utulitzis espais ni caracters raros per l'arrel del directori. </div>
            <p>Si el <code>RewriteBase</code> no està configurat correctament, no funcionara cap enllaç que no estigui acabat amb <code>.php</code> ni tampoc funcionaran les peticions Ajax (el 99% de les peticions son al directori virtual <code>/cmd/</code>). </p>
        <ul>
            <li><b>Si vols accedir a la web desde http://localhost/directori web/</b> però pot ser que alguna imatge o alguna url no funcionin correctament.
            </li>
        <li><b>Si vols que la web funcioni al 100%</b> exactament com en el servidor de 1and1, hauras de configurar-te el servidor de forma que la web quedi a l'arrel, es a dir <b>NO VAL</b> : <code style="color:red">http://localhost/devildrey33</code>, hauras d'enllaçarte un domini d'aquest estil : <code style="color:green">http://devildrey33.st0rm</code> amb el VirtualHost dintre del httpd.conf (recorda que tambè hauras de modificar l'arxiu de hosts), o posar-la a <code style="color:green">http://localhost/</code> directament.</li>
        
<?php 
echo "<li><b>La web pot funcionar sense BD</b>, pero obviament no podras accedir a certes funcions. Si necesites les funcions de la BD (comentaris i stats varis) has de crear la BD <b>" . $ArrayDatos["NOM-BD"] . "</b> amb login '<b>root</b>', pass '<b>" . $ArrayDatos["PASS-Barba"] . "</b>'.</li>";
?>
        </ul>
        <hr />
        <h2>Conta</h2>
开发者ID:devildrey33,项目名称:devildrey33,代码行数:31,代码来源:FaqBarba.php

示例3: ReasignarPaths

 public static function ReasignarPaths()
 {
     $Datos = file_get_contents(Base::Path_Raiz() . ".htaccess");
     $PosInicio = strpos($Datos, "#INICIO Paths");
     $PosFin = strpos($Datos, "#FIN Paths");
     $DatosNuevos = substr($Datos, 0, $PosInicio);
     $Path = str_replace(" ", "%20", Base::PathRelativo_Raiz());
     $DatosNuevos .= "#INICIO Paths /" . $Path . "\r\n" . "# Document d'error (Comentar en localhost per veure els errors)\r\n" . "ErrorDocument 404 /" . $Path . "Web/Error404.php\r\n" . "\r\n" . "# Modul RewriteEngine per simular directoris en les propietats css\r\n" . "Options +FollowSymlinks\r\n" . "RewriteEngine on\r\n" . "# Base arrel del servidor\r\n" . "RewriteBase /" . $Path . "\r\n";
     $DatosNuevos .= substr($Datos, $PosFin, strlen($Datos) - $PosFin);
     file_put_contents(Base::Path_Raiz() . ".htaccess", $DatosNuevos);
 }
开发者ID:devildrey33,项目名称:devildrey33,代码行数:11,代码来源:devildrey33_htaccess.php

示例4:

<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
include 'Web/devildrey33_htaccess.php';
echo "<table>" . "<th>" . "<tr>" . "<td></td>" . "<td><code>Base::URL</code></td>" . "<td><code>Base::Path</code></td>" . "<td><code>Base::PathRelativo</code></td>" . "</tr>" . "</th>" . "<tr>" . "<td>Raíz</td>" . "<td>" . Base::URL_Raiz() . "</td>" . "<td>" . Base::Path_Raiz() . "</td>" . "<td>" . Base::PathRelativo_Raiz() . "</td>" . "</tr>" . "<tr>" . "<td>Web</td>" . "<td>" . Base::URL_Web() . "</td>" . "<td>" . Base::Path_Web() . "</td>" . "<td>" . Base::PathRelativo_Web() . "</td>" . "</tr>" . "<tr>" . "<td>JS</td>" . "<td>" . Base::URL_JS() . "</td>" . "<td>" . Base::Path_JS() . "</td>" . "<td>" . Base::PathRelativo_JS() . "</td>" . "</tr>" . "<tr>" . "<td>CSS</td>" . "<td>" . Base::URL_CSS() . "</td>" . "<td>" . Base::Path_CSS() . "</td>" . "<td>" . Base::PathRelativo_CSS() . "</td>" . "</tr>" . "<tr>" . "<td>Cache</td>" . "<td>" . Base::URL_Cache() . "</td>" . "<td>" . Base::Path_CSS() . "</td>" . "<td>" . Base::PathRelativo_CSS() . "</td>" . "</tr>" . "<tr>" . "<td>Graficos</td>" . "<td>" . Base::URL_Graficos() . "</td>" . "<td>" . Base::Path_Graficos() . "</td>" . "<td>" . Base::PathRelativo_Graficos() . "</td>" . "</tr>" . "<tr>" . "<td>Descargas</td>" . "<td>" . Base::URL_Descargas() . "</td>" . "<td>" . Base::Path_Descargas() . "</td>" . "<td>" . Base::PathRelativo_Descargas() . "</td>" . "</tr>" . "<tr>" . "<td>Blog</td>" . "<td>" . Base::URL_Blog() . "</td>" . "<td>" . Base::Path_Blog() . "</td>" . "<td>" . Base::PathRelativo_Blog() . "</td>" . "</tr>" . "<tr>" . "<td>Lab</td>" . "<td>" . Base::URL_Lab() . "</td>" . "<td>" . Base::Path_Lab() . "</td>" . "<td>" . Base::PathRelativo_Lab() . "</td>" . "</tr>" . "</table>";
devildrey33_htaccess::ReasignarPaths();
开发者ID:devildrey33,项目名称:devildrey33,代码行数:10,代码来源:AsignarRaiz.php


注:本文中的Base::PathRelativo_Raiz方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。