Well, you'd need to post the error the browser is throwing at you. We can't help you if you don't describe the problem... Posting a script with no explanation of what's wrong doesn't help anyone. Please provide more details?
Some VPS providers disable remote desktop at first, or you need to install the OS first using VPN (this can usually be found within the client area, or in your service creation email).
If you mean you're stuck with where to purchase them, search online for providers. Choose the one that best...
You're looking at a lot more than that to have something reliable...
A decent VPS will run you $20-50, depending on what you get. Then a domain will be approximately $10 more also depending which TLD you choose. DDoS protection will just add to that. All I can say is be very careful who you...
It really depends what style you like more; again personal preference. In my opinion RevCMS looks better. I dunno what Sulame did, but their new site is barely readable and nothing stands out. It just looks like a blue page with text everywhere.
You also need to make sure the server can handle such commands. Search for something like MusSocket.cs, or similar... it will have a list of commands you can run through MUS.
I noticed you have a lot of https:// (secure links) instead of http:// (un-secure) in your variables. You should make them all http:// and see what happens. Make sure to clear your cache everytime.
If you don't have a SSL certificate on your website, those links will not work.
Pretty simple.. And you can even order it by who was online last.
$getStaff = mysql_query("SELECT * FROM users WHERE rank <=5 AND online = 1 ORDER BY last_online DESC LIMIT 1");
For your newest users...
$getUserInfo = mysql_query("SELECT * FROM users ORDER BY account_created DESC LIMIT 1");
You can't have dashes in that type of rule. Like Jaycustom said, make it coowners. Btw, sometimes you don't always get it your way. Sucks doesn't it ;P
Hey there,
I'm looking for more MUS commands for MusSocket.cs
Currently I have only :ha working.
The PHP code I have is
<?php
function send_MUS($command,$data)
{
$data = $command . chr(1) . $data;
$sock = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp'))...