It means they are not having same ip as ip_last
In your database, go to the server_settings table change the column enable_securesessions to 0
Also go to your database and repair all tables.
Update — Wednesday, May 30 2012
If you create a request thread follow these rules;
It's required to be posted in the Request subsection.
Enough information of what you request.
Be specific on what you wan't done.
If someone come with a product, that you think should be changed, tell what you...
No problem. I hope it will be up soon, because I really wan't it as I'm already done with the jQuery plugin - just need this one thing. Otherwise you could do this in the drop over your api.php script:
header('Access-Control-Allow-Origin: *');
The output on the document will be a json object - it looks like an javascript object like:
{ key: 'value', keyArray: { anotherkey: 'anothervalue' } }If you get the idea.
It's easier, and faster than XML and the method you're using currently :P
First you need to change the header to application/json and just echo json_encode($license) or be more friendly and do;
$json = array(
'privatekey' => $privatekey, // the private key used
'publickey' => $publickey, // to be really smart (obsolete)
'license' => $license // The license generated...
Yo, I'm currently making a jQuery plugin for FuseLicense - instead of using PHP, we use jQuery!
Now the only problem now is that your server (in the api.php script) uses a wrong header to allow me to retrieve the data via. jsonp and script data.
So if you could either let the api.php return a...
HabPRO not at all helpful.
First off, go to your pma (phpmyadmin) and select the database (if not already selected by default). You can select all the tables and below you can choose to optimize tables in a dropdown. After that, a good idea is also to repair them, so stuck queries get cleaned...
He has programming skills, yes, but mostly in technology that Sulake does not use anyway. Although if it's true, Sulake must be interested in to know how he managed to figure out their security and packets and so on, since Sulake wan't to prevent this from happening - and it didn't really help...
For those who don't know how to use this and how to implement it to your project or w/e you can use this:
<?php
// Get the Fuselicense Library
require_once('fuselicenselib.php');
// Create a new instance of fuse_license
$license = new fuse_license('PRIVATE KEY'); // replace...
It's Phoenix that does not save the room's state. Most likely this happens after a restart when a room just have been made - it's not every time, but not rare either. I guess Aaron messed something up while trying to save furni state/position in the emulator - since it gets saved in the db.
The reason why it is illegal is because we use their images, SWFs and other material. Yes, the CMS' that uses Sulake's material (figures, banners etc.) No matter how you placed a figure or a item on a image, it is copyrighted material.
The client is the most copyright infringement when it...
In my opinion, I don't see an idea for this on a development forum. People already spam post (won't say any names) as a game to get as many posts as possible.
Sublime Text 2 — Windows, Mac OS, Linux
The best editor imo, I have not touched other editors after I used this for the first time. It got easy package/plugin control and has a great UI (including the ability to make your own UI - e.g. Soda is a theme)
Is it free? No, but there's no...
As of the git, the idea with git is that you make small updates and push them to the repo. This way, it's easier to commit fixes and improvements so other can follow the development and join the project to improve it further - it would be dumb if someone made something that is broken when you...
LAST UPDATE — SUNDAY, MAY 27 3:01 PM
We all currently wait for Team Rev to release some new hot systems, and while we do we should also support them more. You can wear these cool avatars and signatures and show your support! There is currently two different styles available - dark and light...
Try this and send what it returns - remember to place this above the foreach loop that cause the problem not inside and not replace.
<?php
echo '<h3>This Folder</h3>';
echo '<pre>';
var_dump(glob('*'));
echo '</pre>';
echo '<h3>app/</h3>';
echo '<pre>'...
Try to var_dump it like this:
echo '<pre>';
var_dump(glob("app/tpl/skins/".$_CONFIG['template']['style']."/hk/js/*.js"));
echo '</pre>';
If it doesn't return anything, it's because there is something wrong with the path or the $_CONFIG['template']['style'] variable. Try to echo that too
echo...