Fork me on GitHub


 Bas   Précédent   Suivant

(1) 2 3 4 5 »


Re: erreur theme.php line 442
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
salut
tu la trouvera tout simplement en haut a droite de la page d'accueil!
a+

Posté le : 24/07/2006 09:07
Transférer la contribution vers d'autres applications Transférer


Re: créer des pages internes
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
salut pacey,
si tu ve créer ces pages, il existe le module icontent, que tu trouvera dans la catégorie 'gestion de contenu' dans les téléchargements. il te permet de créer des pages html et de les relier à ta page d'accueil (via multimenu si tu veut).
a+

Posté le : 24/07/2006 08:48
Transférer la contribution vers d'autres applications Transférer


Re: problème pour mon transfert de site
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
le message d'erreur qui s'affiche est:
"This page cannot be displayed due to an internal error.

If you are the administrator of this site, please visit the Xoops Troubleshooting Page for assistance."

comme j'ai di tout à l'heure, je sais pa si tu connais, mais je me sert de server sme7, c'est a dire qu'en gros j'ai mon propre serveur dans l'entreprise et j'y ai accès, donc il me sufffit tout simplement de copier le dossier plutôt que de faire un transfert ftp. (donc l'url c pa un probleme, je pe la changer rapidement.)

Posté le : 19/07/2006 16:08
Transférer la contribution vers d'autres applications Transférer


Re: problème pour mon transfert de site
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
bon, g tout réessayé, mais sa ne marche toujours pas, je commence à désespérer! est ce ke qqun sait comment faire, moi je n'ai pas d'idée! merci d'avance.

Posté le : 19/07/2006 14:54
Transférer la contribution vers d'autres applications Transférer


Re: problème pour mon transfert de site
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
j'ai déjà essayé cette méthode mais sa ne m'aide pas.
Avant de la faire on me disait kon ne pouvait pas trouver la page, et une foi ke je l'ai fait, on m'a dit le message d'erreur que je t'ai montré au début.

Posté le : 19/07/2006 10:17
Transférer la contribution vers d'autres applications Transférer


Re: problème pour mon transfert de site
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
lorsque je met /html/ en plus, on me dit kon ne pe pas trouver la page.
en fait je me sert du serveur sme, c'est à dire que l'entreprise ou je suis à son propre serveur et je m'heberge donc physiquement sur place, mais avec sme server, normalement, on a pas besoin de mettre /html/ même s'il est présent, sa se trouve tout seul. donc je ne comprend pa pk sa ne ve pa s'afficher.

Posté le : 19/07/2006 09:48
Transférer la contribution vers d'autres applications Transférer


problème pour mon transfert de site
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
j'ai fait un transfert de mon site, j'ai corriger le mainfile.php comme décrit dans les aides du site et quand je tape mon adresse je li:

This page cannot be displayed due to an internal error.

If you are the administrator of this site, please visit the Xoops Troubleshooting Page for assistance.

et voici le contenu de mon mainfile.php:

<?php
// $Id: mainfile.dist.php 507 2006-05-26 23:39:35Z skalpa $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <http://www.xoops.org/> //
// ------------------------------------------------------------------------ //
// This program 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. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program 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. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //

if ( !defined("XOOPS_MAINFILE_INCLUDED") ) {
define("XOOPS_MAINFILE_INCLUDED",1);

// XOOPS Physical Path
// Physical path to your main XOOPS directory WITHOUT trailing slash
// Example: define('XOOPS_ROOT_PATH', '/home/e-smith/files/ibays/xoops/html/htdocs');
define('XOOPS_ROOT_PATH', '/home/e-smith/files/ibays/xoops/html/htdocs');

// XOOPS Virtual Path (URL)
// Virtual path to your main XOOPS directory WITHOUT trailing slash
// Example: define('XOOPS_URL', 'http://192.1.1.210/xoops/htdocs');
define('XOOPS_URL', 'http://192.1.1.210/xoops/htdocs');

define('XOOPS_CHECK_PATH', 1);
// Protect against external scripts execution if safe mode is not enabled
if ( XOOPS_CHECK_PATH && !@ini_get('safe_mode') ) {
if ( function_exists('debug_backtrace') ) {
$xoopsScriptPath = debug_backtrace();
if ( !count($xoopsScriptPath) ) {
die("XOOPS path check: this file cannot be requested directly");
}
$xoopsScriptPath = $xoopsScriptPath[0]['file'];
} else {
$xoopsScriptPath = isset($_SERVER['PATH_TRANSLATED']) ? $_SERVER['PATH_TRANSLATED'] : $_SERVER['SCRIPT_FILENAME'];
}
if ( DIRECTORY_SEPARATOR != '/' ) {
// IIS6 may double the \ chars
$xoopsScriptPath = str_replace( strpos( $xoopsScriptPath, '\\\\', 2 ) ? '\\\\' : DIRECTORY_SEPARATOR, '/', $xoopsScriptPath);
}
if ( strcasecmp( substr($xoopsScriptPath, 0, strlen(XOOPS_ROOT_PATH)), str_replace( DIRECTORY_SEPARATOR, '/', XOOPS_ROOT_PATH)) ) {
exit("XOOPS path check: Script is not inside XOOPS_ROOT_PATH and cannot run.");
}
}

// Database
// Choose the database to be used
define('XOOPS_DB_TYPE', 'mysql');

// Table Prefix
// This prefix will be added to all new tables created to avoid name conflict in the database. If you are unsure, just use the default 'xoops'.
define('XOOPS_DB_PREFIX', 'xoops');

// Database Hostname
// Hostname of the database server. If you are unsure, 'localhost' works in most cases.
define('XOOPS_DB_HOST', 'localhost');

// Database Username
// Your database user account on the host
define('XOOPS_DB_USER', 'root');

// Database Password
// Password for your database user account
define('XOOPS_DB_PASS', '');

// Database Name
// The name of database on the host. The installer will attempt to create the database if not exist
define('XOOPS_DB_NAME', 'xoops');

// Use persistent connection? (Yes=1 No=0)
// Default is 'Yes'. Choose 'Yes' if you are unsure.
define('XOOPS_DB_PCONNECT', 0);

define('XOOPS_GROUP_ADMIN', '1');
define('XOOPS_GROUP_USERS', '2');
define('XOOPS_GROUP_ANONYMOUS', '3');

foreach ( array('GLOBALS', '_SESSION', 'HTTP_SESSION_VARS', '_GET', 'HTTP_GET_VARS', '_POST', 'HTTP_POST_VARS', '_COOKIE', 'HTTP_COOKIE_VARS', '_REQUEST', '_SERVER', 'HTTP_SERVER_VARS', '_ENV', 'HTTP_ENV_VARS', '_FILES', 'HTTP_POST_FILES', 'xoopsDB', 'xoopsUser', 'xoopsUserId', 'xoopsUserGroups', 'xoopsUserIsAdmin', 'xoopsConfig', 'xoopsOption', 'xoopsModule', 'xoopsModuleConfig', 'xoopsRequestUri') as $bad_global ) {
if ( isset( $_REQUEST[$bad_global] ) ) {
header( 'Location: '.XOOPS_URL.'/' );
exit();
}
}

if (!isset($xoopsOption['nocommon']) && XOOPS_ROOT_PATH != '') {
include XOOPS_ROOT_PATH."/include/common.php";
}
}
?>

Pouvez vous m'aider a comprendre pourquoi sa ne marche pas?

Posté le : 19/07/2006 09:24
Transférer la contribution vers d'autres applications Transférer


Re: IE/FF
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
en fait je crois que j'ai compris, d'après mes test, je pense que sous FF le <br /> donne un saut plus petit que sur IE tout simplement, c'est pour sa que ça m'a trompé.est ce bien ça?

Posté le : 17/07/2006 18:39
Transférer la contribution vers d'autres applications Transférer


Re: IE/FF
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
voici la source de ma page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="content-language" content="fr" />
<meta name="robots" content="index,follow" />
<meta name="keywords" content="news, technology, headlines, xoops, xoop, nuke, myphpnuke, myphp-nuke, phpnuke, SE, geek, geeks, hacker, hackers, linux, software, download, downloads, free, community, mp3, forum, forums, bulletin, board, boards, bbs, php, survey, poll, polls, kernel, comment, comments, portal, odp, open, source, opensource, FreeSoftware, gnu, gpl, license, Unix, *nix, mysql, sql, database, databases, web site, weblog, guru, module, modules, theme, themes, cms, content management, loire, modelage, moule, modèle, forme, drapage, outillage, support, découpe, assemblage moyen, contrôle, machine, CFAO, fabrication" />
<meta name="description" content="XOOPS is a dynamic Object Oriented based open source portal script written in PHP." />
<meta name="rating" content="general" />
<meta name="author" content="XOOPS" />
<meta name="copyright" content="Copyright © 2001-2006" />
<meta name="generator" content="Microsoft FrontPage 5.0" />
<title>Loire Modelage - </title>
<link href="http://127.0.0.1/xoops/htdocs/favicon.ico" rel="SHORTCUT ICON" />
<link rel="stylesheet" type="text/css" media="screen" href="http://127.0.0.1/xoops/htdocs/xoops.css" />
<link rel="stylesheet" type="text/css" media="screen" href="http://127.0.0.1/xoops/htdocs/themes/default/style.css" />
<!-- RMV: added module header -->
<script type="text/javascript">
<!--

//-->
</script>
<table cellspacing="0" width="100%">
<tr>
<td id="headerbar" width="100%">
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<script type="text/javascript" src="http://127.0.0.1/xoops/htdocs/include/xoops.js">
</script>

<table cellspacing="0" width="100%">
<tr id="header">
<td id="headerlogo" width="15%"><p align="left">
<img src="http://127.0.0.1/xoops/htdocs/themes/default/logo5.gif" width="100%" height="90"></p></td>
<td id="headerbanner" width="100%"><p align="center"><img src="http://127.0.0.1/xoops/htdocs/themes/default/BDX8.jpg" width="100%" height="90"></td>
</tr>
</table>
</head>
<body>
<img src="http://127.0.0.1/xoops/htdocs/themes/default/hbar3.jpg" width="100%" height="20">
<table cellspacing="0">
<tr>
<td id="leftcolumn">
<!-- Start left blocks loop -->
<div class="blockTitle">Menu utilisateur</div>
<div class="blockContent"><table cellspacing="0">
<tr>
<td id="usermenu">
<a class="menuTop" href="http://127.0.0.1/xoops/htdocs/admin.p ... ;Administration</a>
<a href="http://127.0.0.1/xoops/htdocs/user.php">Voir son compte</a>
<a href="http://127.0.0.1/xoops/htdocs/edituser.php">Editer son compte</a>
<a href="http://127.0.0.1/xoops/htdocs/notific ... t;Notifications</a>
<a href="http://127.0.0.1/xoops/htdocs/viewpms ... ot;>Messages</a>
<a href="http://127.0.0.1/xoops/htdocs/user.ph ... acute;connexion</a>
</td>
</tr>
</table></div> <div class="blockTitle">Menu principal</div>
<div class="blockContent"> <!-- Start multiMenu 01 -->

<!--[if gte IE 5.5]>
<iframe id="dropmenuiframe01" src="" style="z-index:99;display:none;position:absolute;"></iframe>
<![endif]-->

<style type="text/css">

#dropmenudiv01 {
position:absolute;
margin-left:157px;
/*_margin-left:157px;*/
html>body margin-left:20px;
*> margin-left:156px;margin-top:-23px;
_margin-top:-25px;
border: 1px solid black;
border-bottom-width: 0;
}

#dropmenudiv01 a {
width: 154px;
display: block;
text-indent: 12px;
_text-indent: 12px;
border-bottom: 1px solid black;
padding: 4px 0;;
_padding: 4px 15px;
background: url('http://127.0.0.1/xoops/htdocs/modules ... t/images/arrow1.gif');
background-repeat: no-repeat;
background-position: left 50%;
}

#dropmenudiv01 a:hover{ /*hover background color*/
}

.menuTop a {
cursor:pointer;
}

</style>

<script language="JavaScript" type="text/javascript">
// Settings variables
var menuwidth01='270px' //default menu width
var menubgcolor01='#EEE' //menu bgcolor
var disappeardelay01='100' //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick01='yes' //hide menu when user clicks within menu?

//Contents for menu


var menu011=new Array()

var menu012=new Array()

menu012[1]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=19" title="Modèles et maquettes">Modèles et maquettes</a>'

menu012[2]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=20" title="Outillages d\'emboutissage">Outillages d\'emboutissage</a>'

menu012[3]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=26" title="Moules pour résines et composites">Moules pour résines et composites</a>'

menu012[4]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=21" title="Supports de découpe">Supports de découpe</a>'

menu012[5]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=27" title="Postes de travail">Postes de travail</a>'

menu012[6]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=22" title="Moyens de contrôle">Moyens de contrôle</a>'

var menu013=new Array()

menu013[1]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=23" title="Moyens CFAO">Moyens CFAO</a>'

menu013[2]='<a href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=24" title="Moyens de fabrication">Moyens de fabrication</a>'

var menu014=new Array()

var menu015=new Array()

var menu016=new Array()
</script>

<script language="JavaScript" type="text/javascript" src="http://127.0.0.1/xoops/htdocs/modules ... "></script>




<table cellspacing="0" cellpadding="0">
<tr>
<td id="mainmenu">


<!-- Main link -->
<a class="menuTop" title="Accueil"
href="http://127.0.0.1/xoops/htdocs/">

Accueil
</a>



<!-- Main link -->

<a style="background-image: url('http://127.0.0.1/xoops/htdocs/modules ... t/images/arrow2.gif'); background-repeat: no-repeat; background-position: right 50%;" class="menuMain" title="Produits"
target="_parent" href="http://127.0.0.1/xoops/htdocs/modules/multiMenu/" onmouseover="dropdownmenu01(this, event, menu012, menuwidth01)"
onmouseout="delayhidemenu01()">
Produits
</a>















<!-- Main link -->

<a style="background-image: url('http://127.0.0.1/xoops/htdocs/modules ... t/images/arrow2.gif'); background-repeat: no-repeat; background-position: right 50%;" class="menuMain" title="Moyens"
target="_parent" href="http://127.0.0.1/xoops/htdocs/modules/multiMenu/" onmouseover="dropdownmenu01(this, event, menu013, menuwidth01)"
onmouseout="delayhidemenu01()">
Moyens
</a>







<!-- Main link -->
<a class="menuMain" title="News"
href="http://127.0.0.1/xoops/htdocs/modules/altern8news/">

News
</a>



<!-- Main link -->
<a class="menuMain" title="Contacts"
href="http://127.0.0.1/xoops/htdocs/modules ... dex.php?page=25">

Contacts
</a>




<!-- Main link -->
<a class="menuMain"
href="http://127.0.0.1/xoops/htdocs/modules ... t/index.php?page=28" title="Plan d'accès">

Plan d'accès
</a>

</td>
</tr>
</table>
<!-- End multiMenu 01 -->
</div> <!-- End left blocks loop -->

</td>

<td id="centercolumn">
<!-- Display center blocks if any -->
<table cellspacing="0">
<tr>
<td id="centerCcolumn" colspan="2">
<!-- Start center-center blocks loop -->
<div style="padding: 5px;">
<fieldset>
<legend class="blockTitle"></legend>
<div class="blockContent"><html>
<p align="center"><font size="8"><font face="Helvetica"><b><font color="#0000ff">L</font>oire <font color="#0000ff">M</font>odelage</b></font></font></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<font face="Helvetica">
<p align="center"><font size="5">Modèles, outillages et équipements industriels</font></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p align="center"><font size="5">pour le formage, la découpe, l’assemblage et le contrôle</font></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p align="center"><font size="5">des métaux, des plastiques et des composites.</font></p>
</font>
</html></div>
</fieldset>
</div> <!-- End center-center blocks loop -->
</td>
</tr>
<tr>
<td id="centerLcolumn">
<!-- Start center-left blocks loop -->
<!-- End center-left blocks loop -->
</td>
<td id="centerRcolumn">
<!-- Start center-right blocks loop -->
<!-- End center-right blocks loop -->
</td>
</tr>
</table>
<!-- End display center blocks -->
<div id="content">

</div>
</td>
<td id="rightcolumn">
<!-- Start right blocks loop -->
<div class="blockTitle">Recherche</div>
<div class="blockContent"><form style="margin-top: 0px;" action="http://127.0.0.1/xoops/htdocs/search.php" method="get">
<input type="text" name="query" size="14" /><input type="hidden" name="action" value="results" /><br /><input type="submit" value="Recherche" />
</form>
<a href="http://127.0.0.1/xoops/htdocs/search.php">Recherche avancée</a></div> <div class="blockTitle">Calendrier</div>
<div class="blockContent">
<table border='0' cellspacing='0' cellpadding='0' width='150' style='width:150px;line-height:normal;margin:0px;'>
<tr>
<td width='150' class='calframe' style='border:solid 1px blue; background-color:white;'>
<table border='0' cellspacing='0' cellpadding='0' width='100%' style='border-collapse:collapse;margin:0px;'>

<!-- header part -->
<tr>
<td nowrap='nowrap' colspan='7' align='center' bgcolor='#C0C0C0' valign='middle' style='vertical-align:middle;'><a href='http://127.0.0.1/xoops/htdocs/modules ... 006-6-30'><img src='http://127.0.0.1/xoops/htdocs/modules ... t/miniarrowleft.gif' width='18' height='14' border='0' alt='Mois précédent' title='Mois précédent' /></a><font size='3' color='#000080'><b><span class='calhead'>2006 Jui</span></b></font><a href='http://127.0.0.1/xoops/htdocs/modules ... 2006-8-1'><img src='http://127.0.0.1/xoops/htdocs/modules ... /miniarrowright.gif' width='18' height='14' border='0' alt='Mois suivant' title='Mois suivant' /></a></td>
</tr>

<tr>
<!-- day name loop -->
<td align='center'><font size='2' color='#000066'><span class='calweekname'>Lu</span></font></td>
<td align='center'><font size='2' color='#000066'><span class='calweekname'>Ma</span></font></td>
<td align='center'><font size='2' color='#000066'><span class='calweekname'>Me</span></font></td>
<td align='center'><font size='2' color='#000066'><span class='calweekname'>Je</span></font></td>
<td align='center'><font size='2' color='#000066'><span class='calweekname'>Ve</span></font></td>
<td align='center'><font size='2' color='#0000FF'><span class='calweekname'>Sa</span></font></td>
<td align='center'><font size='2' color='#CC0000'><span class='calweekname'>Di</span></font></td>

</tr>

<!-- weekly loop -->
<tr>
<!-- daily loop -->
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td align='center' bgcolor='#EEF7FF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-1&smode=Daily' class='calbody'><font size='2' color='#0000FF'><span class='calbody'>1</span></font></a></td>
<td align='center' bgcolor='#FFEEEE'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-2&smode=Daily' class='calbody'><font size='2' color='#CC0000'><span class='calbody'>2</span></font></a></td>

</tr>
<tr>
<!-- daily loop -->
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-3&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>3</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-4&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>4</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-5&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>5</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-6&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>6</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-7&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>7</span></font></a></td>
<td align='center' bgcolor='#EEF7FF'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-8&smode=Daily' class='calbody'><font size='2' color='#0000FF'><span class='calbody'>8</span></font></a></td>
<td align='center' bgcolor='#FFEEEE'><a href='http://127.0.0.1/xoops/htdocs/modules ... 7-9&smode=Daily' class='calbody'><font size='2' color='#CC0000'><span class='calbody'>9</span></font></a></td>

</tr>
<tr>
<!-- daily loop -->
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -10&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>10</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -11&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>11</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -12&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>12</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -13&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>13</span></font></a></td>
<td align='center' bgcolor='#FFEEEE'><a href='http://127.0.0.1/xoops/htdocs/modules ... -14&smode=Daily' class='calbody'><font size='2' color='#CC0000'><span class='calbody'>14</span></font></a></td>
<td align='center' bgcolor='#EEF7FF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -15&smode=Daily' class='calbody'><font size='2' color='#0000FF'><span class='calbody'>15</span></font></a></td>
<td align='center' bgcolor='#FFEEEE'><a href='http://127.0.0.1/xoops/htdocs/modules ... -16&smode=Daily' class='calbody'><font size='2' color='#CC0000'><span class='calbody'>16</span></font></a></td>

</tr>
<tr>
<!-- daily loop -->
<td align='center' bgcolor='#CCFF99'><a href='http://127.0.0.1/xoops/htdocs/modules ... -17&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>17</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -18&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>18</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -19&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>19</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -20&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>20</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -21&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>21</span></font></a></td>
<td align='center' bgcolor='#EEF7FF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -22&smode=Daily' class='calbody'><font size='2' color='#0000FF'><span class='calbody'>22</span></font></a></td>
<td align='center' bgcolor='#FFEEEE'><a href='http://127.0.0.1/xoops/htdocs/modules ... -23&smode=Daily' class='calbody'><font size='2' color='#CC0000'><span class='calbody'>23</span></font></a></td>

</tr>
<tr>
<!-- daily loop -->
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -24&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>24</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -25&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>25</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -26&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>26</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -27&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>27</span></font></a></td>
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -28&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>28</span></font></a></td>
<td align='center' bgcolor='#EEF7FF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -29&smode=Daily' class='calbody'><font size='2' color='#0000FF'><span class='calbody'>29</span></font></a></td>
<td align='center' bgcolor='#FFEEEE'><a href='http://127.0.0.1/xoops/htdocs/modules ... -30&smode=Daily' class='calbody'><font size='2' color='#CC0000'><span class='calbody'>30</span></font></a></td>

</tr>
<tr>
<!-- daily loop -->
<td align='center' bgcolor='#FFFFFF'><a href='http://127.0.0.1/xoops/htdocs/modules ... -31&smode=Daily' class='calbody'><font size='2' color='#000066'><span class='calbody'>31</span></font></a></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>
<td><span class='calbody'><img src='http://127.0.0.1/xoops/htdocs/modules ... /default/spacer.gif' alt='' width='20' height='12' /></span></td>

</tr>


<tr>
<td colspan='7' align='center'><font size='2'><a href='http://127.0.0.1/xoops/htdocs/modules/piCal/index.php' class='calfoot'>Aujourd'hui</a></font></td>
</tr>
</table>
</td>
</tr>
</table>

</div> <div class="blockTitle">Sélection des langues</div>
<div class="blockContent"><div style="text-align:center"><a href="/xoops/htdocs/index.php?lang=english"><img src="http://127.0.0.1/xoops/htdocs/modules ... /images/english.gif" alt="anglais"
style="MozOpacity: .8;opacity: .8;filter:Alpha(opacity=80);"
/></a> <a href="/xoops/htdocs/index.php?lang=french"><img src="http://127.0.0.1/xoops/htdocs/modules ... e/images/french.gif" alt="français"
style="MozOpacity: .8;opacity: .8;filter:Alpha(opacity=80);"
/></a></div></div> <!-- End right blocks loop -->
</td>
</tr>
</table>
</body>
</html>

Posté le : 17/07/2006 16:41
Transférer la contribution vers d'autres applications Transférer


Re: IE/FF
Aspirant
Inscrit: 01/07/2006 15:08
De nantes
Messages: 46
voici par exemple le code pour le block de connexion:

<form style="margin-top: 0px;" action="<{$xoops_url}>/user.php" method="post">
[fr]identifiant :[/fr][en]Username :[/en]<br />
<input type="text" name="uname" size="12" value="<{$block.unamevalue}>" maxlength="25" /><br />
<{$block.lang_password}><br />
<input type="password" name="pass" size="12" maxlength="32" /></br>
<!-- <input type="checkbox" name="rememberme" value="On" class ="formButton" /><{$block.lang_rememberme}><br /> //-->
<input type="hidden" name="xoops_redirect" value="<{$xoops_requesturi}>" />
<input type="hidden" name="op" value="login" />
<input type="submit" value="<{$block.lang_login}>" /><br />
<{$block.sslloginlink}>
</form>
<a href="<{$xoops_url}>/user.php#lost">[fr]mot de passe oublié?[/fr][en]Lost your password?[/en]</a>
<br /><br/>

Sur IE il est parfait mais sur FF tout est entassé comme si les saut n'étaient pas pris en compte. pouvez vous m'aider?

Posté le : 17/07/2006 15:50
Transférer la contribution vers d'autres applications Transférer



 Haut
(1) 2 3 4 5 »




Propulsé avec XOOPS | Graphisme adapté par Tatane, Grosdunord, Montuy337513

42 Personne(s) en ligne (31 Personne(s) connectée(s) sur Forum) | Utilisateur(s): 0 | Invité(s): 42 | Plus ...