Jump to content
xisto Community

TavoxPeru

Members
  • Content Count

    865
  • Joined

  • Last visited

Everything posted by TavoxPeru

  1. There are a lot of websites on the web that offers free html templates, for example this is the Top Three Google results when searching for free templates: Free Web Templates Free Website Templates Free Templates Online Another very cool website that offers a lot of free professional looking website templates is Zymic, where you can find all kinds of free templates available to download. Also, another option you have is to use an (X)HTML/CSS Framework or alike, two good options that i know and use are: YAML :: Yet Another Multicolumn Layout - (X)HTML/CSS Framework: This is an excellent framework that helps you to create one, two or three columns (X)HTML/CSS floated, flexible or fixed layouts, very easy to use and allows you to modify your layout to your own needs, please visit my topic Yaml - (X)HTML/CSS Framework for more information about it. Yahoo! UI Library - YUI Grids CSS: The YUI Grids CSS which are part of the Yahoo! User Interface Library offers over 1000 page layout combinations that you can use and customize to your own needs, like YAML it also supports fluid-width (100%) as well as preset fixed-width layouts. I recomend you to check out both of them because they are excellent and very easy to use and customize. Finally, review the following topic Free & Pretty Good Web-Design Templates where you can find more information and links related to this topic. BTW, i hope this sorts you out, if not make a quick search here on the Xisto's Forums, because i'm sure that you can find more topics regarding this subject. Best regards,
  2. I agree with you, i use SYMFONY a time ago and in my opinion it is an excellent PHP Framework to use for development of websites, especially in the case that you need to develop a website that uses and interacts with databases.Also, the learning curve of SYMFONY is a bit confusing at first moment, but, once you understand how it works this php framework simplyfies a lot your work involved.BTW, SYMFONY not only can be integrated with prototype, it also can be integrated with the ExtJs library -there is a plugin for it- as far as i know.Best regards,
  3. After reading all the latest posts i notice that in my case the problem was fixed, but i don't want to loose my earnigs so first i want to see what happens after submit this post.Best regards,
  4. I just make three posts today -before this one- and after the last one I notice that i also have the same problem with the myCENTs system, can someone tell us when this problem will be fixed and what happens with the recently cents that i earn???Best regards,
  5. I just visit the Ad Revenue Sharing page and i notice that it is different than the one i view before, in my case the Google Adsense settings no longer exists and instead of them now appears the Kontera settings as for Quatrux and toby, and also the Yahoo settings are marked as Not Supported.BTW, OpaQue and Nabb thanks for the info i gonna check it in a while.Best regards,
  6. SEOXP Domain Tool is a quick and easy way to access useful information about your website, including page rank, dmoz, domain age, backlinks and Yahoo directory listings. SEO relies on many different factors in order to be successful. With the SEOXP Domain Tool, you'll know crucial information about your site and also, where your competitor's stand. The SEOXP Domain Tool is a FREE online service, simply enter your website url in the form and submit, after that you will be taken to the results page, also, this tool is not affiliated with Google, Yahoo or Alexa. Best regards,
  7. Diadematus for Google is another free tool that generates XML sitemaps, it is free, very easy to use, and can help you easily get better quality crawls from Google, because, as everybody knows Google indexes are based on a cycle, so it's important that when Google cycles through your site they grab as much information as possible, so, implementing a sitemap for your website is a good choice if you want your website to rank higher as Googles coverage of the web grows. Diadematus for Google is an XML sitemap index tool that was built on Google's recommendations for sitemaps and is used to spider websites and build a complete XML sitemap index based on the Google recommendations, so that it can be read and indexed by the Google search engine. Diadematus for Google works under Windows NT, Windows 2000 and Windows XP and requires Microsoft .NET Framework. Best regards,
  8. I guess that using 2d sprites is a good choice as mastercomputers said, and also this don't mean that all the other code posted here are bad, incorrect or invalid, honestly, i think that the best way to implement this will be a mix of all of them. A couple of weeks ago i did a couple of experiments in my spare time, one to made an automatic slide show using only one big image for it and using CSS and Javascript, and the other experiment was related with Image Maps using the MAP and IMG HTML tags, some CSS and Javascript code, and aditionally i use the Google AJAX Language API for some automatic text translation. For the first experiment i use the following CSS and Javascript code inside the HEAD section: <style type="text/css"> #divc { background: #000 none height:250px; width:130px;} #c { background: #000 url('pics/tattoo flash.jpg') no-repeat -10px -20px; height:214px; width:116px;} </style> <script type="text/javascript"> // Array of all background-position var allSlides=["-10px -20px","0px -120px","-50px 0px"]; var myTime = 5; // number of seconds var thisAd = 0; // current slide var imgCt = allSlides.length; // number of slides function rotate() { if (document.images) { thisAd++; if (thisAd == imgCt) { thisAd = 0; } document.getElementById("c").style.backgroundPosition=allSlides[thisAd]; setTimeout("rotate()", myTime * 1000); } } </script> And under the BODY section i use the following HTML code: <body onload="rotate()"> <!-- other stuff --> <div id="divc"> <h2 id="c">H2 Heading</h2> </div> <!-- other stuff --> </body> Because it is an automatic slide show i use the onload event of the body to start the slide show everytime the page loads and two block elements, a DIV to act as a container and a H2 which acts as the slide show itself. BTW, it is not finished or perfect IT IS AN EXPERIMENT and can be viewed live at An Automatic Slide Show Using CSS and Javascript. Now, the second one is no longer an experiment anymore, please view it live at Casa Blanca Tatoo and look at the source code to get a complete idea of how it works. Basically, what i did here is to use a single image that will be used by a MAP tag with four AREA tags defined as rect -rectangular- and four DIVs tags for the translated texts. For each AREA tag defined i set it's onmouseover and onmouseout events to shows up the correct translated text when you hovers your mouse over any of the flags or over the ENTER text which all are part of the single image used by the MAP. clear??? Best regards,
  9. I just notice that the menu of the My Control's panel has a new entry named Ad Revenue Sharing which has four settings inside it -two for google adsense and the other two for yahoo- that got my attention. I'm a bit curious about it because i have a Google Adsense account but before i fill this settings with my information first i want to know how does it will work and how my information will be used for. So, please if any modetaror can post all the information and details about it i will be very grateful. Best regards,
  10. I just follow this tutorial and everything works fine, thanks a lot.Best regards,
  11. Yes, input tags has to be closed as all the other empty xhtml tags like IMG or HR tags for example, especially if you want to validate your code. Now, the code showed by Feelay and pyost are INCORRECT, because as far as i know, the HTML and the XHTML specifications do not include an input tag of type TEXTBOX, so, the correct codes to use are: FOR HTML 2, 3.2, 4, 4.01: <input type="text" name="text" value=""> FOR XHTML 1.0, 1.1, Basic: <input type="text" name="textbox" id="textbox" value="" /> or <input type="text" name="textbox" id="textbox" value=""></input> BTW, you should look into other ways for escaping strings if you will work with databases, because addslashes does NOT make your input safe for use in a database query! It only escapes according to what PHP defines, not what your database driver defines. For example, if you work with a MySql database it's recommended to use the mysql_real_escape_string() instead of using the addslashes() function. Therefore relying on addslashes is not a good idea at all and may make your code vulnerable to security risks like SQL Injection Attacks. Best regards,
  12. First of all thanks a lot for your information @FirefoxRocks really helpful, and second of all, that's exactly what i'm thinking to happen, something related to user profiles folders or registry keys corrupted. One question where is located the control userpasswords2???? Yesterday after digging the file system of this notebook i notice that the folders for these four users does not exists and now you confirm it with your post. Another thing that i did yesterday was to try to log into the system in safe mode with one of these four user accounts that can't login only to see what happens, the results of this test was that only administrator's users accounts can access the system, but another error message appears, this time saying that the user profile can't be loaded and instead of this the default profile will be used temporaly, or something like that, again, your post confirm the problem. Now, the only thing to do is to follow your instructions and i hope that this procedure can fix the problem. Best regards,
  13. I don't download this javascript code but for the information you provide i assume that your problem is related with the array indexes of the menus, remember that arrays starts at zero, so, only substracts one to the counter variable. I gonna download the code and then i will confirm this. edit: Well, i'm wrong, this code don't use arrays as i assume, so, can you post your code to see it. Best regards,
  14. AnalogX PHPConfig is a little tool that helps you to configure your php installation; specifically the modification of the PHP's php.ini file that contains the current settings for PHP. AnalogX PHPConfig is a graphical frontend to PHP's php.ini file, that you can use to tweak your PHP installation. It supports all of the standard PHP functionality and aditionaly some other 3rd party plugins like the Zend Optimizer, MySQL, ODBC or whatever. To use correctly this tool first you need to load your php.ini file in it to get all your actual PHP settings, then you are able to change any setting that you need to modify, and finally you save your modifications to the same php.ini file, so take care, and backup your file first. AnalogX PHPConfig runs only in Windows machines and of course it is free. Best regards,
  15. A client of mine have a notebook running Windows Vista Premium edition configured with five different users accounts, where only one of these accounts is able to log on to the system and starts it's session correctly.The other four accounts can't be able to do this, and instead of this, Vista shows an error message all the time saying something like this:error in the service User Profile Service when starting a sessionyou can not load the user profile.This happens also when he try to change to one of the other four user accounts configured in his machine.Does anybody knows how to fix this problem???Best regards,
  16. A couple of years ago i was in the same situation as you, the solution to this problem is to use a SMTP server on your local machine. This SMTP server will be in charge of sending all the emails that your php script will send with the mail() function. You can use the SMTP server that comes with any Windows Operating System since Windows 2000 Pro or you can use any other SMTP server. At first you can think that the SMTP server that comes with Windows is the best choice, but my experience with this server was very bad because it is not easy to configure as you may think, so i suggest you to do not use it, instead you can use any other SMTP server that you want. The SMTP Server that i use at that moment was ArGoSoft Mail Server version 1.8.8.8 which was free for personal use and provides the service for three standard Internet protocols: SMTP, POP3 and Finger, it was very easy to install, configure and use, and i can say that it works very well. The new version of ArGoSoft Mail Server is version 1.8.9.6 and it is still free, as usual this new version corrects bugs and some other things. For more information and all the details related please visit the ArGoSoft Mail Server page. Also, i recommend you to view the details of the new mail server offered by its creators called ArGoSoft Mail Server .NET!, and then decide which one you will use. Best regards,
  17. Your actUal subdomain name is the one that you will use as your new domain name. All the information related to your hosting details are located at the My Products & Services options under your Client Area, but to access to your hosting details first you must transfer your old subdomain to the new domain which be the same. I was confused too as you when i decide to convert to the new credit system, i know that there are some very useful topics posted at the Announcements Forum that will help you with this process. BTW, you must read the following topics: Credit System V3.0 Online New Hosting Package Release - Logic Pro and Logic Xtreme How to Order xxx.trap17.com OR xxxx.AstaHost.com I hope that after you read these topics you can be able to finish satisfactory your conversion process. Best regards,
  18. The Code Export Suite is a set of tools that you can use to indent, reindent, export or print your source code files, also you can convert them to PDF or Images files too. Some of the supported file formats that you can use for exporting your source files includes HTML, PDF and JPG file formats. The Code Export Suite is very easy to use, it's simple and also very fast, it works with Windows 98 / ME / 2000 / XP / 2003, it is 100% Free, without spyware and without adware too, and includes the following tools: RTF Convertor: Tool for RTF or Word files. Doc Convertor: Tool for source code or text files. Text Code Export: Tool to convert text or ini files HTML Code Export: Tool to convert HTML files. C++ Code Export: Tool for C or C++ files. C# Code Export: Tool for C# files. Java Code Export: Tool for Java code files. The only thing that i don't like about Code Export Suite is that you must download every file one by one, because there is not a single installation file with all the tools together, but by the other side, this way you can download only what you need. Code Export Suite deserves to be downloaded. Best regards,
  19. @yordan, what Nabb said is correct, tha's the way to activate and then use the Gmail Labs features. BTW, Gmail Labs is available only when you satisfied the following conditions: Your browser is one of the following: Internet Explorer 7+, Google Chrome, Firefox 2+ or Safari 3+. You are using the newer version of Gmail on any of the browsers listed. @FirefoxRocks, to be honest i don't use Google Calendar too much because in the past i had a lot of problems with it, i use it only for THE BIG THINGS. Now, i start using the Gmail Tasks feature since the first day it is available, and for me it is a great feature added to Gmail because it helps me to relate my mails with my work in a very easy, quickly and simple way, this way i organize my day better. Of course, if you compare it with Outlook for example, Gmail Tasks is totally useless. Best regards,
  20. Last week the Gmail Labs engineers add a new feature called Tasks. This useful feature allows to every Gmail user to keep track of what you need to do and what you've already done right inside Gmail and work in the same way as Chats works, so you can use it while you are reading your mail or searching for example. Gmail Tasks like other features offered by the Gmail team is very fast, is very simple to use and has a clean interface. Additionaly, Gmail Tasks includes some other characteristics but i consider that the next feature is the best: Gmail Tasks allows you to manage all your email workflow better by letting you to convert any of them into a task. BTW, take in mind that this feature like all the features offered by the Gmail Labs Team are experimental and may change or disappear at any time, so use it at your own risk. For more information visit the Offical Gmail Blog. Best regards,
  21. The Google Site Status Wizard which is part of the free Google Webmaster Tools is a very simple tool that help us to find out if any site is currently being indexed by Google. The Google Site Status Wizard is a simple free tool which consists of only two steps, in the first step you simply enter a site URL to check its status on the Google's index, and in the second step the wizard shows you if the pages from your site are included in Google's index, if the Googlebot has accessed your home page successfully and if you have indexing problems. As i said before, this is a very simple tool, so, if you need more details and if you have a Google Account, you can sign up to the Google Webmaster Tools with it and get more details like top search queries that return your site, errors encountered by Googlebot, submit Google sitemaps, check the robots.txt of your page, set your geographical target of your users, etc. Best regards,
  22. Please visit the Xisto's Freeware Forum where you will find a lot of good applications for Windows 2000. Best regards,
  23. Everybody knows that images are an essential part of every website but at the same time images make them to load slower. What many people do not realize is that these images can be optimized as any other web content, but do it manually is frustrating and time-consuming. Well, not any more thanks to Smush It. When you need to gain performace and need to optimize your images, this is when Smush It comes into action and help us with this painful task, by doing it for us in a very simple and fast way. If you want it, this is the direct link to download and install the smush it firefox plug-in directly, because i don't found it at the Firefox Add-ons site. After you install the Smush It plug-in, simply press the Smush It icon located on the firefox status bar to start optimize your images. Best regards,
  24. Yes, the most are spam bots but also still there are people doing this manually. Best regards,
  25. For your first question, there are some ways to do that, a few of them are: With only HTML you use the title property to show some text as a tooltip like in the following: <img src="your_image_file" title="Text to show when hover on" border="0"> With HTML and CSS you can do some more interesting things, generally you use this with hyperlinks, images or elements that support the :hover CSS pseudo class. With HTML, CSS and Javascript you can do very interesting things, in this case you use a DIV element as a container block where you can put inside it, not only text or an image, also you can include there any element you want, like a table with hyperlinks, images, etc.At the Andes Life Shopping Cart page you can view a live example of these techniques. You can view the first technique when you hover on the image located at the top right of the page, which in fact is an image map, the second technique happens when you hover your mouse over any product row of the products table, and the third technique is used on the header row of the products table, and happens when you hover your mouse over the Check or the Quantity cells only, simply shows some text using plain text and the STRONG html tag for emphasize a phrase. For your second question, you don't need to pay if you want to use AJAX. Best 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.