You are not registered yet. Please click here to register!
 
       
Set to my Home page Add to Favorites
 
LOGIN
Username  
Password  
   
   
Register
Forgot your password?
DataLife Engine Support » DataLife Engine » Module » pingationMod 1.4 English version and NULL by DLEVIET
Category
Script Gen:0.00306s.
Popular
» Module Referer 6.4
» DataLife Engine v.8.5 FULL English by DLEVIET
» DLE Search Cloud Module
» Flash tags cloud
» DataLife Engine v.8.5 Final Release
» Category Module
» DataLife Engine v.8.5 Press Release
» Template zeos.in
» Category Tree 1.3
» DLE Site Info 2.1 Module
Sponsor
Last News
» Change html tag italic(i) and bold(b) to tag (em) and (strong) for SEO
» Automatic Upload Image Module
» DataLife Engine v.9.0 Press Release
» Insufficient filtering of incoming data for DLE 8.5
» Fix bug cross-site scripting (XSS) attacks
» Can't post new post ( help me plz)
» What is database? pl tell me detailed answer?
» problem in template.class.php
» Module DLE Bookmarks US! v1.0 by SMed79
» Popup require guest register new user v2.0
Archives
July 2010 (2)
June 2010 (3)
May 2010 (15)
April 2010 (10)
March 2010 (19)
February 2010 (6)
Tags Cloud
3news, bookmark module, bookmark us, bookmarks, build, category, compress, css, Datalife (dle) Search Cloud Module, dle, DLE Search CLoud Module, dleviet, dynamic, google adsense, guest, guest popup, javascript, mid team, Multiple, new user, pingationMod, Please register, popup, register, SEO, sexy, sexy bookmark, sexy social bookmarks, site, Sitemaps, top user module, viet
Referer
Google: datalife engine templates
Google: download datalife engine 8.3 english nulled
Google: datalife engine support
Google: datalife engine
Google: Data Life Engine
Google: datalife engine english
Google: datalifeengine.us
Google: shop module for datalife engine
Yndex.ru: datalife engine
Google: dle tagscloud.tpl
Last Comments
Author: parvez
Article: Category Module
Author: sumon
Article: Template zeos.in
DLEVIET Partner
» AfghaN waRez
» MASOO DOWNLOAD
» 7 Download
» Free Full Software Download
» Albanian Sharing Warez
» Share4all.Com
» Download all U want
» Free flash games online, free play games online
» Free download ebook, free download software, free download theme, free download template, free download game
» rapidshare pc psp games
» Warez-VN
» full free download
» A - Z Softwares
» Thu Vien Webmaster
» Universal Url Checker
» VietHak Team
» GetVn
Add Your Site

Powered By SiteReport.org
 
 

DataLife Engine » Module : pingationMod 1.4 English version and NULL by DLEVIET
 
pingationMod 1.4 English version and NULL by DLEVIET



Module "pingationMod" - provides timely notification ping services on the changes on your site. Services for the ping - a service that informs search engines that your site appeared the next publication. As a result, the search engine spiders quickly learn that you have written a new article and visiting the site to its index.

Features of the module:
Hand-sending notifications ping services from admin panel (for Ajax)
-Automatically sends notifications ping services after the publication of news
-Sending notification ping services after news editing
Hand-sending XML sitemap to search engines, such as: Ask.com, Bing, Google and Yahoo from the admin panel (for Ajax)
-Quick navigation to all sections of the module
-Introduction log events

List of changes in version 1.4:
-Added output errors on screen, if the XML site maps do not exist
-Ability to send a site map in Yahoo (for this you need the App ID in the module settings)
-Fixed all known bugs

pingationMod 1.4 English version and NULL by DLEVIET

pingationMod 1.4 English version and NULL by DLEVIET


INSTALL
Installation of the module for DataLife Engine 8.2
========================================
1. Copy all files from the upload folder to the root folder
2. Open the file engine/inc/options.php
find:
array (
'name' => $lang['opt_rules'],
'url' => "$PHP_SELF?mod=static&action=doedit&page=rules",
'descr' => $lang['opt_rulesc'],
'image' => "rules.png",
'access' => $user_group[$member_id['user_group']]['admin_static']
),

Below add:
array (
'name' => "pingationMod",
'url' => "$PHP_SELF?mod=ping",
'descr' => "The module provides for timely notification ping services on the changes on your site",
'image' => "ping.png",
'access' => $user_group[$member_id['user_group']]['admin_static']
),

3. Open file engine/inc/addnews.php
Find:
clear_cache();
msg( "info", $lang['addnews_ok'], $lang['addnews_ok_1'] . " \"" . stripslashes( stripslashes( $title ) ) . "\" " . $lang['addnews_ok_2'] );

replace with:
/*Start pingationMod*/    
include ENGINE_DIR . '/data/ping.php';
if (isset( $_POST['approve'])  AND $newsdate < $added_time AND $ping['allow_post'] == "1"){
include ENGINE_DIR . '/inc/ping/pingpost.php';
clear_cache();
msg( "info", $lang['addnews_ok'], $lang['addnews_ok_1'] . " \"" . stripslashes( stripslashes( $title ) ) . "\" " . $lang['addnews_ok_2'] . "<br /><font color=green>Ping services were successfully notified about changes on your site</font>" );
}
else
{
clear_cache();
msg( "info", $lang['addnews_ok'], $lang['addnews_ok_1'] . " \"" . stripslashes( stripslashes( $title ) ) . "\" " . $lang['addnews_ok_2'] );    
}
/*End of pingationMod */

4. Open file engine/inc/editnews.php and find:
<td><input type="checkbox" name="approve" value="1" {$ifapp}> {$lang['addnews_mod']}

replace to:
<td><input type="checkbox" name="approve" value="1" {$ifapp}> {$lang['addnews_mod']}<br />
<input type="checkbox" name="ping" value="1"> Send notification of ping services


Next find:
if( $no_permission ) {
msg( "error", $lang['addnews_error'], $lang['edit_denied'], $_SESSION['admin_referrer'] );
} elseif( $okdeleted ) {
msg( "info", $lang['edit_delok'], $lang['edit_delok_1'], $_SESSION['admin_referrer'] );
} elseif( $okchanges ) {

below add
/*Start pingationMod*/    
if(isset( $_POST['ping']) AND isset( $_POST['approve']) AND $newsdate < $added_time){
require('ping/editpost.php');
msg( "info", $lang['edit_alleok'], $lang['edit_alleok_1']."<br /><font color=green>Ping services were successfully notified about changes on your site</font>", $_SESSION['admin_referrer'] );
}else{
msg( "info", $lang['edit_alleok'], $lang['edit_alleok_1'], $_SESSION['admin_referrer'] );
}
/*End of pingationMod */

5. At the files:
engine/data/ping.php
engine/data/text.txt
engine/data/logs.txt

Put the right to write (CHMOD 777)

6. Put license like in below image and press Check license key. Next press Save module settings

pingationMod 1.4 English version and NULL by DLEVIET


----------------------------------------------
Update
Update module version 1.2 and 1.3 to version 1.4
==================================================
1. Copy all files from the upload folder to the root folder, replacing the old files with new
2. Open file engine/inc/addnews.php
Find the line between
/*Start pingationMod*/
/*End of pingationMod */

and replace them with
/*Start pingationMod*/    
include ENGINE_DIR . '/data/ping.php';
if (isset( $_POST['approve'])  AND $newsdate < $added_time AND $ping['allow_post'] == "1"){
include ENGINE_DIR . '/inc/ping/pingpost.php';
clear_cache();
msg( "info", $lang['addnews_ok'], $lang['addnews_ok_1'] . " \"" . stripslashes( stripslashes( $title ) ) . "\" " . $lang['addnews_ok_2'] . "<br /><font color=green>Ping services were successfully notified about changes on your site</font>" );
}
else
{
clear_cache();
msg( "info", $lang['addnews_ok'], $lang['addnews_ok_1'] . " \"" . stripslashes( stripslashes( $title ) ) . "\" " . $lang['addnews_ok_2'] );    
}
/*End of pingationMod */


Download
You must register before you can view this text.



Download this software with Usenet safely! Fast and anonymous 14 days free


Keywords: search, spiders, engine, result, quickly, publication, learn, index, visiting, article, written, appeared, engines, notification, timely, provides, pingationMod, services, changes, informs.
 
 
 
Please register to view full news and comment.

HTML:
BBCode:
Link:
 
   
 
Good(+) +3 Bad(-)
Comments (4)  Print
 
 
#1 Author: Q.SiN
 

Member

Registered: 4.03.2010
Hello,

Not work with DLE 8.3 ?
 
 
News: 0 | Comments: 1    
 
 
#2 Author: Pakistan
 

Authors

Registered: 2.03.2010
hay, please tell me how to add "Check box- Send notification of ping services" in module/addnews.php

I want to allow admin to send ping from site rather than admin panel as we do allow to "Pin Article" for admin.. is it possible??


--------------------
 
 
News: 8 | Comments: 38    
 
 
#3 Author: iggori
 

Member

Registered: 18.03.2010
Work on 8.5
 
 
News: 0 | Comments: 1    
 
 
#4 Author: snooper
 

Member

Registered: 21.05.2010
Please wait is sending a site map to search engines...
 
 
News: 1 | Comments: 2    
 
 
Information
 
Members of Guest cannot leave comments.

 
 

Recent Search Engine

datalife engine templates | download datalife engine 8.3 english nulled | datalife engine english | datalifeengine.us | shop module for datalife engine | datalife engine | dle tagscloud.tpl | search cloud | search cloud | search cloud | module searchcloud pour datalifeengine | f | sexy social | how upgrade datalife engine | http://dleviet.com/ | | dle facebook share | DataLife Engine v.8.5 UTF Edition Final Release | dle 8.5 online modulu | delviet | datalife engine v.8.5 final release rus | recent | best dle templates | watermark dle | datalife english | hack+WWW-Authenticate | hack WWW-Authenticate | how to fix datalife engine registration error | data+life+engine | auto image resizer datalife setting |
HELP DLEVIET
Donate via PAYPAL


Donate via WebMoney
Z959915539544



Facebook
POLL
How do you know DataLife Engine Support?

Search Engine
Other DLE Support websites
Forum
Friends
Others
Last DLE Version

8.5 / 2009
Calendar
«    August 2010    »
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
Statistics
Site Statistics
Top Author:
  1    admin 134
  2    Pakistan 8
  3    DjMixTape 5
  4    smed79 4
  5    dlheaven 4
  6    sri 3
  7    jaganguys 3
  8    Bebu 2
  9    77k 2
  10    frog 2


Membership:
  Total : 1358   ( +1 )
  This month : 231
  This hour : 0
  Banned : 30
  Newest member :
ajay


Articles:
  Total : 221  ( +0 )
  This Month : 11
  This hour : 0
  Awaiting validation : 119


Comments:
  Total : 567  ( +2 )
  This month : 31
  This hour : 0
Online
Members: 0
Not Online.

Bots: 3
spider BotMSN Bot
crawl Bot

Guest: 2
Total: 5

Site Visits
Today Visits: 1228
This Week Visits: 13797
This Month Visits: 88125
This Year Visits: 468252
All Visits: 1317233
Record: 67620 In 18.05.2009
TRANSLATE
TOP OF MONTH
» Change html tag italic(i) and bold(b) to tag (em) and ( ...
» Automatic Upload Image Module
Ranking