problem with my photo in web site

yannick0011

Joined: 2007-06-21
Posts: 1
Posted: Thu, 2007-06-21 11:58

hello everybody, veiled I am making a site and I used gallery2 to integrate it in my site in order to post full with photos =) but unfortunately I have a small problem photos do not post myself at all on the Web site but when I it work locally via easyphp all the photosphs are posted!! I does not understand or come the problem.

can you help me please

thank you in advance.

PS: sorry for my bad English

it is my configuration

Gallery version = 2.2.1 noyau 1.2.0.1
PHP version = 4.4.7 cgi
Serveur Web = Apache
Base de données = mysqlt 4.0.25-standard-log, lock.system=flock
Boîtes à outils = Gd, Thumbnail, LinkItemToolkit, SquareThumb, Getid3, ArchiveUpload
Accélération = none, none
Système d'exploitation = Linux web218.720.ha.ovh.net 2.6.18.1-grsec-mutu-grs-ipv4-32 #8 SMP Mon Mar 26 21:19:39 CEST 2007 i686
Thème par défaut = matrix
gettext = activé
Langage = fr_FR
Navigateur Web = Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4
Lignes dans la table GalleryAccessMap = 4
Lignes dans la table GalleryAccessSubscriberMap = 7
Lignes dans la table GalleryUser = 6
Lignes dans la table GalleryItem = 4
Lignes dans la table GalleryAlbumItem = 1
Lignes dans la table GalleryCacheMap = 0

it is my gallery22.php to embedd in my web site

<?php

require_once('./gallery2/embed.php');
$ret = GalleryEmbed::init(array( 'g2Uri' => '/www/gallery2/', 'embedUri' => '/www/content/gallery22.php?module=g2data/albums', 'fullInit' =>'false'));
if ( $ret )
{
echo( ' Here is the error message from G2:' );
echo( $ret->getAsText() );
return false;
}
$gallery->setConfig('showSidebarBlocks', false);
$gallery->setConfig('login', false);
$g2moddata = GalleryEmbed::handleRequest();
if (!isset($g2moddata['isDone'])) {
echo ('isDone is not defined, something very bad must have happened.');
exit;
}
if ($g2moddata['isDone']) {
exit;
}
if ($ret) {
print $ret->getAsHtml();
}
GalleryEmbed::done(); ?>
<!-- Your Html Head -->
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">

<html>
<head>
<title></title>
<meta name="Description" content="Your Site Description">
<meta name="KeyWords" content="Your Site Keywords">

<link rel=StyleSheet href="" type="text/css" media="screen">

<script language="JavaScript" src="Your Site.js"></script>

<?php echo $g2moddata['headHtml']; ?>
</head>

<?php echo $g2moddata['bodyHtml']; ?>

</BODY>
</HTML>