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 ... 15
1
Personally I have no idea what you are trying to do and what is your question about...

2
Discussion & Troubleshooting / Re: How i can call instead *.htm *.php
« on: January 29, 2011, 11:58:07 PM »
Code: [Select]
RewriteRule ^contact.htm$ contact.php

That line doesn't include url query, perhaps that is the problem?

Code: [Select]
RewriteRule ^contact.htm$ contact.php?%{QUERY_STRING}

3
Discussion & Troubleshooting / Re: Can't upload mp3s
« on: January 29, 2011, 09:58:16 PM »
try upload a small file

4
Discussion & Troubleshooting / Re: Change Home Page Link
« on: January 09, 2011, 12:48:10 AM »
Without seeing the template there is no way one could tell you exactly where to look at..perhaps home.html? I have no clue

5
Discussion & Troubleshooting / Re: Change name of field in ACP.
« on: January 09, 2011, 12:46:36 AM »
Not enough information. The only answer you could get is: edit .php files in admin/ directory...

6
Mods & Plugins (Releases & Support) / Re: [MOD] Category Image v1.0.2
« on: December 25, 2010, 11:47:55 PM »
just try add {cat_image} somewhere in the template so it would seen on the page as plain text

8
Mods & Plugins (Releases & Support) / Re: [Mod] Opensearch v0.1
« on: November 13, 2010, 12:53:08 AM »
Code Update:
Online Installation:  :arrow:
if v0.1 is the new version, what version was before that? v0.0? ;)
What's new in this version?

[EDIT]

This line:
define('GET_CACHES', (isset($HTTP_GET_VARS['s'])));

Needs to be replaced with:
define('GET_CACHES', (isset($_GET['s'])));


$HTTP_GET_VARS - not available on all servers. However after global.php executed $HTTP_GET_VARS should be used instead of $_GET

9
Programming / Re: Help me with code please...
« on: September 26, 2010, 06:54:31 PM »
are you trying show to a logged in user sum of image hits for his images?
In that case you might want consider use $user_info['user_id'] instead of $user_id...

10
Discussion & Troubleshooting / Re: ImageMagick
« on: September 26, 2010, 06:51:46 PM »
you are not doing anything wrong, it's the server that has restrictions. Ask your host administrator either remove that restriction regarding system() function or explain how you were suppose to use imagemagic without system() function.

11
Programming / Re: Help me with code please...
« on: September 16, 2010, 01:50:13 AM »
$user_id 1//replace with your user id
$sql "SELECT SUM(image_hits) AS sum 
        FROM "
.IMAGES_TABLE."
        WHERE user_id = 
$user_id";

12
Mods & Plugins (Requests & Discussions) / Re: multi-category rss feed
« on: September 16, 2010, 01:48:22 AM »
Oh, I knew I forgot something...
I'll update my code later, but for now replace
      $cat_sql "AND i.cat_id IN(".implode(","$subcat_ids[$cat_id]).")";

with:
      $cat_sql "AND i.cat_id IN(".(isset($subcat_ids[$cat_id]) ? implode(","$subcat_ids[$cat_id]) : $cat_id).")";

13
Mods & Plugins (Requests & Discussions) / Re: Badword List is not working..
« on: September 16, 2010, 01:40:25 AM »
There is no such thing as comments.php file in 4images, must be a mod or something (unless you are referring to admin/comments.php, but it has nothing to do with displaying comments on details page.

The bad words filter only replaces text before it's being displayed, the text itself is stored as original in the database. Replacing anything from v1.7.8 might break your v1.7.4 as there are quiet a few changes needed to make it compatible.

Anyhow, the bad words filter is executed in format_text() function.

14
Installation, Update & Configuration / Re: theme dont show in update
« on: September 12, 2010, 10:51:05 PM »
little better, but still not enough information.
- What "theme" (template) do you use?
- did you manually edited 4images code or just replaced all files from 4images package?
- what mods you have installed?
- can you provide a link to the site or at least a screenshot?

15
Installation, Update & Configuration / Re: theme dont show in update
« on: September 12, 2010, 10:11:03 PM »
Sorry to hear that, but please read your post again, how do you expect anyone be able help you with the information you've provided?

Pages: [1] 2 3 4 5 ... 15