Jump to content

Ayaka

Bronze
  • Posts

    288
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    0%

Everything posted by Ayaka

  1. create test.php: <?PHP //Show all errors ERROR_REPORTING(E_ALL); // send testmail $to = "[email protected]"; $subject = "test"; $body = "testcontent"; if (mail($to, $subject, $body)) { echo("Email successfully sent!"); } else { echo("Fail"); } ?> open this file in your browser. Show us the error. If there is no error the problem isnt the server or mail function
  2. You get this error because no process is running.. When you start u get "could not connect" . check mysql connection. Just a little Tip: Get a server technician - im sure he will fix main problems like this in secounds.
  3. just replace in all .php files: <? with: <?php if you havent access to php.ini or try to enable PHP short open tags via .htaccess (works only if the hosting provider allows overriding of PHP configuration options): <IfModule mod_php5.c> php_value short_open_tag 1 </IfModule>
  4. if you have problems please contact me in skype or TS (send me a pm with addy or ip). i can speak german.
  5. Then you do something wrong. When error_reporting is enabled and you change the code like i said then an error must appear because if($sqlQry) is false.
  6. on the website edit:// btw. shogun: You wrote That won't show SQL errors only PHP ones. Right, but when he use mysql_error() he need the E_WARNING level to display the error. So its legit ;P
  7. Change line 31: $sqlQry = mysql_query($sqlCmd,$sqlServ); to: $sqlQry = mysql_query($sqlCmd,$sqlServ) OR die("Error: ".mysql_error()); and post us the Error which will appear when you register an account.
  8. Just post your register.php. Then we have a look to the code. if there is a problem we will see. btw. the register form from hen! is bullshit. usability = 0. When enter a wrong input the script reset all inserts. its so annoying to test your problem
  9. That won't show SQL errors only PHP ones. brain afk at this moment. Add this right after your query xD OR die("Error: ".mysql_error());
  10. error_reporting(E_ERROR | E_WARNING | E_PARSE); Write this on the top of your code (right after <?php) and do the register again. Post the error. Im sure there is an error in your query. If nothing happens show us the register.php (in the page folder).
  11. As shogun said.. and the most similar fonts are: 1. [Hidden Content] 2. [Hidden Content]
  12. I don't know which distribution is installed but you write Look at the directory (+sub) where you uploaded your script which isnt working: Is an .htaccess file existing? rename or delete it and check the wesite again. Experience has shown (in most cases) that its a rewrite_module problem. If this happens enable it
  13. A vector graphic is made up of mathematically precise points, which ensures visual consistency across multiple sizes. The alternative, of course, is use to raster graphics software, such as Adobe Photoshop (.PSD). The Problem is that you cant scale the logo bigger. if you want to do it in PS then choose min. 300 DPI (i would do that - but its your choice how to create a logo. Im just saying). If they want to do with your logo a wallpaper or a print they can kick it in the dustbin
  14. To give you guys food for thought once again: If you are interested to do stuff which can be really used then DO IT RIGHT! As hobby designer you maybe don't know how to make files which can be used for several things (later). Work with Illustrator (or Freehand) and save your logo in EPS format. From this file, metin2dev can make as any bitmap versions at whatever size they want to choose. They are infinitely scalable without loose quality. For the preview you can do your gradients, shadows and other effects in Photoshop but create a vector!
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.