Today the site files deleted by mistake ,and then uploaded
again.
But thesite was very slow after the uploadeng of files
I sent a message to the provider for mys erver
Responded to this
server was responding slowly because there were too many taken apache processes and there were no free workers to serve requests. It was most likely related to mysql, there were many requests waiting for table locks. After I cleared them it is now running smoothly again.
Mysql requests that were blocking were trying to run TRUNCATE TABLE dle_jos_views and some other similarly named tables. It seems that TRUNCATE TABLE request is ran quite frequently, do you know why?
ه===========
I install new fresh script and upload engine/data For some time the site works well So I uploaded engine/cache
The site came back very slowly when placed the old engine/cache??
For you what the problem؟؟
And work ? And what if no uploaded the old folder cache?? Added by: dasolo in jQuery Questions on 10-02-2016, 13:42
I've got a strange problem with engine/cache
Light Template DLE 10.5
Hello, i need help with DLE 10.5 with the template Light template..
The problem is.. if i try Login, the pop-up for login doesn't appear, i think the problem is with JQuery, i don't know.. but i think.. i try download Light Template 10.2 or 10.1 and copy the JQuery to my DLE 10.5 and is not working to..
Currently i have using DLE 10.5
Template: Light Template 10.5 you can view here(http://s16.postimg.org/a6sqwmvk5/1391426050_light_template.jpg) (you can remove this photo after view, sorry for the watermark)
That is the template i currently using..
The problem is (you can go to my website, after view the problem you can remove of the question..) megapirata.net
if you try click on "LOGIN" the pop-up doesn't show, if i login.. and i try to acess my profile, configurations etc.. the pop-up doesn't show.. that is the problem, i can't login, and any members can't login..
How i can resolve or fix that? I love this theme, i hope fix that..
I don't know if the problem is in the jQuery, only i think
Thank youu, so much! Added by: hanzor in jQuery Questions on 8-08-2015, 16:23
some of old theme are using old popup windows, it seems like your theme using this popupAnswered by: yorismith
http://jmpopups.googlecode.com/
and it's no longer developed as far as I know...so there are a few tests you can try
1) open /templates/templight/main.tpl and add this code before [b][/b]<script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script>
2) if it not working then you will need to replace popup with new jquery popup like dle popup or some other plugin like colorbox, fancybox, lightbox etc...
Problem with jPlayer
Hi .. I am having a problem with jPlayer where nothing will display from the playlist on new posts only. I have checked over and over again for errors on the post and the playlist tpl and there is not one error on the file I can find. I am going to send you one of the files so you can see what I mean, the older posts that I simply changed links to the new address. Here is the link to the audiobook posted yesterday
New Post
Old post that just had the links changed:
Old linkAdded by: Kathryn in jQuery Questions on 17-06-2015, 18:21
I don't need to take a look your attached file but I can tell you right the way that your jquery file is inaccessibleAnswered by: dlefaqhttp://www.ebook-mecca.com/templates/Formovies/jplayer/jquery.jplayer.min.js
http://www.ebook-mecca.com/templates/Formovies/jplayer/jplayer.playlist.min.js
That's more than any explanation to tell what's difference...
Base on what I can tell between old link and new link areOld link theme file using this code
<script type="text/javascript" src="{THEME}/jplayer/jplayer.js"></script>
<script type="text/javascript" src="{THEME}/jplayer/jplayer-playlist.js"></script>New link theme file using this code
<script type="text/javascript" src="{THEME}/jplayer/jquery.jplayer.min.js"></script>
<script type="text/javascript" src="{THEME}/jplayer/jplayer.playlist.min.js"></script>
Searching a script for mousehover effect
hi guys, im searching for a script or somthing similiar like this:
its a mousehovereffect i saw this on the Warthunder website... if the hover comes up i can bring my mouse on it ....!
hope some one of you can help me
best regards,
c00kie Added by: c00kie in jQuery Questions on 3-05-2015, 08:06
You can use any jquery tooltip plugins to this type of mouse hoverAnswered by: dlefaq
Here is good tooltip plugins and lightweighthttp://iamceege.github.io/tooltipster/
http://qtip2.com/
http://osvaldas.info/elegant-css-and-jquery-tooltip-responsive-mobile-friendly
http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
http://tipso.object505.com/
Bootpage Pagination Plugin
I want to navigate beetwen pages without page refresh for dle, with this plugin: http://botmonster.com/jquery-bootpag/ . can anyone help me? sorry for bad english . I hope you understand me. Added by: wapmastera in jQuery Questions on 20-04-2015, 08:32
No correct answer yet/Unsolve (waiting for response from developer)
Problem theme upgraded from DLE 10.2 to 10.4
Hi! i upgraded my DLE version from 10.2 to 10.4 and the theme, but i have a small problem with slider and my menu, i think is a javascript conflict but i don't know how to fix it.
Demo here Added by: Adrian Marocico in jQuery Questions on 2-03-2015, 09:50
How to remove specific categories when addnews by group?
I want to remove specific categories when add news in main page and if possible remove specific categories for different usergroups, can I do that? Added by: askme in jQuery Questions on 7-02-2015, 04:54
Open /templates/your-theme/addnews.tpl, on top add this jqueryAnswered by: dlefaq<script type="text/javascript">
$(document).ready(function(){
$("#category option[value=10],#category option[value=30],#category option[value=99]").remove();
});
</script>
Specify category ID: #category option[value=X] where "X" is your category ID, use comma to separate multiple categories, example:#category option[value=10],#category option[value=30],#category option[value=99]
If you are using jQuery "Chosen" then use this code instead<script type="text/javascript">
$(document).ready(function(){
$("#category_chzn_o_10,#category_chzn_o_30,#category_chzn_o_99").remove();
});
</script>
Specify category ID: #category_chzn_o_X where "X" is your category ID, use comma to separate multiple categories, example:#category_chzn_o_10,#category_chzn_o_30,#category_chzn_o_99
You can specify [group] and [not-group] to wrap around the jquery cod above for different usergroups