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 - V@nо

Pages: 1 2 3 4 5 [6] 7 8 9 10 ... 15
76
in that case it's probably memory limit., again ether ask host to increase it, or use imagemagick/netpbm instead of gd libriary for creating thumbnails, resizing images.

78
Installation, Update & Configuration / Re: error: Blank page when I login
« on: October 15, 2009, 09:43:33 PM »
above the code you showed add:
Code: [Select]
$config['cat_sort'] = "";

79
Installation, Update & Configuration / Re: error: Blank page when I login
« on: October 14, 2009, 08:58:06 PM »
Welcome to 4images forum.

the first line is not part of 4images, maybe it's causing it?

80
I believe it's something you've done, because 4images converts all non-latin letters to hex...try find a topic were we've discussed about that, search for word "елка" (type in russian)

never mind, this issue is something else, yet it might be "елка" related...

[EDIT]
Just tested it on v1.7.7 and couldn't reproduce the error, perhaps maybe if you could post step by step instructions?

81
Mods & Plugins (Requests & Discussions) / Re: hi i have problem in flash
« on: October 09, 2009, 08:12:13 PM »
open the game you have problem with

82
Discussion & Troubleshooting / Re: How to register a new global variable?
« on: October 08, 2009, 10:22:49 PM »
just to clearify, it does not have to be declared inside a function, but if it's declared inside a function, then if you need access that variable outside a function, you'll need use global BEFORE the variable declared. if no global or static used inside a function, then any variables used will be lost after exit the function.

83
fixed, thanks

84
Discussion & Troubleshooting / Re: How to register a new global variable?
« on: October 08, 2009, 04:47:11 PM »
Ok then.

The variable will be accessible anywhere in the script except for functions. in functions you'll need add
global $dp_download_folder;

85
Discussion & Troubleshooting / Re: How to register a new global variable?
« on: October 08, 2009, 04:25:39 PM »
You should ask this question under the topic it's related to, so people familiar with the mod could assist you (http://www.4homepages.de/forum/index.php?topic=3914.0#post_rule5)

P.S.
$dp_download_folder is not part of the mod, therefor you also should mention where it comes from...but that is under appropriate topic, please.

86
In categories.php find:
      $thumbnails .= "</tr>\n";
      
$count 0;


Insert below:
      if ($bgcounter == 1)
      {
        
$thumbnails .= "<tr class=\"imagerow".$row_bg_number."\">\n";
        
$thumbnails .= "<td width=\"".$imgtable_width."\" valign=\"top\">\n";
        
$thumbnails .= '
your html code here, can be multiline,
don`t need escape quotes:
<a href="index.php">link</a>
'
;
        
$thumbnails .= "\n</td>\n";
        
$thumbnails .= "</tr>\n";
      }

87
Mods & Plugins (Releases & Support) / Re: [MOD] Lightbox for GUESTs v1.2
« on: October 08, 2009, 04:09:56 PM »
You must have made a mistake while edited lightbox.php

to see the errors in global.php find line with error_reporting
add below:
error_reporting(E_ALL);
@
ini_set("display_errors"1);

88
Well, I can only assume there is something you do wrong, because your sitemap.xml produce garbage - and you said "iam fixing it", yet, nothing changed since then. and your 5) is direct result of 4)

89
Discussion & Troubleshooting / Re: Error Message ! :(
« on: October 08, 2009, 03:56:42 PM »
In the code you've showed replace
$result $site_db->query($sql);

with:
if (!($result $site_db->query($sql)))
  return;

90
v@no, where should I change this:
Code: [Select]
$site_sess->login($user_name, $user_password, 0, 1, 1)
in the code you just added.
But, I didn't realize imps' code a little different, in their code you'll need replace
	
  if (
$site_sess->login($row['user_name'], $row['user_password'], 111)) {

with
	
  if (
$site_sess->login($row['user_name'], $row['user_password'], 011)) {


to remove auto login

Pages: 1 2 3 4 5 [6] 7 8 9 10 ... 15