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

Pages: [1] 2
1
Mods & Plugins (Requests & Discussions) / Re: Media Library
« on: September 15, 2011, 01:15:47 AM »
ummmmmmmm

so i think thats cant be done right ?

2
Mods & Plugins (Requests & Discussions) / Re: Media Library
« on: September 07, 2011, 11:32:36 AM »
hello dir

this mod will let me add media to my 4image


but what i want is to read from 4image :(


so it will be my site not dailymotion

3
Mods & Plugins (Requests & Discussions) / Media Library
« on: September 06, 2011, 07:35:56 PM »
hello

ummm how to start :) ?

ok lats start like this


i have a Media Library  in my forum

and i want to read the movies from my 4images



the code the Media Library is like this




Code: [Select]
<?xml version="1.0" encoding="UTF-8"?>

<service>
<svcName>DailyMotion</svcName>
<svcRegex><![CDATA[http:\/\/[a-z]*?[\.]?dailymotion\.[a-z]*?\/video\/([A-Za-z0-9]*)]]></svcRegex>
<svcURL>http://www.dailymotion.com/video/{serviceVAL}</svcURL>
<svcFeed>http://www.dailymotion.com/rss/video/{serviceVAL}</svcFeed>
<svcValue2>null</svcValue2>
<svcThumb><![CDATA[$arr['channel']['item']['media:thumbnail']['url']]]></svcThumb>
<svcTitle><![CDATA[$arr['channel']['item']['media:title']]]></svcTitle>
<svcDesc><![CDATA[$arr['channel']['item']['itunes:summary']]]></svcDesc>
<svcLength><![CDATA[$arr['channel']['item']['media:group']['media:content'][0]['duration']]]></svcLength>
<svcTags><![CDATA[$arr['channel']['item']['itunes:keywords']]]></svcTags>
<svcMovie>http://www.dailymotion.com/swf/video/{serviceVAL}?autoplay={ap10}</svcMovie>
<svcWidth>640</svcWidth>
<svcHeight>360</svcHeight>
<svcStream>null</svcStream>
<svcError>null</svcError>
<svcParams />
</service>


can we change this to make it read from my 4images ???


any help pls ?

4
thx alote but how to make that 20000 in the google.php ?


thats my code

i cant find it ?
 pls

 :oops:

Code: [Select]
<?
# Create Google Sitemap for 4images
# Created by Mai Minh (minh@maingo.com http://www.vna2z.com)
# Date: 28/11/2006
# You can send ping to Google with this request: http://www.google.com/webmasters/sitemaps/ping?sitemap=URL_TO_YOUR_SITEMAP
#---------------------------------

require("config.php");

# 4images top page (with trailing slash)
$gallery_url = 'http://www.leblover.com/gallery/';

$link=mysql_connect("$db_host","$db_user","$db_password");
mysql_select_db("$db_name") or die ("Cannot connect database!");

# Priotity
$prio_img = 0.3;
$prio_cat = 0.8;

# Frequency
$freq_img = 'yearly';
$freq_cat = 'daily';

# Print XML header
xml_head();

# Print URLs
$categories = mysql_query('SELECT cat_id FROM ' . $table_prefix . 'categories');
while ($category = mysql_fetch_array($categories))
{
        $catid = $category['cat_id'];
        $cat_url = $gallery_url.'cat'.$catid.'.htm';
        print_xml($cat_url,$prio_cat,'',$freq_cat);
}

$images = mysql_query('SELECT image_id,image_active,image_date FROM ' . $table_prefix . 'images');
while ($image = mysql_fetch_array($images))
{
        if ($image['image_active'] == 1) {
                $imgid = $image['image_id'];
                $date = $image['image_date'];
                $date = date("Y-m-d",$date)."T".date("H:i:s",$date)."+00:00";
                $img_url = $gallery_url.'img'.$imgid.'.htm';
                print_xml($img_url,$prio_img,$date,$freq_img);
        }
}

# Print XML footer
xml_foot();

function xml_head() {
        $freq = 'daily';
        $priority = '1.0';
        $mod = date("Y-m-d")."T".date("H:i:s")."+00:00";
        echo "<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\"
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
xsi:schemaLocation=\"http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd\">
<url>
  <loc>http://www.leblover.com/gallery</loc>
  <lastmod>$mod</lastmod>
  <changefreq>$freq</changefreq>
  <priority>$priority</priority>
</url>";
}

#-----------------------------------------------
# xml_foot
#-----------------------------------------------
function xml_foot() {
        echo "
</urlset>";
}

#-----------------------------------------------
# print_xml
#-----------------------------------------------
function print_xml($url,$priority,$lastmod,$changefreq) {
        echo "
<url>
  <loc>$url</loc>
  <priority>$priority</priority>
  <lastmod>$lastmod</lastmod>
  <changefreq>$changefreq</changefreq>
</url>";
}
?>

5
hello there


im having this error from google

Code: [Select]
Sitemap file size error
Your Sitemap exceeds the maximum file size limit. Please create multiple Sitemaps containing fewer URLs to meet the file size limit. Help Help

6
Discussion & Troubleshooting / Re: search not working
« on: September 25, 2006, 12:49:19 AM »
by the way

abut search problem

i get some help from 24at24.com administrator

thx alote for him too :)


7
Discussion & Troubleshooting / Re: search not working
« on: September 25, 2006, 12:45:57 AM »
V@no  it work great thx alote :)

in config.php

i have two <?php and ?>

and when i remove one it work fine

thx alote :)

8
Discussion & Troubleshooting / Re: search not working
« on: September 24, 2006, 11:10:00 PM »
hello V@no

i make user for u

user name : 4images
passwrd : 4images

if u join to this url   http://www.leblover.com/gallery/categories.php?cat_id=147

u will see one pic just named test pic

if u downluad it

it will not open

but if u open it with ADCsee it will open

and even if u try to upload it again the same image it will not work it will say that its not a JPG type

but it is JPG


pls any help  ?

9
Discussion & Troubleshooting / Re: search not working
« on: September 20, 2006, 02:11:49 PM »
not even one answer ?    :(

10
Discussion & Troubleshooting / search not working
« on: September 17, 2006, 03:04:19 PM »
hello
i have problem pls

my search not working after i go to Version: 1.7.3

if i go search for any thing it will give me a blank page that it


but if i go to http://www.leblover.com/gallery/search.php

and then search there

it will work just if i search for users not for image name


any help pls ?

and one more thing :$ pls

so mush ppl send me mail that when thay download any image it will not open with them but with me its working and with many its working to so i tell them to put ACDsee in there pc and most of them it worked fine with him but i cant tell all to make that maybe some hate ACDsee 

any help here too pls :$:$:$:$:$


11
Mods & Plugins (Requests & Discussions) / Re: next and previous mod pls
« on: September 17, 2006, 02:56:25 PM »
thx alote man

it work with me

12
Mods & Plugins (Requests & Discussions) / next and previous mod pls
« on: August 31, 2006, 09:48:17 PM »
hi
can any one tell me pls abut this mod ?
 to make the nest and the previous as a image not just text ?

like this pic in the attachment

thx alote

13
Mods & Plugins (Requests & Discussions) / Re: need mod for sending mail
« on: August 05, 2006, 02:23:07 PM »
i know :)

look again what i ask pls
is there any way so i can send lats say every 1000 alone ? like vBulletin ?
i dont want to send to all my user one time
i want every 1000 alone


14
Mods & Plugins (Requests & Discussions) / need mod for sending mail
« on: August 04, 2006, 06:45:44 PM »
hello
any one pls can help me in this

i have 4images and i have it in 55000 user
so when i want to send them mail it take so mush time to load + it make load in my server

is there any way so i can send lats say every 1000 alone ? like vBulletin ?


hope i make my idea clear :$


15
Discussion & Troubleshooting / Re: Problem in Arabic Display
« on: April 06, 2006, 07:49:52 PM »
its great thx alote

Pages: [1] 2