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 ... 5 6 7 8 [9] 10 11 12 13 ... 15
121
is it quick edit? batch edit?
if it's quick edit and edit only name, can you edit more then 60 images?

122
Discussion & Troubleshooting / Re: My site is down, help please!
« on: April 09, 2009, 08:40:31 PM »
the query you showed comes from includes/functions.php (by the way it's not original query)

As of 2000 visitors per day, I don't know, but I think it's little too much for a shared server...
And by the way similar query used in signature mod too.

123
well, the confusion I have is because the only thing 4images has in common with a forum is comments. In 4images the "thank you" is the rating...I just never thought that a "thank you" for images would be useful to anyone.. Guess I was wrong

124
Mods & Plugins (Releases & Support) / Re: [MOD] Language select
« on: April 01, 2009, 04:01:22 PM »
1) I've asked you once before, please do not reply twice to the same topic, edit your previous reply with additional info, questions, unless someone replied after you or if no one replied for a long time. I ask you that, because if you look at the history of your replies, you'd see that almost all your recent replies to any topics are following by one to three additional replies by you.  It is called "flood". Even though flooding is not in our forum's rules, I bet it's not granted on any forums.

2) more often then not it's more helpful see the original reply instead of just a quote from it, aka provide a link to the message you are referring to, along with the quote if you feel like it.. The original replies and replies before them can provide more useful information. A link to a specific reply can be found at it's headline or icon.

3) did you try the code? from what I recall it has nothing to do with version A or B and from what I see it should work on v1.7.6 as well.


P.S.
Please don't get offended by what I said or will say, it wasn't my intention. But you seems to rush into post a reply without first checking if it's a mistake you made, then after 5 minutes with "gee I forgot something" post another reply...please don't do that, edit your previous post instead.
I understand you don't have enough time to do everything you'd like to do, we all like that, but if you'd spent the same amount of time that required to post a message on the forum, to actually double check your steps, you'd probably save a lot of time for yourself then waiting for the other's replies ;)
Sorry for the lecture.

125
2) make sure you did step 6.4

126
Hello can welcome to 4images forum.

The remove right click protection is covered in our FAQ => Remove the right-click disabler / or remove only for Members
There is also a mod that shows direct links to the images: [Mod] Display image codes on details page (image permalink)

127
Discussion & Troubleshooting / Re: change text in mail
« on: March 20, 2009, 07:23:33 PM »
the site name you can set in the settings. email templates you can find in lang/<your language>/mail/

128
Discussion & Troubleshooting / Re: DB Error: Bad SQL Query
« on: March 19, 2009, 10:24:06 PM »
yes that's the sollution

129
Discussion & Troubleshooting / Re: Duplicate content (duplicate pages)
« on: March 18, 2009, 07:43:15 PM »
a little correction:
no $ sign in this line
Code: [Select]
Disallow: /*&mode=search$

130
Templates & Styles (Requests & Discussions) / Re: Changing the header
« on: March 09, 2009, 08:25:31 PM »
include is relative to 4images root directory. Try this:
Code: [Select]
include("../ver2/includes/header.php");

131
Templates & Styles (Requests & Discussions) / Re: Changing the header
« on: March 09, 2009, 05:14:50 PM »
1) you can't use internet paths in include()
2) Try this. In global.php find
Code: [Select]
error_reporting(this is part of the line)

Replace whole line with:
Code: [Select]
error_reporting(E_ALL);
@ini_set("display_errors", 1);

Then do the changes I've mentioned in my previous reply.
See if any error messages shows.

132
Programming / Re: How to modify this sql code
« on: February 24, 2009, 10:33:46 PM »
this method will not work for sub-sub-categories

133
Programming / Re: How to modify this sql code
« on: February 24, 2009, 10:32:36 PM »
maybe something like that:
Code: [Select]
$sql = "SELECT i.image_id, i.user_id, i.cat_id, i.image_name, i.image_thumb_file, i.image_rating, i.image_votes, c.cat_name, u.user_name
         FROM ".IMAGES_TABLE." i, ".CATEGORIES_TABLE." c, ".USERS_TABLE." u
         WHERE i.image_active = 1 AND i.cat_id NOT IN ($cat_id_sql) AND i.cat_id = c.cat_id  AND i.user_id = u.user_id $cat_match_sql  AND (i.cat_id IN (31,30,28,25,23,22,20,19 ,35,15,16,18,24,26,32,34 ,27,33) OR c.cat_parent_id IN (31,30,28,25,23,22,20,19 ,35,15,16,18,24,26,32,34 ,27,33))
         ORDER BY i.image_rating DESC, i.image_votes DESC
         LIMIT 20";

134
Discussion & Troubleshooting / Re: How can I add a link
« on: February 23, 2009, 07:56:44 PM »
user_logininfo.html template is used for logged in users;
user_loginform.html used for every one else.

135
Discussion & Troubleshooting / Re: How can I add a link
« on: February 23, 2009, 07:25:49 PM »
Welcome to 4images forum.

You also might want add same code into user_loginform.html template

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