Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5 ,039
» Latest member: james liam
» Forum threads: 3 ,791
» Forum posts: 23 ,023
Full Statistics
|
Online Users |
There are currently 237 online users. » 0 Member(s) | 237 Guest(s)
|
Latest Threads |
Sentora with MySQL AWS RD...
Forum: General Discussions (Non-Support Related)
Last Post: james liam
9 hours ago
» Replies: 2
» Views: 6 ,604
|
Poblem importing DB full ...
Forum: General Support Forum v2.x.x
Last Post: warzonecod
Yesterday, 04:17 PM
» Replies: 5
» Views: 2 ,520
|
Bug testing help needed!
Forum: General Support Forum v2.x.x
Last Post: warzonecod
Yesterday, 04:10 PM
» Replies: 1
» Views: 1 ,639
|
Absolute path to images
Forum: General Discussions (Non-Support Related)
Last Post: kevwebbie
11-20-2024, 11:19 PM
» Replies: 2
» Views: 2 ,737
|
2 hosted domains on sento...
Forum: General Discussions (Non-Support Related)
Last Post: TGates
11-16-2024, 12:52 PM
» Replies: 6
» Views: 216
|
Can anyone suggest best S...
Forum: General Discussions (Non-Support Related)
Last Post: billmorgan
11-15-2024, 05:39 PM
» Replies: 3
» Views: 1 ,477
|
Update redirect to Sentor...
Forum: Sentora Development
Last Post: TGates
11-14-2024, 11:49 AM
» Replies: 3
» Views: 3 ,745
|
Increase disk space by ad...
Forum: General Support Forum v1.0.x
Last Post: TGates
11-06-2024, 07:27 AM
» Replies: 10
» Views: 683
|
Size of DB table x_logs t...
Forum: General Support Forum v1.0.x
Last Post: TGates
10-24-2024, 06:26 AM
» Replies: 5
» Views: 512
|
SMTPTLS port 587 Close af...
Forum: General Support Forum v2.x.x
Last Post: Ekwadorin23
10-23-2024, 09:33 PM
» Replies: 6
» Views: 1 ,992
|
|
|
Deluge Torrent + Sentora |
Posted by: mattewre - 06-24-2015, 10:44 PM - Forum: General Discussions (Non-Support Related)
- Replies (1)
|
|
Hi,
I'm new to sentora and I'm testing it a bit on a new dedicated server. It seems very good!
I installed deluge for torrent (+web interface) but I need help to achieve this result:
> change the deluge download directory to the public html folder of one of the domains, in which I'll set up a directory listing tool to access to the files I downloaded from any internet browser.
Consider this:
- deluge default directory is /var/lib/deluge: torrent download works fine here
ls -l
drwxr-xr-x 3 deluge deluge 4096 Jun 24 11:10 deluge
- I can change the download directory to another one, for example /var/sentora/torrent: torrent download works fine if I set the folder correctly:
chmod 755 /var/sentora/torrent
chown -R deluge:deluge /var/sentora/torrent
- When I try to use as download folder any directory inside /var/sentora/hostdata (with usual chmod and chown) deluge says that its hasn't permission to write in the directory.
Any suggestion?
|
|
|
Can't connect to server " Timed Out" |
Posted by: apinto - 06-18-2015, 03:20 AM - Forum: General Discussions (Non-Support Related)
- Replies (10)
|
|
Hello,
this is NOT Sentora related, I just wanted some advice and being a active forum I decided to post here.
On my VPS I can't send emails to one server (lusodigital.net 83.96.162.35), I mean, it is just that server that I found at the moment.
Troubleshooting the issue I found it was not related to the email, I can't even ping the server neither the IP.
I contacted lusodigital.net and they told me ping commands are blocked (anyways I can ping from my office computer...), they said it is likely a routing issue and it is not their responsibility.
Anyone has some insight on how to troubleshoot this? I would really like to understand what is wrong.
Here are some testing i've done: - Ping from my VPS = timeout
- Ping from other places = 100% OK
- Send mail from VPS (sentora-postfix) I receive: (connect to lusodigital.net[83.96.162.35]:25: Connection timed out)
- Send mail (gmail) works 100% OK
Thank you!!!
|
|
|
Sentora Forum Suggestion |
Posted by: wormsunited - 04-12-2015, 08:11 PM - Forum: General Discussions (Non-Support Related)
- Replies (3)
|
|
Hi there folks!
To be honnest i didnt know were to post this thread on the forum since i havent found any category for this topic, i have a suggestion for the functions at sentora forum. As you know many posts are long. Since we have to scrool it down, sometimes we have to dragg all up, or click on "return to top" wich call div #top. and jumps up without any animation and we get the link as: http://forums.sentora.org/something#top wich is not so cool, dont get me wrong...
So i suggest a simple ugrade and very simple to integrate wich will make us as members with a more interesting funcionality over this forum. I have created a simple .js file that can be called to any pages by adding one simple line of code and it will bring to top in a more intuitive look and animated. This is very lightweight i use it a lot in some of my webdesign projects. All members are free to copy and use it.
Here is the .js file code (requires jquery wich the forum already have)
Code: /*
Sentora.org
Scrool to top
@wormsunited contribution
*/
var scrolltotop={
//startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
//scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
setting: {startline:100, scrollto: 0, scrollduration:500, fadeduration:[500, 100]},
controlHTML: '<img src="../images/sentora/gotop.png" style="width:50px; height:50px" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
controlattrs: {offsetx:10, offsety:10}, //offset of control relative to right/ bottom of window corner
anchorkeyword: '#main', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
state: {isvisible:false, shouldvisible:false},
scrollup:function(){
if (!this.cssfixedsupport) //if control is positioned using JavaScript
this.$control.css({opacity:0}) //hide control immediately after clicking it
var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
dest=jQuery('#'+dest).offset().top
else
dest=0
this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
},
keepfixed:function(){
var $window=jQuery(window)
var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
this.$control.css({left:controlx+'px', top:controly+'px'})
},
togglecontrol:function(){
var scrolltop=jQuery(window).scrollTop()
if (!this.cssfixedsupport)
this.keepfixed()
this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
if (this.state.shouldvisible && !this.state.isvisible){
this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
this.state.isvisible=true
}
else if (this.state.shouldvisible==false && this.state.isvisible){
this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
this.state.isvisible=false
}
},
init:function(){
jQuery(document).ready(function($){
var mainobj=scrolltotop
var iebrws=document.all
mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
.css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
.attr({title:''})
.click(function(){mainobj.scrollup(); return false})
.appendTo('body')
if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
mainobj.togglecontrol()
$('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
mainobj.scrollup()
return false
})
$(window).bind('scroll resize', function(e){
mainobj.togglecontrol()
})
})
}
}
scrolltotop.init()
Implementation:
- Save the script provided on top as "gotop.js"
- Create and Add a image file called "gotop.png" at -> http://sentora.org/images/sentora/ directory.
- Just add this line of code to call up the script on the index.php file (template file) -> Check bellow!
Code: <script type="text/javascript" src="http://forums.sentora.org/jscripts/gotop.js"></script>
That's it! Simple and lightweight solution that will bring Sentora Forum a new shine!
I hope this contribution can make members experience better!
|
|
|
|