Don't want all the time enabled the Ajax QuickEdit

Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Don't want all the time enabled the Ajax QuickEdit

Beitrag von mariokaz »

Hi Oxpus,

I hope you can help me in this.

Well I don't want that the Ajax Quickedit always stay enabled in the posts of each user, because in my forum my users only have "X" time to edit their posts, but his only works to the full edit form, because always appears the quickedit function and with that my users can edit their posts.

I have this little mod to put time to my users can edit their posts, so I hope the AJAX can be compatible with that.

Code: Alles auswählen

## EasyMod 0.0.10a compliant
################################################################# 
## MOD Title: 		Limited Post Edit time
## MOD Author: 		Shannado <sven@shannado.nl> (Sven) http://www.shannado.nl/forumorg
## MOD Description: With this MOD the admin is able to set through the board configuaration, the time (in minutes) a user has 
##					to edit his/her post. When the value is set to '0', the time is unlimited.
##					The check occurs only when the user hits the 'edit'button in the post. 
##					NOT when the user hits the submit button.
##					Moderators & Admins can always edit the post 
## MOD Version: 	1.0.1 
## 
## Installation Level: 	Easy
## Installation Time: 	10 - 20 Minutes 
## Files To Edit: 				posting.php, 
##						lang_main.php, 
##						lang_admin.php, 
##						admin_board.php, 
##						board_config_body.tpl
## Included Files: 	N/A
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes: 
## 
############################################################## 
## MOD History: 
## 
## ------------
## 01-01-2002 - 0.9.0 beta 
##	- Beta
##
## 01-01-2002 - 1.0.0 FINAL
##	- Final
##
## 01-01-2002 - 1.0.1 FINAL
##	- Made phpBB v2.0.2 complaint and EasyMod 0.0.7 complaint
##
## 05-12-2003 - 1.0.2 FINAL
##	- Made phpBB v2.0.6 complaint and EasyMod 0.0.10a complaint
##	- Adjusted to the new Template
################################################################# 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
################################################################# 
#
#-----[ SQL ]-------------------------------------------
# 
INSERT INTO phpbb_config (config_name, config_value) VALUES ('edit_time', '0')

# 
#-----[ OPEN ]------------------------------------------ 
#  
language/lang_english/lang_admin.php

# 
#-----[ FIND ]------------------------------------------ 
# 
// 
// That's all Folks! 

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 
//limited post edit time MOD
$lang['edit_time'] = 'Post Edit time'; 
$lang['edit_time_explain'] = 'The time (in minutes) the user has to edit his/her post. Setting this value to 0, the time is unlimited.';

# 
#-----[ OPEN ]------------------------------------------ 
#  
language/lang_english/lang_main.php

# 
#-----[ FIND ]------------------------------------------ 
# 
// 
// That's all, Folks! 

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 

//limited post edit time MOD
$lang['edit_time_past'] = 'You are not allowed to edit your post. You have to edit your post within <b>%d</b> minutes, after you posted your message.';

--------TRADUCCION----------------------------------------------

//limited post edit time MOD
$lang['edit_time_past'] = 'No estas permitido para editar tu respuesta. Para editar tu respuesta(mensaje) tienes únicamente <b>%d</b> minutos, después de haberla colocado.';

# 
#-----[ OPEN ]------------------------------------------ 
# 
posting.php

# 
#-----[ FIND ]------------------------------------------ 
# 
$select_sql = ( !$submit ) ? ", t.topic_title, p.enable_bbcode, p.enable_html, p.enable_smilies, p.enable_sig, p.post_username, pt.post_subject, pt.post_text, pt.bbcode_uid, u.username, u.user_id, u.user_sig" : '';

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
$select_sql = ( !$submit ) ? ", t.topic_title, p.enable_bbcode, p.enable_html, p.enable_smilies, p.enable_sig, p.post_username, p.post_time, pt.post_subject, pt.post_text, pt.bbcode_uid, u.username, u.user_id, u.user_sig" : '';

-------[ BUSCAR UNICAMENTE ]--------------

$select_sql = ( !$submit ) ? "

--------[DESPUES DE]---------------------

p.post_username,

--------[AGREGAR]------------------------

 p.post_time, 

# 
#-----[ FIND ]------------------------------------------ 
# 
	else if ( $mode != 'newtopic' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod']) 
	{ 
	   message_die(GENERAL_MESSAGE, $lang['Topic_locked']); 
	} 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
	// 
	// BEGIN - Limited post edit time MOD
	//
	if ( $mode == 'editpost' && !$is_auth['auth_mod'] && $board_config['edit_time'] != '0' && !$submit)
	{
		$current_time = time();
		$difference_sec = $current_time - $post_info['post_time'] ;
		$difference_min = ($current_time - $post_info['post_time']) / 60;
		if ($difference_min > $board_config['edit_time'] )
		{
			$message = sprintf($lang['edit_time_past'],$board_config['edit_time']) . '<br /><br />' . sprintf($lang['Click_view_message'], '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" . $post_id) . '#' . $post_id . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_forum'], '<a href="' . append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id") . '">', '</a>');
			message_die(GENERAL_MESSAGE, $message);
		}
	}

	//
	// END - Limited post edit time MOD
	//

# 
#-----[ OPEN ]------------------------------------------ 
#  
admin/admin_board.php

# 
#-----[ FIND ]------------------------------------------ 
# 
"L_ENABLE_PRUNE" => $lang['Enable_prune'], 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
	"L_EDIT_TIME" => $lang['edit_time'],
	"L_EDIT_TIME_EXPLAIN" => $lang['edit_time_explain'],

# 
#-----[ FIND ]------------------------------------------ 
# 
	"PRUNE_NO" => $prune_no, 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
	"EDIT_TIME" => $new['edit_time'], 

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/SubSilver/admin/board_config_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
# 
   <td class="row2"><input type="radio" name="prune_enable" value="1" {PRUNE_YES} /> {L_YES}&nbsp;&nbsp;<input type="radio" name="prune_enable" value="0" {PRUNE_NO} /> {L_NO}</td> 
</tr> 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
	<tr> 
	   <td class="row1">{L_EDIT_TIME}<br /><span class="gensmall">{L_EDIT_TIME_EXPLAIN}</span></td> 
	   <td class="row2"><input type="text" size="4" maxlength="4" name="edit_time" value="{EDIT_TIME}" /></td> 
	</tr> 

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM

Also with the plus the Ajax 1.0.4 can enable and disable the quickedit function but with the update I lost that function in my Ajax Mod. ^6

Cheers!! :D
Zuletzt geändert von mariokaz am Fr 27.Okt, 2006 19:04, insgesamt 2-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Why not disable the quickedit completly?
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

I like a lot that function in my forum, if that is not possible that the quickedit only be enabled "X" time, maybe only appears to my users in their last posts.

Or maybe only the quick edit be availble for the Moderators and Admin, that I can disable or enable the QuickEdit function in the Configuration Board, I think is the same function that the Plus have with Ajax 1.0.4, this one in viewtopic.php file:

Code: Alles auswählen

	if ( ( $userdata['user_id'] == $poster_id && $is_auth['auth_edit'] && ($forum_topic_data['topic_status'] != TOPIC_LOCKED)) || $is_auth['auth_mod'] )
	{
		$edit_url = append_sid("posting.$phpEx?mode=editpost&" . POST_POST_URL . "=" . $postrow[$i]['post_id']);
		$edit_img = '<a id="editimg_'. $postrow[$i]['post_id'] .'" '.(($board_config['use_ajax_edit'])?'onclick="return AJAXPostEdit('. $postrow[$i]['post_id'] .');" ':'').'href="'. $edit_url .'"><img src="' . $images['icon_edit'] . '" alt="' . $lang['Edit_delete_post'] . '" title="' . $lang['Edit_delete_post'] . '" border="0" /></a>';
		$edit = '<a id="editlink_'. $postrow[$i]['post_id'] .'" href="' . $edit_url . '">' . $lang['Edit_delete_post'] . '</a>';
But I don't know how can I put this part:

Code: Alles auswählen

'.(($board_config['use_ajax_edit'])?'
In this part of the new code for the Ajax 1.0.11:

Code: Alles auswählen

	if ( ( $userdata['user_id'] == $poster_id && $is_auth['auth_edit'] && ($forum_topic_data['topic_status'] != TOPIC_LOCKED)) || $is_auth['auth_mod'] )
	{
		$edit_url = append_sid("posting.$phpEx?mode=editpost&" . POST_POST_URL . "=" . $postrow[$i]['post_id']);
		$edit_img = '<a href="'. $edit_url .'"><img src="' . $images['icon_edit'] . '" alt="' . $lang['Edit_delete_post'] . '" title="' . $lang['Edit_delete_post'] . '" border="0" /></a>';
		$edit = '<a id="editlink_'. $postrow[$i]['post_id'] .'" onclick="return AJAXPostEdit('. $postrow[$i]['post_id'] .');" href="' . $edit_url . '" style="text-decoration: none;">[ ' . $lang['Edit_quick_post'] . ' ]</a>';
Thanx. :)
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Instead

Code: Alles auswählen

$edit = '<a id="editlink_'. $postrow[$i]['post_id'] .'" onclick="return AJAXPostEdit('. $postrow[$i]['post_id'] .');" href="' . $edit_url . '" style="text-decoration: none;">[ ' . $lang['Edit_quick_post'] . ' ]</a>';
use

Code: Alles auswählen

if ($board_config['use_ajax_edit'])
{
$edit = '<a id="editlink_'. $postrow[$i]['post_id'] .'" onclick="return AJAXPostEdit('. $postrow[$i]['post_id'] .');" href="' . $edit_url . '" style="text-decoration: none;">[ ' . $lang['Edit_quick_post'] . ' ]</a>';
}
else
{
$edit = '';
}
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Thank you Oxpus, that works awesome!!!

And we can't have this function only availble in the last post of my users and for "x" time ? :!:

So the users only can't edit their lasts post with the full edit form or with the ajax quickedit function for "X" time, ex. 20 minutes.

Or only available for all my users, moderatos or admin ??

Cheers my friend!! :lol:
Zuletzt geändert von mariokaz am So 29.Okt, 2006 17:19, insgesamt 1-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

... without a MOD?
Here and now a solution?
*heavy stress here*

A quick and dirty solution, very untested:

Code: Alles auswählen

# 
#-----[ FIND ]------------------------------------------ 
# 
if ($board_config['use_ajax_edit'])

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
$can_edit = (((time() - $postrow[$i]['post_time']) / 60) > $board_config['edit_time'] && $board_config['edit_time']) ? TRUE : 0;

if ($board_config['use_ajax_edit'] && $can_edit)
If this will not work, first try to switch "TRUE" and "0" before post here again.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Ok let me try that. :p

But I have one problem, I don´t know why all the functions of the AJAX Mod in my froum aren´t working.

The strange thing is all the function was working and now not, I re-uploaded the ajax folder but that didn´t solve anything. :(

Any idea of which can be the problem ?? ^6

Because when I cliked in any of the buttons for the functions of the AJAX Mod, down of my explorer appear a message "Error on page". ¦4

Also I reuploaded the ajax.php file and nothing. :(

Thanx again Oxpus!!! ;)
Zuletzt geändert von mariokaz am So 29.Okt, 2006 20:39, insgesamt 1-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Please a little bit more detailed.
Did you empty the browser cache?
Which functions will not work?
Did you install any other MODs after the AJAX MODs?
Do you use the newest MOD Release?
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Jejeje yes my friend sorry.

1.- Yes I emptied the cache of my both explorers (Mozilla and IE) and yesterday I updated my IE to the lastest version, the IE 7

2.- The functions that don't works are all or all that I want to used it, let me explin better....
All the windows of the Mod, like the window of the quickedit function appears but I can't edit something because all the buttons of that function don't works and appears down of my explorer "Error on page", also when I want to move a topic, appears the window of the function but I can't move any topic because the button fot that also don't works, the function to edit the tittle of the topic in the viewforum page also appears the field in blank to put the new tittle but I can't save the new tittle and in the other functions like erase topics, close topics, etc. yes it works but appears in the other page that functions, not in the same page of the topic. :(
Because all that I think all the functions of the AJAX Mod aren't working, the new windows for those functions appears but the buttons don't let me to save or change anything, and appears the message "Error on Page" down in the bar of the explorer. ¦4

3.- Yes only two Mods, your great Mod "Delete Multiple posts" and the "Userpic in Profile 1.0.1" of Amigalink. ^6

4.- Yes I updated my AJAX that comes in the packagae of the Plus 1.53a, the 1.0.4 to 1.0.11, is the newest, right ?? ;)

Thanx again Oxpus!! :p

[ Attachment gelöscht am Mo 30.Okt, 2006 09:03 von oxpus ]
Zuletzt geändert von mariokaz am Mo 30.Okt, 2006 06:50, insgesamt 1-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Yes the newest is the 1.0.11.
But if you will get "Error" messages, why not check the installation?
And which AJAX-Feature package do you use? The one which you can download from here or the package from Kufikugel posted on phpbb2.de that was designed for the Plus?
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Blisk
Beiträge: 873
Registriert: Di 21.Sep, 2004 12:06
Kontaktdaten:

Beitrag von Blisk »

Yes I like to have that too, that user have this quick edit only on his last post.
for regular edit I found simple MOd which works but need to hide quick edit too.

Code: Alles auswählen

##############################################################
## MOD Title: Disallow editing replied posts
## MOD Author: markus_petrux < phpbb.mods@phpmix.com > (Markus) http://www.phpmix.com
## MOD Description: Disallows editing replied posts, except for Admins and Moderators.
## MOD Version: 1.0.0
## MOD url: http://www.phpmix.com
##
## Installation Level: (Easy)
## Installation Time: 3 Minutes
## Files To Edit: 2
##    posting.php
##    language/lang_english/lang_main.php
## Included Files: 0
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/
##############################################################
## Author Notes: 
##
##############################################################
## MOD History:
##
## 2004/09/09 - 1.0.0
## - Just changed version number to submit to MODs Database.
##
## 2004/09/08 - Beta 0.0.1
## - Initial release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

#
#-----[ OPEN ]------------------------------------------
#
posting.php
#
#-----[ FIND ]------------------------------------------
#
		$post_data['poster_id'] = $post_info['poster_id'];
#
#-----[ AFTER, ADD ]------------------------------------------
#

//+MOD: Disallow editing replied posts
		if( $userdata['user_level'] != ADMIN && $userdata['user_level'] != MOD )
		{
			if( $post_id != $post_data['last_post'] )
			{
				message_die(GENERAL_MESSAGE, $lang['Cannot_edit_replied']);
			}
		}
//-MOD: Disallow editing replied posts
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Cannot_delete_replied']
#
#-----[ AFTER, ADD ]------------------------------------------
#
//+MOD: Disallow editing replied posts
$lang['Cannot_edit_replied'] = "Sorry, but you may not edit posts that have been replied to.";
//-MOD: Disallow editing replied posts
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

[quote="oxpus";p="65886"]But if you will get "Error" messages, why not check the installation?[/quote]

No error messages in the forum, error message "Error Page in the sown bar for the Internet Explorer. ^6

[quote="oxpus";p="65886"]And which AJAX-Feature package do you use? The one which you can download from here or the package from Kufikugel posted on phpbb2.de that was designed for the Plus?[/quote]

The Plus comes with the AJAX 1.0.4 and I updated with the package of your forum, is that was right ? I didn't know that exists one AJAX version for the Plus users. :eek:

I ask to one of my Moderators of my Forum to test all the functions of the AJAX Mod and yes it works with him, so now I am thinking that is a problem of my explorers (FireFox and IE 7), the strange thing is in both don't works the AJAX Mod, also in other computer that I have in house don't works. ¦4
I deleted the cookies and everything in both explorers but the same, so what else I can do to fix that ? ;)
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Recheck the installation of the AJAX Features with this package: http://www.phpbb2.de/viewtopic.php?t=40530
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Yes I re-checked everything right now again and everything is ok, because the modifications that I didn't find I search and did it in other file that Plus have, like the code in viewforum.php I did it includes/functions_topics_list.php, etc.

Right now only I did one little modification with that package in my viewtopic.php file, only that.

So I have no problem with the installation that I did, also I re-uploaded the ajax.php that comes in the package from Kufikugel and the same problem, I can't edit, save or move anything with the AJAX Mod in my Forum.

My Moderatos can and I don't know why I can't do it in any of my both explorers and also in my other computer ¦4 , so I almost very sure that are my explorers, I deleted everything, cookies, Temporary Internet Files, etc. and still the problem.

What else can I do ?? ¢¦
Zuletzt geändert von mariokaz am Mo 30.Okt, 2006 19:44, insgesamt 1-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Will the buttons just not work or are they disabled?
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

All the windows appears with the buttons, I see all that buttons, but when I clicked in it nothing happen, only in the bar down in the window of my explorer appears "Error Page", just that. :(

So because that I can't save, edit or change anything of my forum with the AJAX Mod. ¦4

Thanx.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Again:
Check the installation completly.
With correct installed AJAX Features you'll not get javascript error messages...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Ok I will re-check it again.

But why my Moderators can use in their computers the Ajax functions of my Mod and I can't ??, they can move topics, edit tittles, close topics, use the quickedit function, all with the ajax mod :eek:

In this computer in my both explorers and also in other computer that I have in home and I deleted cookies and everything. ^6
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

If your browser displayes javascript errors, the installation of the AJAX features is wrong. So simply recheck them!!!
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Blisk
Beiträge: 873
Registriert: Di 21.Sep, 2004 12:06
Kontaktdaten:

Beitrag von Blisk »

So is there a way to show quick edit only on last psot?
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Last post of the topic or of the user?
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Hi Oxpus!!

Well finally I finished to re-check all the files that I edited in the update of the AJAX Mod 1.0.4 to 1.0.11 and everything was fine, template files(of my both templates), includes files and the other files!!!! :eek:

And now I saw the problem, the AJAX Mod is only working in the Fisubsilversh template and working very well with all the functions of the Mod there but in my other template the Fiblack3dblue is not working ¦4 and yes it was working in there when I did all the update, because I almost always use that template I liked a lot.

Oxpus what else can be the problem of this ???, because now I see that the problem is not the installation. :(

Please help me!! ¢¦
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

I don't know that style, so I can't really help for the moment...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Blisk
Beiträge: 873
Registriert: Di 21.Sep, 2004 12:06
Kontaktdaten:

Beitrag von Blisk »

[quote="oxpus";p="65973"]Last post of the topic or of the user?[/quote]

Last post of the topic.
So last user still can edit->repair his post, but no other can, excpet admin and moderators.
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Oxpus is no way to know what can be the problem ??

I know is some file of the ajax or another Mod that is shocking with the Ajax Mod, you one time tell me to edit some files of the Ajax mod to see the Javascript error windows and then you know which one was the problem when my QuickEdit function didn't work in my old forum.

Becuause if not I will have to delete that template of my forum and re-install the upadte of the Ajax Mod and my other 30 mods. ¦4

Thanx.
Antworten