Jump to content
xisto Community

TavoxPeru

Members
  • Content Count

    865
  • Joined

  • Last visited

Everything posted by TavoxPeru

  1. Hi, What happens to the Cpanel, i notice that it changes to a default view and also that the Fantastico Scripts dissapears, is it related to a huge server update???? When does it can be accesed again????Best regards,
  2. Thanks, i just get it, and shortly i will PM you for the PHP file. Best regards,
  3. To make the image go back to normal state simply double click over it. Best regards,
  4. Your improvements are very good, again congrats. BTW, i have a PHP/Javascript Progress bar that i modify that works very fine, if you wish send me a PM to send you back. I forgot, i download your Photodownloader and MD5 applications and i found them very helpful, the only thing that i dont like about the MD5 application is that it doesnt have a option to verify for only one fine, for example, for situations like downloading files for pages that show a MD5 signature, or maybe i dont use it correctly. Best regards,
  5. I don't beleive that, in my opinnion I think that is always necesary to count with a DBA in any company, not only for companies running Oracle also this applies to all the others rdbms that exists -MySql, SQL Server, etc-, because of all the technical stuff and database knowledge these people have. Best regards,
  6. As i said in my previous post, by investigating, web searching, in websites like dynamic drive, javascript.com, etc. Books???? may be you dont beleive me but practically i dont read any technical book for a long time. best regards,
  7. Nice job my friend, congrats. I have two questions: When you are not logged to the forum the script seems to not work, is it is a bug or the script only works when you are logged in for security reasons??? Tell me the progress bar that you implement is made with ajax or in pure php??? I have one suggestion: Add some text to the status image by using the ALT or TITLE attribute, better if you choose both of them. Best regards,
  8. Thanks for this nice tutorial, after read the post some good ideas came across so i will start reviewing some of my code.Best regards,
  9. More than a compiler it is a white space remover as i said before, it only removes extra spaces from your source code, the benefits of this is that your code loads faster to the client side and your page loads faster, i notice that it does not make drastic changes. Best regards,
  10. Thanks a lot, this is a very helpful list of tools, where some of them i never heard about so i will start to test this holidays. Best regards,
  11. Relating the editors ending statement issue thats correct, a lot of them do that, but it is more relating in how we configure the editor, you can enable or disable it, it's your choice, i personally prefer to enable it because it is related with the XHTML standard and right now i'm working with it. Relating the W3C.org pages, i agree with you again, i also learn a lot about strict and correct coding and the validator is a must page, helps a lot and the related info that shows every time you validate your code helps a lot too. BTW, thanks for the Clean CSS page, i will try it right now to check some CSS's issues i have relating the use of the color and the background-color properties. Best regards,
  12. Hi, Recently the host server of one of my clients change its PHP installation from the Apache mode to the CGI mode so because of this change i got some problems. For example, whatever page i view it shows these warnings at the top of the page: Warning: session_start() [function.session-start]: open(/tmp/sess_b05e459fe625d81a303b59982be3da39, O_RDWR) failed: Permission denied (13) in /home/client_username/public_html/functions.php on line 9 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/client_username/public_html/functions.php:9) in /home/client_username/public_html/functions.php on line 9 And these ones at the bottom:Warning: Unknown(): open(/tmp/sess_b05e459fe625d81a303b59982be3da39, O_RDWR) failed: Permission denied (13) in Unknown on line 0 Warning: Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0 Another problem occurs when i try to validate the php page -includes forms and links that use sessions- as a strict xhtml 1.1 page with the W3C XHTML VALIDATOR, it consists that everytime i send it to the validator it creates a hidden input with the PHP PHPSESSID in the form and also adds to the href attribute of every link this PHPSESSID, for this problem i got the solution a time ago as stated in this topic: Problem With Xhtml Validation but because of the change of the PHP mode as i say before the page dont validate. After some tests and research at the PHP site i finally solve this problems by using the ini_set php function to set the url_rewriter.tags, the arg_separator.output and the session.save_path in every php page that you want to be valid xhtml1.1 as the following code: <?phpini_set("session.save_path","/home/client_username/tmp/");ini_set ("arg_separator.output", "&");ini_set("url_rewriter.tags","a=href,area=href,frame=src,input=src");if (session_id() == "") session_start();?>Because PHP is in CGI mode i notice that i can not use a .htaccess file so i add the previous code in a general php file and include it to my pages with the include() php function, and also, i change the permissions of the folder that i set in the session.save_path to be writable -chmod 750- and now every thing works perfectly and the page is a valid XHTML 1.1 file. Hope that this helps someone. Best regards,
  13. There exists a lot of Browser based editors, take a look to the following ones: FCKEditor:This HTML text editor brings to the web many of the powerful functionalities of desktop editors like MS Word. It's lightweight and doesn't require any kind of installation on the client computer. XStandard:XStandard is the leading standards-compliant plug-in WYSIWYG editor for desktop applications and browser-based content management systems (IE/Firefox/Safari/Opera). RTE:The Cross-Browser Rich Text Editor (RTE). Best regards,
  14. Following your recommendation i download and install the software, and you are right, it does a good job, it's very easy to install, configure and use, the trial version with all the functionallity that offers will work only for 30 days then unfortunately will turn into a basic version that seems to be enough, so i will keep it to see what happen after that. One thing i dislike is that it slow down my computer a bit. Best regards,
  15. Hi, Please review this bilingual (spanish/english) website that i redesign for my client, all comments are welcome so please check it out and let me know what do you think about it. Site Name : Wall Appointment Calendar I Remember You Peru Active: Yes I know that the main limitation of this site is that it is a biligual english/spanish site and because of this a lot of people can't understand the text content written in Spanish, so, meanwhile i set it to open the english version of the site by default. Best regards,
  16. Hi, thanks for the tips very useful, but i make a mistake, how can i change the type of any preference, for example, changing a boolean value to an integer value???? or how can i delete any preference????Best regards,
  17. You got that big number because you are not adding your substrings, instead of this what you are doing is to concatenate these substrings. The correct way was posted by bluefish. Best regards,
  18. I assume that by a Password Gate you refer to a Login Screen where you input your username and password and if all data are correct you can enter your application right???? Well, as the other members post before you can do it in various ways: With a MS Access Form directly in your database. With any MS programming language. With PHP running on a webserver like Apache or IIS. With ASP, ASP.net running on IIS webserver. With a Java application, i'm not pretty sure of this option because i don't use it. In either way you want to do it, please give us more information to help you. Best regards,
  19. Ok, thanks for the info, tell me something, do you take the chance to use the Anti-Spyware software???? if yes, what is your opinnion about it??? is it good enough to try it???? BTW, yordan, you are correct man, Grisoft is the only official distributor of avg, silverdown refers to other antivirus software. Best regards,
  20. There exists a lot of free pdfs creators/editors, some good ones are: PDF995: A PDF creator software, if you want to edit your pdf files you can use PdfEdit995 PDFTK: A handy tool for manipulating PDF files. Foxit Reader: A PDF Reader with editor capabilities. BTW, if you want that your web application -using PHP- creates PDF files on the fly you can use FPDF Library. Best regards,
  21. I also use AVG Antivirus since 1998, in my opinion is one of the best antivirus software, free, easy to install and use, with a clean interface and updated every day or two. BTW, i notice that now Grisoft offers the same antivirus but with the adition of a Firewall or Antispyware to extend the protection of computers, anybody try it??????? Best regards,
  22. The JS Minifier is a handy tool that it's only purpose is to remove whitespaces from your Javascript scripts to reduce their size, it is very simple but at the same time it is a very helpful tool. You can find this tool at: JS Minifier Tool Best regards,
  23. Yes you are right, i just test it with Firefox and works perfectly, i first test it with IE because in that moment i have IE opened , why IE always bother????? Thanks for the article, i'm reading it just now. Best regards,
  24. Do you get this one from the DHTML Goodies site, right???? well, only to say that this site is a MUST website to visit if you dont want and don't have the time to create something that already is done.Best regards,
  25. Maybe it is not LOGO, it looks more as GW BASIC and alikes, why i think this??? well, because i assume that in your post the 30 is the line number and circle(10,20) is a function that draws exactly that CIRCLES. Tell me something, do you remember that you can also draw lines, squares, etc using something like this: 10 CLS15 'draw a circle20 circle (10,20)25 'draw a line30 LINE(50,10)-(50,100)35 'draw a square40 LINE(100,30)-(120,100)50 ENDBest regards,
×
×
  • 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.