Jump to content

sagnik

Members
  • Posts

    472
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by sagnik

  1. You can use ProGuard. It is for Java Mobiles. After the Compilation process finished, you can exit the J2ME SDK Mobile and open ProGuard and enter the compiled class file path, check all the checkboxes, press "Options", select "Start". After the preverification process finished, open MiniCommander or any Archieve Manager, and copy all the preverified class files to a new folder (i.e, ProjectName), open the new folder and create a new sub-folder named "META-INF", copy the "manifest.mf" file to the "META-INF" folder and rename it from "manifest.mf" to "MANIFEST.MF". Now go back to "ProjectName" folder and select all files and folders and create a zip archieve named "ProjectName_jar", now exit the application and goto the folder where you have created the "ProjectName_jar" file and rename it from "ProjectName_jar" to "ProjectName.jar". That's all......
  2. .in - indiagetonline.in .us - americagetonline.com .nz - gybo.co.nz
  3. No, you can use DJango 1.3 to develop your DJango site. Download DJango 1.2.7 from: If you need help on developing your DJango site, use the link below and follow the steps:
  4. If your database are in the InnoDB engine then it maybe possible to happen the error. Just Export all the database and change the Engine='InnoDB' line to Engine='MyISAM'
  5. What is the error message you are getting?
  6. You can export the database and save it as *.sql file. To do these, just follow the following steps:
  7. You can set "display_errors" and "error_reporting" to "on" to analyse the problem. Like these: <?php ini_set('display_errors', 1); // Displays the errors error_reporting(E_ALL); // Turns on all errors (E_NOTICE, E_WARNING, E_STRICT, ETC) happening on your script $con = mysql_connect("username","password","localhost","user_database") or die(mysql_error($con)); // These will try to connect to database using details. If it couldn't connect then prints the error /*** OTHER THINGS YOU WANT TO DO ->> ***/ ?> After your problem was solved you can turn off Like these: <?php ini_set('display_errors', 0); // Displays the errors error_reporting(E_NONE); // Turns off all errors (E_NOTICE, E_WARNING, E_STRICT, ETC) happening on your script $con = mysql_connect("username","password","localhost","user_database"); // These will try to connect to mysql, if it fails then nothing happens /*** OTHER THINGS YOU WANT TO DO ->> ***/ ?>
  8. If you are getting "Invalid Login" error. Then, you can reset your password.
  9. You can run these command "pip install mcstatus" using cron job. Just set time to Every minute. But, NOTE YOU CAN RUN 2 CRON JOB ONCE IN A DAY. So, after running the cron job 1 time then, delete the cron job before 2nd time the job runs. If you run 3 or more cron jobs in a day, your account will get suspended.
  10. Can you give the url to your script?
  11. The main problem on your code is that, you haven't declared the content type and the semi-colon(; ) is missing in the content. Please add the following line exactly after the shebang line: print "Content-type: text/plain\n\n"; After adding the above line and ";" to the content line, your code will look like: #!/usr/bin/python print "Content-type: text/plain\n\n"; print "Bienvenue sur mon site web !"; I've copied your code to my website and your code worked fine after adding print "Content-type: text/plain\n\n"; line. Take a look at www.sagnikganguly.ga/cgi-bin/to175.py
  12. a.) HelioHost Username: sb b.) Server: stevie c.) Main Domain: sbook.ga
  13. Ok. Thank you sir. And one more thing, they want only those cPanel usernames. Because, the project they had created, if the cpanel username will changed then they have to change the information of the whole project. So please help.
  14. Sir, those 3 accounts heliohost had supended the accounts was created by my freinds with my helionet username and on the same device. So, I want to ask that, if those 3 accouts are deleted then can my freinds recreate those accounts from same device?
  15. i want to keep this account. HelioHost Username: sb Server: stevie Domain: sbook.ga AND PLEASE DELETE MY OTHER 3 ACCOUNTS... THANKS.
  16. a.) HelioHost Username: sgcl b.) Server: Johnny c.) Main Domain: sagnikganguly.ga
  17. a.) HelioHost Username: sb b.) Server: Johnny c.) Main Domain: sbook.ga
  18. Ok, I've fixed the problem. Now I am seeing that, my "login.php" file is not working. The form inside the "login.php" file is not sending any data. Can you tell me why this happens and how to redirect logged users to another page with the "sess_id=sess_id"? Please check the "login.php" file at: http://www.sbook.ga/admin/login.php
  19. Sir, here is my full "admin_header2.php" file script. Now tell me where is the problem and how to fix this!
  20. I've a problem with the function "session_register();". When I'm using this function. I'm getting the following message: Here is the url of the file "admin_header2.php": www.sbook.ga/global/admin_header2.php and the file "login.php" is: www.sbook.ga/admin/login.php Please help me to resolve the problem.
  21. Ok sir, here is my full script: http://pastebin.com/6YJMPLGg [phpBrief] OR http://pastebin.com/raw.php?i=6YJMPLGg [RAW] And also thanks to PaulM....
  22. I'm getting a mysql error #1064 when running my script. Here is my code related to the problem: Please help me to correct my code.
×
×
  • Create New...