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.
151
Wrong. Many large bot nets consist of captured Linux servers.Quote from Bunstonious on March 11th, 2015, 02:04 AM But not done often
You are not able to talk about an OS without some dumbass trying to show why his os decision is so much better. Really, no one cares about which OS you use.
But to get back to the topic, im always struggling a bit with the desktop environment. As mentioned before im using cinnamon in the moment. Im happy with it, but not to happy :D Thought about trying the new xfce version but my system has problems with the testing repos of archlinux... And when we talk about distributions, we often talk about desktops. So which one do you prefer?
152
Plugins / [Plugin] Re: CountLikes
« on March 10th, 2015, 12:42 PM »
Feel free to do a pull request, otherwise i will have a look at it this afternoon.
Thank you for providing your changes :).
If I remember it correctly, the view of the liked posts needs some improvement. I had to apply a complete template, perhaps this could be solved better?! Because in general its the same like the view posts stuff, only different query and other texts. A more general function for that would be helpful maybe. I dont like duplex code :D.
EDIT: Updated git repo
Thank you for providing your changes :).
If I remember it correctly, the view of the liked posts needs some improvement. I had to apply a complete template, perhaps this could be solved better?! Because in general its the same like the view posts stuff, only different query and other texts. A more general function for that would be helpful maybe. I dont like duplex code :D.
EDIT: Updated git repo
154
So, basically, end users who don't want to dig into tech will have to defeat and accept the unwelcome "feature". Non-systemd distributions with a certain appeal to non-programmers are rare at best.Quote from CerealGuy on March 8th, 2015, 07:38 PM Pick another distro or build it on your own.
For all those people who dont want that, because of the dependencies and i dont know, they should support projects like devuan.
https://devuan.org
I like systemd, but I understand the problem, and I understand people who dont want it. But instead of leaving the ship. better go and change something. Even if you only donate some money, it shows that people are interested in it, and if there are enough, something will change.
155
I never understand the hate against systemd. Works very well for me, and if you dont want to use it, dont use it. Pick another distro or build it on your own. If some software depends on systemd, dont use it. If there are enough people who think like you, there will be alternatives.
156
Yeah Pacman is aaiight, I also like APT, well most of the Distro's I have used have been Debian based so used APT. Arch is nice and "bare bones", and makes me feel all geeky.
158
Archived fixes / Re: 'ViewRemote' not found or invalid function name
« on February 20th, 2015, 01:35 PM »
Got it on my localhost and on an online server. But really can't reproduce it, it just happens sometimes. But if no one else ever got this error, perhaps it's my own fault?!
159
Bug reports / Re: Moved Topic not being marked as 'Read'
« on February 20th, 2015, 01:32 PM »Shouldn't these topics be marked as read from the beginning, anyway..?
(I hate these. That's one feature I'd never have personally added to Wedge...)
160
Archived fixes / Re: Incompatible with newer PHP Versions
« on February 20th, 2015, 01:30 PM »
Can't test it in the moment. Will test it soon.
161
Archived fixes / Incompatible with newer PHP Versions
« on February 2nd, 2015, 09:38 PM »
I noticed a month ago that wedge doesnt work properly with newer php versions than 5.5+.
I wasnt able to activate more than 1 plugin (I think there were some problems with array_diff?!) so if you have the same problem, probably downgrading your php does the job.
I wasnt able to activate more than 1 plugin (I think there were some problems with array_diff?!) so if you have the same problem, probably downgrading your php does the job.
163
Bug reports / [Plugin] users_online_today some bugs
« on January 12th, 2015, 05:28 PM »
Found some bugs in this plugin.
1.
Code: (OnlineToday.php) [Select]
I think that should be "earliest_time".
2. The plugin uses systemtime (time(), strtotime()) therefore there's no need to substract the timezone settings. This error might not appear for some, but they just have those settings set to 0.
Untested solution:
Code: (OnlineToday.php) [Select] Dont want to fork wedge/plugins, otherwise i would open up a pull request. Im not sure if last_login uses forum time or system time. But however, something is wrong with this plugin.
EDIT:
'last_login' => time()
Changed my solution.
1.
case '7d':
$earliest_type = time() - 604800;
break;
I think that should be "earliest_time".
2. The plugin uses systemtime (time(), strtotime()) therefore there's no need to substract the timezone settings. This error might not appear for some, but they just have those settings set to 0.
Untested solution:
switch ($settings['uot_type'])
{
default:
$settings['uot_type'] = 'today'; // This is deliberate, falling through to 'today' because that's what to use in the event of an invalid type being used.
case 'today':
$earliest_time = strtotime('today');
break;
case '24h':
$earliest_time = time() - 86400;
break;
case '7d':
$earliest_time = time() - 604800;
break;
}
EDIT:
'last_login' => time()
Changed my solution.
164
Features / No overwrite of files
« on January 6th, 2015, 07:27 PM »EDIT: Just tried it locally, for me file_put_contents doesnt overwrite the file, if its already there. But why the hell does it remote :hmm:.
EDIT2: Ignore this, and feel free to remove this topic. Its full of rubbish, im sorry for that...
EDIT3: This really happens, but probably only to Settings.php because wedge first creates that temp file and later removes Settings.php and renames temp file to Settings.php.
Story behind that: i put latest wedge on a server of a friend, but it behaves really mysterious. Im not able to enable more than one plugin, and also it doesnt show the right button when first activated. I really dont understand why this happens. Already tried to reinstall wedge, but doesnt help. This is really strange and maybe not a problem with wedge itself, but a bad configuration...
165
Archived fixes / Re: Top header
« on January 6th, 2015, 06:40 PM »
border-bottom: none
background: none
fixed it for my custom skin...
background: none
fixed it for my custom skin...