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 - JimmyGee

Pages: [1]
1
Installation, Update & Configuration / Re: ImageMagick
« on: April 20, 2005, 05:10:49 PM »
also coppermine does not have this trouble at all. It picked up ImageMagick by itself. Maybe you should check their code to see how the IM check is done properly.

2
Mods & Plugins (Releases & Support) / Re: Signature image v2.20.2
« on: April 20, 2005, 05:02:55 PM »
I dont need to grant any permissions, permissions are fine. The hoster is no help. You are no help. I will abandon this little addon I think, too much hassle to set up.

3
Mods & Plugins (Releases & Support) / Re: Signature image v2.20.1
« on: April 19, 2005, 08:55:11 PM »
ok so any ideas on how I do that?

4
Mods & Plugins (Releases & Support) / Re: Signature image v2.20.1
« on: April 13, 2005, 10:54:07 AM »
DB Error: Bad SQL Query: CREATE TEMPORARY TABLE tab_883866 TYPE = HEAP SELECT i.image_id, i.cat_id FROM 4images_images i LEFT JOIN 4images_categories c ON c.cat_id = i.cat_id WHERE i.image_active = 1 AND c.auth_viewcat = 0 AND i.cat_id NOT IN () ORDER BY RAND() LIMIT 1
You have an error in your SQL syntax near ') ORDER BY RAND() LIMIT 1' at line 5

It gave me a similar error-message when my web-provider changed some server-settings.

Ask your web-provider. if he did not forbid you to create temporary tables with your MySQL account...
im on a dedicated server and have full control over all of that. Also I am able to install scripts that are able to create tables in mysql from a browser such as phpbb. If there was a problem creating tables wouldn't that also fail?

5
Mods & Plugins (Releases & Support) / Re: Signature image v2.20.1
« on: April 11, 2005, 03:12:37 PM »
Hi, great looking mod. I am getting the following error though :/ -

Code: [Select]
DB Error: Bad SQL Query: CREATE TEMPORARY TABLE tab_883866 TYPE = HEAP SELECT i.image_id, i.cat_id FROM 4images_images i LEFT JOIN 4images_categories c ON c.cat_id = i.cat_id WHERE i.image_active = 1 AND c.auth_viewcat = 0 AND i.cat_id NOT IN () ORDER BY RAND() LIMIT 1
You have an error in your SQL syntax near ') ORDER BY RAND() LIMIT 1' at line 5

DB Error: Bad SQL Query: SELECT t.image_id, t.cat_id, i.user_id, i.image_name, i.image_media_file, i.image_thumb_file FROM tab_883866 AS t LEFT JOIN 4images_images AS i ON i.image_id=t.image_id
Table 'gallery_-_forums.tab_883866' doesn't exist

DB Error: Bad SQL Query: DROP TABLE tab_883866
Unknown table 'tab_883866'

DB Error: Bad SQL Query: SELECT user_name FROM phpbb_users WHERE user_level > -1 ORDER BY user_id DESC
Unknown column 'user_name' in 'field list'

DB Error: Bad SQL Query: SELECT session_user_id, session_ip FROM phpbb_sessions WHERE session_lastaction >= 1113278392
Unknown column 'session_lastaction' in 'where clause'

any ideas?

6
Mods & Plugins (Requests & Discussions) / Re: Automate Image Validate
« on: April 11, 2005, 02:40:37 PM »
because I want to add the images slowly over time, not immediately as they are uploaded

7
Installation, Update & Configuration / Re: ImageMagick
« on: April 10, 2005, 10:55:47 PM »
no it's a Fedora3 nix... my last dedicated server was redhat9.0 nix
I've got a feeling it's the fedora setup that caused my problems, imagemagick was a hassle to install, I had to compile source because the fedora imagemagick.rpm package failed to install properly.

8
Mods & Plugins (Requests & Discussions) / Automate Image Validate
« on: April 10, 2005, 10:53:20 PM »
I am trying to set up 4images so that when I press the Validate images button it validates without asking to submit. I have already set it up so that when I click on Validate images it automatically selects the first file only as validated.

I would like to follow that action up with the same thing for resize thumbnails. That is also set up to choose the right options without having to change anything manually.

The plan is to add http://www.whatever.com/members/gallery/admin/validateimages.php?action=validateimages to a crontab job so that one image is validated say once a week or whatever. I'd like to add the auto thumbnail straight after that so it can resize manually added thumbnails belonging to video files.

Any ideas on how I could skip past the submit button of those forms (validate and thumbnail screenshots)?

I havent tried changing onClick to onLoad yet,

9
Installation, Update & Configuration / Re: ImageMagick
« on: April 10, 2005, 06:18:33 PM »
Ok, if you are REALLY sure that this is the right path, remove this code from the top of "admin/thumbnailer.php" and "admin/resizer.php" and try if it works.

Code: [Select]
if ($config['convert_tool'] == "im" && !is_executable($config['im_convert_path'])) {
  echo "<b class=\"marktext\">".$lang['im_error']."</b><br />\n";
  echo $lang['check_module_settings'];
  show_admin_footer();
  exit;
}

I had the same problem and yes ImageMagick does exist at the path I kept entering. On my last dedicated server I did not have to do this at all so i'm not sure on the cause but it seems to be server related or maybe a better imagemagick verifying routine can be coded :) Anyway to fix this problem in 4images 1.7.1 you have to do similar to what is mentioned above except you will find the code you need to delete in /includes/image_utils.php at around line 40. The code to delete is a little different to what Jan posted -
Code: [Select]
if (!@is_executable($convert_options['convert_path'])) {
      $convert_options['convert_error'] = "<b class=\"marktext\">".$lang['im_error']."</b><br />\n".$lang['check_module_settings'];
    }

Pages: [1]