• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Search results

  1. Chris

    pandaac: The Resurrection

    In your app/routes.php, add the following. Route::post('account/character/create', 'AccountController@processCharacterCreation'); Then create a new file called AccountController.php in app/controllers with this in it: <?php class AccountController extends Controller { /** * Creating a...
  2. Chris

    pandaac: The Resurrection

    Export your database, open up the .sql file in an editor of your choice. Remove all of the @definer comments, and save. Import the new .sql file into the database. Remember to make a backup, if something goes wrong. That should solve your issue.
  3. Chris

    pandaac: The Resurrection

    Houses were never released to the public as they were made for a very specific database schema. Only two people were given it, if you want it, you'll have to ask them. As far as a tutorial goes, pandaac is still in development (no stable release). Which means that things will most likely...
  4. Chris

    [LUA] Learn how to make talkaction script!

    function onSay(cid, words, param) function onSay(cid, words, param) function onSay(cid, words, param) if doPlayerRemoveMoney(cid,15000) == TRUE then function onSay(cid, words, param) if doPlayerRemoveMoney(cid,15000) == 1 then doPlayerAddItem(cid,2173,1) function onSay(cid...
  5. Chris

    Solved Website/Layout error

    Download TeamViewer and send me your credentials through a private message.
  6. Chris

    Getting into PHP

    I'm 24 :(
  7. Chris

    Linux ZNOTE Layout lost style of header?

    You need to generate a webfont kit for it, otherwise, people who doesn't have the font installed, won't see it. You'll then add the piece of code you get to your stylesheet (.css file), and host the files locally under the webserver.
  8. Chris

    Windows Problem with Gesior Website

    You're missing some MySQL columns. At least the icon_id column in your z_forum table. The rest will be revealed once you fix this issue.Column not found: 1054 Unknown column 'z_forum.icon_id' in 'field list''
  9. Chris

    Windows Problem with Gesior Website

    You are getting the blank pages because those pages have errors that needs fixing, however, your application and/or webserver is blocking them from view. Either read your error log, or activate error reporting. ini_set('display_errors', true); error_reporting(E_ALL);
  10. Chris

    Linux ZNOTE Layout lost style of header?

    You're using a font that exists on your computer, but not on the remote server. http://www.fontsquirrel.com/tools/webfont-generator
  11. Chris

    Error Guild System

    I try to keep my Skype to business related contacts and/or people I've known for a while. We can talk through the native chat functionality that TeamViewer provides. I'm off to bed right now though, send me a private message whenever you're ready and I'll respond as soon as I see it.
  12. Chris

    Error Guild System

    Send me your TeamViewer credentials tomorrow, or whenever you have time, and we'll figure it out.
  13. Chris

    Error Guild System

    Do you have TeamViewer? If so, please send me a private message with your credentials and I'll attempt to sort this out for you.
  14. Chris

    Error Guild System

    Try running the following SQL query, and see if you get any results, please. SELECT name, world_id FROM guilds;
  15. Chris

    Error Guild System

    Okay, so you do have an auto-incremental field. The problem instead, seems to lie with the unique key. Are you trying to create a guild that already exists on the same world?
  16. Chris

    Error Guild System

    Execute the following SQL query through your database handler (most likely phpMyAdmin), and give me the results of the 'Create Table' column. SHOW CREATE TABLE guilds;
  17. Chris

    Error Guild System

    Integrity constraint violation: 1062 Duplicate entry '0' for key 'PRIMARY'. My first guess would be that the guilds table in your database, doesn't have an auto incremental value for its ID. Can you confirm this?
  18. Chris

    Error Guild System

    The blank page is caused by an error. Either check your error log, or enable error reporting for your application. // Remove these once you have solved your issue. ini_set('display_errors', true); error_reporting(E_ALL);
  19. Chris

    [PHP] <32 and >=6

    if(strlen($account) >= 6 and strlen($account) <= 32) if(in_array(strlen($account), range(6, 32))
  20. Chris

    pandaac | TFS 1.0 and Avesta | Best released AAC

    You need to install composer first, and then you'd execute the command through your command prompt/terminal.
Back
Top