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@no

Pages: 1 ... 6 7 8 9 [10] 11 12 13 14 ... 741
136
It works fine on windows. Changing the other way around could possibly create some issues with filenames, because Windows is not case sensitive OS, but Linux is.

137
It copies the files, no links

138
Mods & Plugins (Releases & Support) / Re: [MOD] Top 100
« on: September 28, 2011, 02:16:06 PM »
Technically username cannot be blank, therefore that line never get executed anyhow...

139
Discussion & Troubleshooting / Re: Download Button URL not working
« on: September 25, 2011, 12:47:34 AM »
Ok, do you get any messages when you trying download a file? The messages you showed are not related to the issue right now.

140
Discussion & Troubleshooting / Re: Download Button URL not working
« on: September 22, 2011, 11:38:47 PM »
Try re-upload download.php file from 4images package.

141
Discussion & Troubleshooting / Re: More notices due at my gallery...
« on: September 22, 2011, 11:37:33 PM »
Ok, how did you update  your 4images? It looks like you didn't do it right...

142
Discussion & Troubleshooting / Re: Download Button URL not working
« on: September 22, 2011, 05:16:42 PM »
What is  your 4images version? Did you install it fresh or updated it, if update, then from which version?

Whatever download.php version you are using it's not original from v1.7.10

143
Discussion & Troubleshooting / Re: Download Button URL not working
« on: September 22, 2011, 12:29:24 AM »
In global.php find:
error_reporting(E_ERROR E_WARNING E_PARSE);
Temporary insert below:
error_reporting(E_ALL);

Try download and check error logs for any errors.

144
Sorry, at the moment I don't have access to the source code, I'll try guess here.
Above the code you've inserted in step 8 add this:
global $config;

145
Did you run the installer from step 1?

146
the easy fix if to turn off the warning messages in php for now.
Or replace
	
	
	
	
  if ((((
$max_width/$max_height)==($download_multi_sizes[$var][1]/$download_multi_sizes[$var][2]))&&($multi_download_var['ratio']))||(!$multi_download_var['ratio'])){

With this:
	
	
	
	
  if (!
$multi_download_var['ratio'] || (@($max_width/$max_height)==@($download_multi_sizes[$var][1]/$download_multi_sizes[$var][2])&&$multi_download_var['ratio'])){


Note the "@" signs, these will suppress any warnings.

P.S.
you don't have to include everything into parentheses and also when there is an "OR" condition it's better put first the most simple condition, could possible save 0.00001% on performance :D

147
Mods & Plugins (Releases & Support) / Re: [MOD] Multi-Lightboxes v1.03.1
« on: September 21, 2011, 01:50:46 AM »
Yes, thank you. That would be correct. I've updated step 6.3

148
Discussion & Troubleshooting / Re: Download Button URL not working
« on: September 21, 2011, 01:47:10 AM »
1) What is php version?
2) can you post an example of download url (you can alter the domain)

149
Discussion & Troubleshooting / Re: More notices due to db_definitions...
« on: September 21, 2011, 01:26:05 AM »
It's possible that you have multi-language website and not all languages received needed data in their main.php files (lines added by installed mods).

For instance there is no $lang['image_airline_code'] line present in one or more lang/<language>/main.php files.

You'll need find the missing lines and add them in every language.


I shall propose a fallback approach to default language so it would use default language in case other languages missing a string.
For that only one line need to be added in global.php:

Find:
include_once(ROOT_PATH.'lang/'.$config['language_dir'].'/main.php');
Insert above:
if ($config['language_dir_default'] != $config['language_dir']) include_once(ROOT_PATH.'lang/'.$config['language_dir_default'].'/main.php');

150
Discussion & Troubleshooting / Re: What is wrong with my emails in gallery?
« on: September 20, 2011, 12:41:55 PM »
You didn't completely remove the smilies mod, your function did not match the original.

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