
lucky3809
Members-
Posts
1,115 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
Events
Everything posted by lucky3809
-
captcha keeps failing...
-
[mccodes V2] Drag n Drop User Menu + Staff Menus [WORKING COPY]
lucky3809 replied to Uridium's topic in Free Modifications
Was the instruction not too clear for you? They are pretty simple in the tut in the link... It worked for me and saved the position and collapse... What page are you adding it too? Index? -
lol sorry but there is a copyright law in EU like many have stated!! The only country that does not follow is an island forgot the name of the island though and Afghanistan... but i can guarantee there is a copyright law in EU I know many hosting that is there and it even says in their terms of service so why is yours different? Are you even a Legit hosting company? Copyright Copyrights in Cyprus are regulated by the Right of Intellectual Property Law 59/76, as amended by Laws 63/77, 18/93, 54(I)/99, 12(I)/2001, 128(I)/2002, 128(I)/2004, 123(I)/2006 and 181(I)/2007. Rights are recognized under the Law for every protected object whose beneficiary or, if there is more than one beneficiary, any one of them is at the time of the creation of the right, or if it is a broadcast, the time of the transmission of the broadcast, a qualifying person, namely: · A person who is a citizen of the Republic of Cyprus or who habitually resides in the Republic; · A legal person, established in accordance with the laws of the Republic; or · A citizen of another member state of the European Union. Protection against infringement. The Right of Intellectual Property Law provides remedies for copyright infringement. For the criminal offences listed in the Law, penalties include a fine or imprisonment for up to three years. In addition, the court may order the offender to destroy any copies of the work in his possession or to deliver them to the copyright owner. Civil remedies include damages, destruction or delivery of infringing copies and the equipment by which copies are produced, an account of profits and an injunction. Duration of registration and protection. There is no system of copyright registration in Cyprus. Copyright is conferred on works once created, as of right. Copyright law protects Cyprus nationals for their works which are published anywhere in the world, and foreign nationals for their works published in Cyprus. Copyright exists in: · Scientific works, literary works including computer software, musical works, artistic works including photographs and an original database for a period of 70 years, commencing from the death of the author. · Films, for a period of 70 years, commencing from the death of the last survivor of the following, irrespective of whether they have been appointed conventionally, or are considered by law, as co-creators: · producer · primary director · script writer · screenplay writer · composer of any music specially composed for the film. The 2002 amendment of the Right of Intellectual Property Law harmonises domestic legislation with the EU Copyright Directive 93/98 which itself harmonized the term of protection of copyright and certain related rights. At the same time it implements other EU directives on the legal protection of software, rental and lending rights, copyright and rights related to copyright applicable to satellite broadcasting and cable retransmission and the Intellectual Property 18 legal protection of databases. The 2004 amendment establishes a new type of copyright within the framework of the information society; it expands the legal protection afforded in relation to reproductions and contains new provisions on interactive, on-demand broadcasting and rights-management information. In an effort to combat copyright infringement, a further development is the substantial increase in the amount of fines and the term of imprisonment imposed on persons infringing copyright. Law 123(I)/2006 amends copyright law to facilitate the disclosure of information by any person who is in possession of illegal products on a commercial scale or who has been found using illegal services on a commercial scale, regarding their origin and distribution channels. Law 181(I)/2007 prohibits the reproduction of the euro note and coins. Intellectual Property
-
last time i checked nbbc is secured... dont know what you mean by parsing through database, it does not need a database...I have not seen any parser use a database... unless im missing something o_O if your using nbbc you include the main require_once (DIRNAME(__FILE__) . '/nbbc_main.php'); $bbcode = new BBCode; for text area you add something like... $r['mail_text']=$bbcode->Parse($r['mail_text']); that is it.... the smileys should work if you have them uploaded the config file is the lib....
-
haha true because your calling the same thing
-
well that does not make sense to have... $_POST['name'] = ($_POST['name']); take off the () no need for them you removed the mres... I doubt it had anything to do with the new php upgrade...
-
probably what danny told him and i tried telling him last night the same thing in mail...
-
nevermind u fixed it
-
well I have always used 755 on directories and 644 on files, even when installing mccodes and have NEVER had a problem, that is why I suggested the settings that way...
-
set your public_html directory to 755 and your files to 644... all i can think of is the permission is not set right. If your 100% sure that you entered the correct database info...
-
what page is giving the error? find that part SELECT view FROM users WHERE userid= after the = put $userid and remove what is there
-
Your error is Warning: mysql_query() [function.mysql-query]: Access denied for user 'damagedc'@'localhost' (using password: NO) in /home/damagedc/public_html/header.php on line 53 meaning in header.php on line 53 you should change it to $db-> instead of mysql... if it still gives you that error your database info is not right in your config.php and lol @... $location = mysql_fetch_assoc(mysql_query("SELECT cityname FROM cities WHERE cityid=".$ir['location']."")); try : $location = $db->query("SELECT cityname FROM cities WHERE cityid=".$ir['location']."");
-
nbbc is what i use too, it does have smileys comes with the zip download.
-
Most Important 1st Impressions of a Game
lucky3809 replied to Kieran-R's topic in Question of the day
page structure is top priority in my opinion and then layout 2nd... -
replace updateDB.php with... <?php require("db.php"); $action = mysql_real_escape_string($_POST['action']); $updateRecordsArray = $_POST['recordsArray']; if ($action == "updateRecordsListings"){ $listingCounter = 1; foreach ($updateRecordsArray as $recordIDValue) { $query = "UPDATE friendslist SET recordListingID = " . $listingCounter . " WHERE fl_ID = " . $recordIDValue; mysql_query($query) or die('Error, insert query failed'); $listingCounter = $listingCounter + 1; } echo '<pre>Friends order successfully updated!</pre>'; } ?> make a file call it db.php <?php $dbhost = "localhost"; $dbuser = "databaseuser"; $dbpass = "password"; $dbname = "database name"; $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ("Error connecting to mysql"); mysql_select_db($dbname); ?> On the db.php you need to fill in the databaseuser,password,dbname with yours...
-
Ok hope you dont mind dont want to remake a thread... So posting in here, because you said you were having problems with yours.... replace regroup.php with... <?php require("globals.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style> body { font-family: Arial, Helvetica, sans-serif; font-size: 16px; margin-top: 10px; } ul { margin: 0; } #contentWrap { width: 200px; margin: 0 auto; height: auto; overflow: hidden; } #contentTop { width: 200px; padding: 10px; margin-left: 30px; } #contentLeft { float: left; width: 200px; } #contentLeft li { list-style: none; margin: 0 0 4px 0; padding: 10px; background-color:#212121; border: #CCCCCC solid 1px; color:#fff; } #contentRight { width: 300px; padding:10px; color:#000000; } </style> <script type="text/javascript"> $(document).ready(function(){ $(function() { $("#contentLeft ul").sortable({ opacity: 0.6, cursor: 'move', update: function() { var order = $(this).sortable("serialize") + '&action=updateRecordsListings'; $.post("updateDB.php", order, function(theResponse){ $("#contentRight").html(theResponse); }); } }); }); }); </script> </head> <body> <div id="contentRight"></div><br /> <div id="contentWrap"> <div id="contentLeft"> <ul> <?php $query = "SELECT fl.*,u.* FROM friendslist fl LEFT JOIN users u ON fl.fl_ADDED=u.userid WHERE fl.fl_ADDER=$userid ORDER BY recordListingID ASC"; $result = $db->query($query); while($row = $db->fetch_row($result, MYSQL_ASSOC)) { ?> <li id="recordsArray_<?php echo $row['fl_ID']; ?>"> <?php echo $row['username']." ".$row['userid']; ?> </li> <?php } ?> </ul> </div> </div> </body> </html> Cont...
-
I didnt release it on here lol..
-
I done this already lol.. Good mod illusions!!
-
from scratch... I like to know what the hell im doing lol..making your own engine has many advantages then to buy one..
-
Have you created a crime in your staff panel? If you have not created a crime it will show NOTHING... I dont see anything wrong with your script. @Casey echo and print statements do not need to be secured with mres... there is no need for that... only queries and forms... echo/print is just shooting out what is in your database... securing your queries it should have already filtered it before it echo'd/print it... just saying...
-
I love the theme and the look! :)
-
pm'd you the other one i seen...lol his login is your template there is your proof!
-
Peter I seen him with another template of yours on his game, but didnt say anything because he remade it but used the one you had for sell I guess he copied your screenshots, is my guess...
-
lol please stop coding and go to http://www.w3schools.com/ and study php...I refuse to help, you do not listen to anyone, and what we have been telling you...
-
I made this mod for $Chinion$ he requested it.. http://makewebgames.io/showthread.php/39050-Would-this-cost If you do not want crystals stolen you can easily remove that part, and only have cash... $chinion$ asked for a mod where players can steal money and crystals,because on his game crystals are easy to get... I preferably wouldn't want crystals being stolen, but i did not make this mod for myself, i made it for $chinion$ on request... so ask him why he wants crystals stolen lol...