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 - Xyu BAM

Pages: 1 2 3 [4] 5 6 7 8
46
Mods & Plugins (Releases & Support) / Re: Signature image v2.21
« on: September 16, 2005, 07:27:27 AM »
make sure you specifyed two different names for the temp files in two different signatures:
Code: [Select]
$tmpfname = $path."signature.tmp"; // filename for the compilled image (extension does not metter)
$tmptname = $path."signature.id"; // filename for the file where some extra info will be stored in (image id)

47
Mods & Plugins (Requests & Discussions) / Re: Sort by Name on Sub Categorie
« on: September 14, 2005, 03:14:20 PM »
in global.php find:
Code: [Select]
          ORDER BY cat_order, cat_name ASC";

Replace it with:
Code: [Select]
          ORDER BY cat_name ASC";

48
details.html and thumbnail_bit.html templates

49
These codings involves unsafed methods and unglobalized detections towards 4images. Which is why, you actually encounter difficulties loading your quoted MOD.
o my o my...sometimes its better not to reply at all if you have no answer, instead of replying with something only you could possibly understand...

@Matthias70:
add below
Code: [Select]
include(ROOT_PATH.'includes/constants.php');this line:
Code: [Select]
include(ROOT_PATH.'includes/functions.php');
If it will give you some warnings or error messages, then add the new functions (that you've inserted in functions.php) under that line.

50
Templates & Styles (Requests & Discussions) / Re: Testing templates
« on: September 13, 2005, 08:32:48 AM »
For your information, I did used the instructions as written.
thankyou for ASSuming other wise  :evil: :roll:

could it be that i have 1.7.1 :?:
if you would followed EXACTLY the instructions, you would not get such error, period. (make sure you didnt mistaken "before" with "after" in step 2)

51
Templates & Styles (Requests & Discussions) / Re: Testing templates
« on: September 13, 2005, 03:03:16 AM »
when i do this i get

Notice: Undefined index: user_template in C:\CuSStom.com\www\gallery\includes\sessions.php on line 409

pay attention to the instructions ;)

u can try do first two steps from this mod:
http://www.4homepages.de/forum/index.php?topic=6220.0

52
Mods & Plugins (Releases & Support) / Re: [MOD] Language select
« on: September 12, 2005, 08:16:18 AM »
What do you think? Is this O.K. to take out the _ from yopur code, or could it cause some problems.
It seems to me everything is O.K.

as long as your template folder does not contein " _ " in it, (i.e. defaultdeutsch) its fine.

53
Bug Fixes & Patches / Re: [1.7,1.7.1] Security fix in sessions.php
« on: September 12, 2005, 08:13:17 AM »
I made that change few months ago and today i was hacked... do you have another recent security fix?
and what is your evidence that your've been hacked THROUGH 4images ?

54
Mods & Plugins (Releases & Support) / Re: [MOD] Language select
« on: September 11, 2005, 07:49:52 PM »
I have no idea what are u talking about, but this is what you wrote before:
Hi theOracle
I mean this part in the mod language select
http://www.4homepages.de/forum/index.php?topic=4743.msg35908#msg35908

Matthias

55
Mods & Plugins (Releases & Support) / Re: [MOD] Language select
« on: September 11, 2005, 12:36:18 PM »
The condition V@no used  would return true when l=<lang> was append to the url so, if you append l=<default lang> it would also require additional template for default lang...

56
Discussion & Troubleshooting / Re: IP adress not showing up as numbers
« on: September 11, 2005, 12:28:56 PM »
just add it to the end

57
Discussion & Troubleshooting / Re: IP adress not showing up as numbers
« on: September 11, 2005, 08:29:40 AM »
first try to replace in details.php
Code: [Select]
        "comment_user_ip" => $comment_user_ip,
with:
Code: [Select]
        "comment_user_ip" => decode_ip($comment_user_ip),if it gives u error, then add that function into include/functions.php

58
any installation or setup scripts should be deleted to prevent accidental reinstall.

59
Mods & Plugins (Releases & Support) / Re: [MOD] Language select
« on: September 11, 2005, 08:02:07 AM »
I've experienced this issue too, its a "bug" in vano's code...
you will need replace
Code: [Select]
if ($config['language_dir'] == $l) $config['template_dir'] .= "_".$l; with:
Code: [Select]
if ($config['language_dir_default'] != $config['language_dir']) $config['template_dir'] .= "_".$l;

60
FAQ

Pages: 1 2 3 [4] 5 6 7 8