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

Pages: [1] 2
1
Discussion & Troubleshooting / Re: deleting error images
« on: January 15, 2009, 03:34:45 PM »
can anyone help me plz

2
Discussion & Troubleshooting / deleting error images
« on: January 08, 2009, 09:50:22 AM »
hi on my gallery site..im getting some images that are not in my server...so im gettin the image not found logo..so i want to search and delete all the images that are not there..is there;s any easy way to do that?
please guide..:cry:
thank you

3
Discussion & Troubleshooting / Re: sending mail error.
« on: January 08, 2009, 09:45:19 AM »
hi any where to get good smtp for my site?

4
Discussion & Troubleshooting / sending mail error.
« on: January 08, 2009, 01:43:38 AM »
hi im not able to send mails..when i do so..it;s saying sending mail failed..
please guide.
thank you

5
Discussion & Troubleshooting / folder permission
« on: December 24, 2008, 08:59:52 AM »
hi guys i need help with this..
when i was first creating categories and choose the option "View Image" only by "Registered Users"
but i got alot of categories and i would like a simple solution to remove that and add view images to "All" option..
any simple option? please guide.. :cry:
thank you so much!

6
Discussion & Troubleshooting / sending email problem
« on: December 24, 2008, 12:13:40 AM »
hi, when i tried to send out email from admin panel, im gettin the following error..
please guide..
"Error Sending Email!"

please help

7
Discussion & Troubleshooting / gettin database error.
« on: November 23, 2008, 09:04:08 PM »
hi im gettin two different errors.
first one is when i view my gallery..im getting the following error :

Code: [Select]
An unexpected error occured. Please try again later.

An unexpected error occured. Please try again later.

An unexpected error occured. Please try again later.

An unexpected error occured. Please try again later.

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/content/l/o/v/lovd/html/lovd059784fdg/gallery/includes/db_mysql.php on line 116

send error is when i go to admin panel to Auto-Thumbnailer.. im getting the following error..

Code: [Select]
Warning: getimagesize(): Read error! in /home/content/l/o/v/lovd/html/lovd059784fdg/gallery/admin/thumbnailer.php on line 115

8
Discussion & Troubleshooting / Re: category colour
« on: January 30, 2006, 05:47:37 AM »
hey do u know how to include sum php scripts on a html templates?

9
Discussion & Troubleshooting / category colour
« on: January 30, 2006, 05:35:48 AM »
hello..i would like to change some of my categories colour ...is it possible? please help...

10
Mods & Plugins (Requests & Discussions) / include php
« on: January 29, 2006, 06:21:59 AM »
how do i include php in template? please help

11
Discussion & Troubleshooting / new page
« on: January 28, 2006, 03:11:57 AM »
hey i would like to create new php session with ma glalery..like gallery/new_page.php but with my gallery session..please help...

12
Discussion & Troubleshooting / ecard help
« on: January 23, 2006, 02:04:42 AM »
hey...on my site...when i am sendin an ecard..and when i go to "ecard Preview" and look at it..and when i click "modify Ecard" im gettin a blank field on the ecard that u just filled out...why is that..please help :(

13
Discussion & Troubleshooting / Re: script error
« on: January 15, 2006, 05:27:30 AM »
i can't findn eyhting der..pleaseeeeeee help

14
Discussion & Troubleshooting / script error
« on: January 15, 2006, 05:07:31 AM »
hey...when i install 4homepages script and trired to upload images...im getting this erroe..but i checked the file permission..its all fine...

error :
Quote
Warning: move_uploaded_file(): SAFE MODE Restriction in effect. The script whose uid is 1082 is not allowed to access /usr/home/tamilshotz/domains/tamilshotz.com/public_html/4images/data/media/4 owned by uid 1004 in /usr/home/tamilshotz/domains/tamilshotz.com/public_html/4images/includes/upload.php on line 113

15
Mods & Plugins (Releases & Support) / Re: [MOD] RSS Feed 0.1
« on: October 21, 2005, 10:06:15 PM »
hello...i am gettin this error..please help


Quote
End tag 'head' does not match the start tag 'link'. Error processing resource 'http://www.tamilsoulja.com/gallery/rss.php'. Line 8, Position 3
 

</head>
--^

and this is my rss.php

Quote
/*************************************************
 * RSS Feed for 4images                          *
 * beta 0.1                                      *
 * Email:
 */

//------------ CONFIG ----------------------------

$num_new_images = 10;
/*
 u can uncomment this, if you want to use config variables from 4images config
 $num_new_images = $config['image_cells'];
*/

//because we have no session here, we have to hardcode this values
define('SCRIPT_URL', 'http://www.tamilsoulja.com/gallery'); //no trailing slash
define('LANGUAGE', 'DE');

define('ROOT_PATH', './');

//----- END CONFIG--------------------------------------------

include(ROOT_PATH.'global.php');
$main_template = 'rss';



$sql = "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_description, i.image_keywords, i.image_date, i.image_active, c.cat_name
        FROM ".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c
        WHERE i.image_active = 1 AND c.cat_id = i.cat_id
        ORDER BY i.image_date DESC
        LIMIT $num_new_images";
$result = $site_db->query($sql);
$num_rows = $site_db->get_numrows($result);
$format="Y-m-d\TH:i:s+00:00"; //the time format for rss date
while($image_row = $site_db->fetch_array($result)){
  $site_template->register_vars(array(
                  "title" => $image_row["image_name"],             
                  "description" => $image_row["image_description"],
                  "category_domain" => SCRIPT_URL."/categories.php?cat_id=".$image_row["cat_id"],
                  "category" => $image_row["cat_name"],
                  "link" => SCRIPT_URL."/details.php?image_id=".$image_row["image_id"],
                  "date" => format_date($format,$image_row["image_date"]),
                  ));
  $new_images.=$site_template->parse_template("rssitem");
 }

//-----------------------------------------------------
//--- Print Out ---------------------------------------
//-----------------------------------------------------
$site_template->register_vars(
               array(
                "ctitle" => $config['site_name'],
                "clink" => SCRIPT_URL,
                "cdescription" => $config['site_name']." RSS Feed",
                "language" =>LANGUAGE,
                "ititle" =>"",               
                "iurl" => SCRIPT_URL."/".TEMPLATE_PATH."/images/header_logo.gif",
                "ilink" => SCRIPT_URL,
                "items" => $new_images,             
                )
               );
header("Content-type: text/xml");
$site_template->print_template('<?xml version="1.0" encoding="ISO-8859-1"?>'.$site_template->parse_template($main_template));;
?>

Pages: [1] 2