Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - † manurom

Pages: 1 ... 7 8 9 10 [11] 12 13
151
Français / Re: {url de la page detail.html de l'image} ?
« on: May 05, 2008, 10:48:16 AM »
Bonjour;
regardez ici: Direct link to images , si votre but est d'avoir quelque chose comme l'image attachée.

152
Français / Re: I search mod "new image upload for guest
« on: May 04, 2008, 02:57:17 PM »
Pour en revenir au sujet, tu sais si il existe un mod qui crérai une page avec toutes les nouvelles images qui ont été ajoutées.

Encore désolé, mais je n'arrive pas à comprendre le but de la manip, et en quoi cela doit être associé au fait que le visiteur ne soit pas identifié ("GUEST").
Je dois être un peu (ou beaucoup) buté, mais comme disait Denzel Washington dans Philadelphia, "parlez-moi comme à un gosse de 6 ans", pour que je comprenne.

En bref, vous voulez faire une page personnalisée destinée aux visiteurs non identifiés, il me semble. En revanche, si les visiteurs sont identifiés, la page devrait être différente. Me trompé-je? N'hésitez pas à expliquer ce que vous attendez du script. Il se peut en plus que votre idée aide d'autres membres.
Mon aide et mon attention vous seront toujours disponibles.
N'oubliez pas en revanche d'aider les autres membres dans la mesure de vos connaissances.

-----> To Mawenzi: hello, dear moderator. Would you please move this thread to the french forum, as it seems that satine88 and I share the same language, and do not want to pollute this forum for nothing. Many thanks

153
Français / Re: I search mod "new image upload for guest
« on: May 04, 2008, 02:39:51 PM »
Oui, et plus encore Ardéchois!

154
Français / Re: I search mod "new image upload for guest
« on: May 04, 2008, 02:34:46 PM »
No :)
I search a mod that show new image for guest

(sorry for my english, i a not english)  :wink:
Sorry, I do not understand it all.
Désolé, je ne comprends pas tout.
Lo siento, pero no lo entiendo todo.

155
Français / Re: I search mod "new image upload for guest
« on: May 04, 2008, 02:25:59 PM »
Hello;
would this be useful: Upload as guest..?

156
Feedback & Suggestions / Re: Sort pics by ...
« on: May 04, 2008, 03:11:42 AM »

157
Hello;

there may be a few reasons for your own problem:

  • First:
    the file exif_bit.html does not exist in your template (Vierstra's 4round) and you use 4images version 1.7.4 or higher. See here Vierstra's site and you will notice that the template 4round was designed for 4images 1.7.1, wich did not included EXIF datas.
    HINT: simply copy the file exif_bit.html from the default template provided in 4images to your 4round template directory.
    Another hint: look at this thread: To Template Developers: Update 1.7.2 -> 1.7.3 -> 1.7.4 -> 1.7.6.
    It will help to update your favourite template.
  • Second:
    while using "Auto-Image-Resizer", maybe the GD Library destroys EXIF Datas on resizing.


Anyway, keep on posting here. Many members are awaiting to give any help.

By the way, I've upgraded a few Vierstra's templates for some members. Please look at your 4round template directory. If the file exif_bit.html does not exist, you can PM me and I will provide you an updated 4round template very soon.

Kindly salutations.

158
Français / Re: générateur de miniature
« on: May 03, 2008, 09:12:23 AM »
Bonjour, _AsX_;

je viens de faire des essais et cela fonctionne (PHP5 et MySQL5). Quand je rafraîchis la page hôte de l'image aléatoire, celle-ci change bien, en fluctuant d'une catégorie à l'autre. Bien sûr, de temps à autre, deux images de la même catégorie peuvent se succéder, mais c'est le principe même des séries aléatoires.

Voici le code exact que j'ai utilisé pour le fichier random.php lors de mes tests:

Code: [Select]
<?php
/**************************************************************************
 *                                                                        *
 *    4images - A Web Based Image Gallery Management System               *
 *    ----------------------------------------------------------------    *
 *                                                                        *
 *             File: random.php                                           *
 *        Copyright: (C) 2002 Jan Sorgalla                                *
 *            Email: jan@4homepages.de                                    *
 *              Web: http://www.4homepages.de                             *
 *    Scriptversion: 1.0 for 4images 1.6.1                                *
 *                                                                        *
 *    Never released without support from: Nicky (http://www.nicky.net)   *
 *                                                                        *
 **************************************************************************
 *                                                                        *
 *    Dieses Script ist KEINE Freeware. Bitte lesen Sie die Lizenz-       *
 *    bedingungen (http://www.4homepages.de/4images/lizenz.php) für       *
 *    weitere Informationen.                                              *
 *    ---------------------------------------------------------------     *
 *    This script is NOT freeware! Please read the Copyright Notice       *
 *    (http://www.4homepages.de/4images/lizenz_e.php) for further         *
 *    information.                                                        *
 *                                                                        *
 *************************************************************************/

// PATH to your 4images Gallery / PFAD zu Ihrer 4images Gallerie
define('ROOT_PATH''./');

include(
ROOT_PATH.'config.php');
include(
ROOT_PATH.'includes/db_mysql.php');
include(
ROOT_PATH.'includes/constants.php');

$site_db = new Db($db_host$db_user$db_password$db_name);
function 
is_remote($file_name) {
  return (
preg_match('#^https?\\:\\/\\/[a-z0-9\-]+\.([a-z0-9\-]+\.)?[a-z]+#i'$file_name)) ? 0;
}

$sql "SELECT COUNT(*) as total_images
        FROM ("
.IMAGES_TABLE." a, ".CATEGORIES_TABLE." b) 
        WHERE a.image_active=1 
        AND a.cat_id = b.cat_id 
        AND b.auth_viewcat="
.AUTH_ALL.
        AND b.auth_viewimage="
.AUTH_ALL."
        "
;
$row $site_db->query_firstrow($sql);
$total_images $row['total_images'];

mt_srand((double)microtime() * 1000000);
$number = ($total_images 1) ? mt_rand(0$total_images 1) : 0;

$sql "SELECT a.image_id, a.cat_id, a.image_name, a.image_active, a.image_thumb_file, a.image_comments 
        FROM ("
.IMAGES_TABLE." a, ".CATEGORIES_TABLE." b) 
        WHERE a.image_active=1 
        AND a.cat_id = b.cat_id 
        AND b.auth_viewcat="
.AUTH_ALL.
        AND b.auth_viewimage="
.AUTH_ALL.
        LIMIT 
$number, 1";
$row $site_db->query_firstrow($sql);
$image_id $row['image_id'];
$cat_id $row['cat_id'];
$image_name $row['image_name'];
$image_comments $row['image_comments'];
$thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : ROOT_PATH.THUMB_DIR."/".$cat_id."/".$row['image_thumb_file'];

echo 
"<div align=\"center\"><a href=\"".ROOT_PATH."details.php?image_id=$image_id\" target=\"_blank\"><img src=\"".$thumb_src."\" border=\"0\" alt=\"$image_name\"></a><br>\n";
echo 
"<font face=\"tahoma\" size=\"2\" color=\"#000000\"><b>$image_name</b><br>\n";
echo 
"Comments: $image_comments</font><br></div>\n";
?>


J'espère que cela puisse vous aider.

Salutations.

159
Discussion & Troubleshooting / Re: Upload Problem
« on: May 02, 2008, 06:44:32 PM »
Hello:
have you moved your site from your existing host to another host using CPanel or Plesk?
It seems that you created a category with ID#172, and needed to add a picture called Catalina_Cruz_003.jpg inside, using an account ID uid/gid 99/99 in the script 33074/33078 (4images script and your 4images account managed by your host). But it seems there that these script and/or user account do not have the needed rights to write in the directory (data/media/172/). So access is denied and there is then an error uploading the file... That is the best translation I can do from the error messages you gave us.

160
Discussion & Troubleshooting / Re: disable registeration
« on: April 29, 2008, 06:05:08 PM »
Hello, waleed;

you are the one who says if any category or image is or not private, in your Admin Control Panel.
If you need that your images will all be public, you have to do nothing. They will be public by default.

Some other features, like votes, uploads, and comments, can be changed in the Admin Control Panel. You can also there bypass the CAPTCHA security (even if it is a sensible point, related to spam bots).

You may just need to have a public website, with no registration. So, you will have to look at your template's files, and erase this:
Code: [Select]
{lang_registered_user}and
Code: [Select]
{user_box}in any HTML file.

Feel free to ask any help. You'll be welcome.

161
Bonjour, _AsX_;

vous pouvez résoudre votre problème en un premier temps en éditant le fichier "category_bit.html" de votre template.
Cherchez le code suivant:
Code: [Select]
{if cat_description}{cat_description}
{endif cat_description}
et effacez-le, ou mettez-le en commentaire.

Autrement, il existe sur le forum un MOD pour avoir une description courte ( les x premiers caractères de la description) d'une catégorie en page d'accueil. Ma mémoire est un peu défaillante et je ne peux guère vous orienter en ce cas. Si cela me revient, je posterai ici le lien vers le post concerné.

Amicales salutations.

162
Hello, Jean Lukas;
Vista is really a mess, sometimes several things are blocked without warning the user...
Have you got any previous message from MS Vista Firewall, or Windows Defender?

Some Skype users may have such problems, as Skype launches at startup and keeps on listening port 80.
If you use Skype, try to quit Skype, and then launch 4images Mobile Server.
Once done, start Skype. It should work in this case.

Vista users may also have problems with IIS (Windows Internet Information Server), if it is launched as a service.

Feel free to contact me by PM to try to solve your own problem.

Salutations.


163
Hello, everybody;
it seems that your website has been hacked. What is your own 4images version, please?

You may correct it, going to your admin panel, or using PhpMyAdmin.

  • Using your own admin panel:
    Connect to your website administration panel (eg: http://www.your_site.com/admin/)
    Please then log in with your own administrator's datas.

    Once logged, you are in the administration environment.
    Please click, on the right side, on "Settings".
    Then, please, go to "Upload Settings", in the left side.

    Have a look of what is described in the item "Valid file extensions". It maybe only "php".

    Anyway, replace the existing value with that new one: "jpg,gif,png,aif,au,avi,mid,mov,mp3,mpg,swf,wav,ra,rm,zip,pdf".

    Once done, please launch your FTP client, go to your own website, and try to find a file, with .php extension, that you've never uploaded. Don't look only in your 4images root. Look also in your 4images/data/ directory. This php file must be hidden in any place.

    Please also, upgrade your script to the last version. Many security holes have been solved.


  • Using PhpMyAdmin, for advanced users that have done a previous backup:
    Go to your database administration.
    Then choose your own database.
    Please then edit your database entry: 4images_settings, where 4images is your database name.
    Then edit your entry "allowed_mediatypes", and change the existing value to: "jpg,gif,png,aif,au,avi,mid,mov,mp3,mpg,swf,wav,ra,rm,zip,pdf"
    Save and try to browse your own website. Your own problem should be then solved.

If not, please answer here, mentionning what is your 4images version, and whynot, what is your provider environment: Apache, MySQL, and PHP versions.
Be sure anyone here would like to help you as better as he's been helped.

Anyway, please feel free to contact me by PM. Many members helped me by this way. I've succeeded in helping others by the same way.
In a few words: you have a problem I faced once. I can and must help you. This forum is really a good place to be usefull in the Internet.
No one will never spend my time for nothing. I'd really like to help as much as I've been helped here.

Thanks to Kai, and everybody at 4homepages and DotsUnited.

164
Discussion & Troubleshooting / Re: defaullt layout displaying problem
« on: March 26, 2008, 02:09:42 PM »
Hello, Vlad;
not any problem with Firefox 2.0.0.12 and MS IE 6.

165
Hello, all;
I'm back in the saddle again...
Was really missing you all.

4images Mobile Server, including PHP5 is now working. I will soon post links to download it.
Many thanks to anybody at 4homepages and DotsUnited to support our contribution.
Please feel free to post your own opinion or even problems at contact@ami07.info. We'll try to deliver an answer to any mail, belou, slyvie and I.

Please, everybody, keep on sharing your knowledge about 4images for free, as any member really deserves it, and has to be respected.

Best regards to all of you!

Manurom

[EDIT]

You can now download the last version of 4images Mobile Server, ZIP version:
   the link: 4images Mobile Server PHP5 version

Features:
  • PHP 5.2.3
  • Apache 2.0.59
  • MySQL 5.0.37
  • PhpMyAdmin 2.11.5
  • GD Bundled (2.0.34 compatible)

Installable version is to come (old version keeps on beeing downloaded, sorry).
Many thanks to all of you, for your support.

By the way, PHP4 users may still download the old PHP4 version here:
4images Mobile Server PHP4 version


PHP5 isnstallable version will be soon released.
Keep on all supporting 4images script, and all developpers! They really deserve it!

Best regards to any member!

Manurom

Pages: 1 ... 7 8 9 10 [11] 12 13