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 - Yatahonga

Pages: [1] 2
1
Mods & Plugins (Requests & Discussions) / Add a BLOG for each user
« on: November 12, 2006, 01:09:06 PM »
Hi,

I would like to have a blog for eache members of my website
I would like to know if someone added a Blog in 4images ?

Thank's

Cyrille

2
Installation, Update & Configuration / Bonjour
« on: May 27, 2003, 09:37:03 AM »
Oui ici qqpersonnes parlent Français

Cyrille

--
Some people speak French ;-)

3
Installation, Update & Configuration / GET_USER_ONLINE
« on: May 26, 2003, 02:49:54 PM »
Hi,

Why is there :
Define (GET_USER_ONLINE,1) on every PHP file ?
and NOT only on the index.php file ?

Thanks

Cyrille
http://www.yatahonga.com/

4
Mods & Plugins (Requests & Discussions) / Statistic
« on: May 05, 2003, 02:19:04 PM »
sorry,

select count(id) from user group by MyNewDateColum

Cyrille

5
Mods & Plugins (Requests & Discussions) / Statistic
« on: May 05, 2003, 02:18:17 PM »
Yes of course in PHP, but
I am looking for something like
select * from user group by inscription_date

With a format(inscription_date, XXXX)

Else I can add a colum (date as String) which contain the date like 05/005/2003 and do the select on this news colum

Cyrille

6
Installation, Update & Configuration / Help NEEDED !!!!
« on: May 05, 2003, 02:12:01 PM »
Hi V@no,

I change to :
define('SHOW_RANDOM_IMAGE', 0);
define('SHOW_RANDOM_CAT_IMAGE', 0);

And I have :
Page generated in 8.718731 seconds with 7 queries, spending 5.845000 seconds doing MySQL queries and 2.873731 doing PHP things

with 22 users :-(

Cyrille

7
Mods & Plugins (Requests & Discussions) / Statistic
« on: May 05, 2003, 01:30:07 PM »
Hi,

I would like to know how many new
- registered user
- images

I have BY Day.

I didn't find the good SQL request. Does anyone have do that ?

Thanks

Cyrille

8
Installation, Update & Configuration / Help NEEDED !!!!
« on: May 05, 2003, 01:24:28 PM »
Does anyone have an answer ?

With 22 people :
Page generated in 10.235452 seconds with 10 queries, spending 5.849000 seconds doing MySQL queries and 4.386452 doing PHP things.

Thanks

Cyrille

9
Installation, Update & Configuration / Upload von Bildern über FTP
« on: April 28, 2003, 05:46:49 PM »
(In Englsh please ;-) )

Why would you upload by FTP ?

Did you test the uploader of http://www.yatahonga.com/download_soft.php ?

It should solve your problem

Soon

Cyrille

10
Installation, Update & Configuration / Help NEEDED !!!!
« on: April 28, 2003, 05:44:03 PM »
I had : Index :
alter table 4images_categories add index idx_catname (cat_name,cat_id);
alter table 4images_comments add index idx_cmtid (comment_id);
alter table 4images_comments add index idx_cmtuname (user_name);
alter table 4images_groupaccess add index idx_grpaccess (group_id,cat_id);
alter table 4images_groupmatch add index idx_grpmatch (group_id,user_id);
alter table 4images_groups add index idx_grp (group_id,group_name);
alter table 4images_images add index idx_images (image_id,image_name);
alter table 4images_images_temp add index idx_imgtmp (image_id,image_name);
alter table 4images_lightboxes add index idx_lightbox (lightbox_id);
alter table 4images_postcards add index idx_postcards (postcard_id,image_id);
alter table 4images_sessions add index idx_sessions (session_lastaction);
alter table 4images_sessionvars add index idx_sessvars (session_id,sessionvars_name);
alter table 4images_wordmatch add index idx_wordmatch (image_id,word_id);
alter table 4images_users add index idx_users (user_id ,user_name );

It their another think to do ?

Thank's

Cyrille

11
Installation, Update & Configuration / Help NEEDED !!!!
« on: April 28, 2003, 02:27:40 PM »
Hi,

I would like to know, how to optimize my web site : http://www.yatahonga.com/

With only 11 active users I have :
Page generated in 18.344828 seconds with 10 queries

Witch query are very long ?

Thank's
(of course I have 6270 images in 40 categories !!!!)

12
Installation, Update & Configuration / Uploader : Delphi.
« on: April 28, 2003, 11:38:27 AM »
This is the SendImage function

procedure TFYatahonga.SendImage(user_id : string; direct_upload : string; cat_id : string;
                                media_file : string; thumb_file : string; image_name : string;
                                host : string; url : string);
var
  Source: TIdMultiPartFormDataStream;
begin
  Source := TIdMultiPartFormDataStream.Create;
  try
    Source.AddFormField('action', 'uploadimage');

    Source.AddFormField('user_id', user_id);
    Source.AddFormField('direct_upload', direct_upload);
    Source.AddFormField('cat_id', cat_id);
    Source.AddFormField('image_name', image_name);
    if media_file<>'' then
      begin
        Source.AddFile('media_file', media_file, 'image/jpeg');
        Source.AddFormField('dummy1', 'eof');
      end;
    if thumb_file<>'' then
      begin
        Source.AddFile('thumb_file', thumb_file, 'image/jpeg');
        Source.AddFormField('dummy2', 'eof');
      end;

    IdHTTPConnect.Post(host + url, Source);
  finally
    Source.Free;
  end;
end;

You can call them like this :
  SendImage(CfgUserId, cstdirect_upload, categorie, Nfile, NThumbFile, texte, cstHost, YatUrlUpload);

where CfgUserId, cstdirect_upload, categorie, Nfile, NThumbFile, texte, cstHost, YatUrlUpload are param in a WEB Form at the adress :
http://cstHost/YatUrlUpload

Soon

Cyrille

13
Installation, Update & Configuration / Optimisation
« on: March 27, 2003, 11:59:47 AM »
What is a "bloody noob " ?

Of course I can write something about the uploader with source code
in Delphi and PHP.

I will try to make an extract the Week-end

Cyrille

14
Installation, Update & Configuration / Optimisation
« on: March 27, 2003, 08:39:03 AM »
Thank's ;-)

It's a Delphi Application it works with a HTML form.
The POST data with this application into a Submit page.

It's not so hard.
All component exist :
http://www.indyproject.org/dowload/index.html
or ICS : http://overbyte.delphicenter.com/frame_index.html

Ask me, if you want more informations.

Cyrille

15
Installation, Update & Configuration / Optimisation
« on: March 26, 2003, 09:21:15 AM »
Thansk,

But what is "spending 6.196000 seconds" ???

Cyrille

Pages: [1] 2