Jump to content

PcGeniusProductions

Members
  • Posts

    95
  • Joined

  • Last visited

    Never

Everything posted by PcGeniusProductions

  1. Hi guys. I a nearly 100% certain that this is not possible without heroic coding, but for some reason, I have been sucked into the forums to ask the question, once and for all... Is this possible: An address, which goes to a web-page, then redirects an iframe within the specified page? e.g. http://example.com/mypage.php?iframe=http://example.com/mypage.html Or something similar? I am using Joomla v1.5.7, using PHPv5 and SQL(i) These are nothing to do with it, true, but anyways... Thanks in advance for any help anyone can give.
  2. Got an answer from "GoogleLady" :: The title of a sitelink is the "Hyperlinked Text" and NOT the page-title. Indexed sitelinks can be blocked/modified in the Google Webmaster Backend. Hope this helps people in my situation.
  3. Um... guys, I know I am being a little impatient, but I am getting really desperate. Google webmaster's help has some answers, yet not for the specific question: What does google use for the title of a sitelink? Anyone have an answer?
  4. Hi, is there a way to manipulate the sitelinks given below the main website title in google's search results? Example: Sitelink says: "Support" But when you click it, the page title says: "Help & Support | WebsiteName" Also, a bit more advanced, I want it so that IF the indexed result is NOT a sitelink and IS a page result (standalone listing), it shows up as the original page-title. Sitelink: "Support" Page Title: "Help & Support" OR "Help & Support | WebsiteName" Search Result: "Help & Support | Website Name" I am using "Joomla 1.5.7 with YOOtheme Evolution Template" including "ALL of the addons." If anything is unclear please ask me for more info. I cannot find info anywhere. Thanks in advance.
  5. yeh, thats right. but... how does it work? does it use my page titles? (if so then i have another confusing issue) or just the page "HyperLink text" (the text that is hyperlinked) ??
  6. Hi, I have been building my website using basic titles on the indexable pages under the illusion that when google indexes them, it would display them under the main site title in the results. For example, you type in "help" and it comes up with help.com, then under that, there is a list of links related to that site. But... upon visiting these links, i noticed the link-text does not match the page title. Can someone please help me out of my situation before I launch in October the 5th? I want to be able to name my pages something, and have them indexed (or shown in a "related" list) under something different. Maybe I am missing something, maybe google does not use the page-title for this kind of job, i had the idea that it may even use the "link text" on the home-page. Either way, I am in desperate need of some expert advise as google does not go down too well with 500 word criterias, as i just found out when trying to search for help on this subject. Thanks for any help available.
  7. the quotes worked :D Thank you soo much. I have been searching google for hours. thanks for that guys, i am reli grateful.
  8. Hi, i have spent all night looking for support, but cannot get the info I need... I want to run this query: But it gives me an error, I suspect it is the "@" sign. Does anyone know a fix for this? I would be extremely grateful for any help you can offer.
  9. Heehee, thanks I guess PHP is older.
  10. Hey guys, I fixed it. PHP is a tad like ASP Well, I would not call it a fix, but it now works ok. Only problem is, it is the CSS that is playing up now. I know how to fix this of course. What I don't understand, is why should all of the web-designers make IE compliant coding when it is IE in the wrong? if you ask me MS are a tad inconsiderate. They put their rubbish out and expect Us to adapt. Anyway, thnks for your replies guys, and good luck with your own projects
  11. Hmm, I could do... But like I said, I am a rookie. It took me weeks to perfect the chatbox, and I reli dnt want to go messin it up. Seriously tho guys, you are right. I should not run from the problems, otherwise, how will I learn? Only problems is, I did the styling part, (i am very good with css) but my friend did the php and sql part (of which I know none) i asked him why it does it, and he says he dnt know. it looks reli nice in firefox, but not in ie, well, in IE it dnt even look like a chatbox, just a load of coding. Thanks for your replies tho guys, I will have a go. I need to learn php
  12. let me explain... I have made (with 75% help from friends) a working shoutbox, but it does not work in IE. I wanted to give access to the shoutbox for all of other users, but not for IE users (who would otherwise see gobledegook) i want to display a message to them.
  13. Hi, is there a php code to display one thing to IE and another to everything else? I am a real beginner in php so i require as much help as possible. Thank you for any help offered. )
  14. OK, Yes I know this has nothing to do with php, but I did not know where else to put it so, here goes... I am about to rewrite my urls, with htaccess. Is it better to force www. to stay or force remove? I can make it rewrite so it is on all tiem, or so it is never on. is there a difference in the two? Summery: Which is better? www.domain.com or domain.com Thanks for any info.
  15. OK, I shall take a look. I was thinking of Ajax, but never having used it in my own creations, I don't know much about it. Thanks for your advice.
  16. Hi, I have wrote a script that echos all the stats of my web-chat client. Only trouble is, for it to get upfated info without changing the page, it has to use meta refresh (It is inside an iFrame) so the whole box flashes and lookes awful. What I want to do is make it so it ONLY updates the ECHO data, and not the whole script. I will be prepared to use any coding language that will do what I need. (Except ASP) Here is my script. Can anyone help me please? <html> <head> <meta http-equiv="refresh" content="60"> </head> <SCRIPT LANGUAGE="JavaScript"> function popPGCscript(URL) { day = new Date(); id = day.getTime(); eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=700,height=150,left = 179,top = 334');"); } </script> <style type="text/css"> body { background-color: #EFEFEF; } DIV.pgc-stats { padding-left:3px; border-style: solid; background-image:url('gradient.jpg'); line-height:17px; font-size:12px; font-family:verdana; } </style> <body> <div class="pgc-stats"> <?php $dbhost = 'XXXXX'; $dbuser = 'XXXXX'; $dbpass = 'XXXXX'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); $dbname = 'XXXXX'; mysql_select_db($dbname); ?> <?php $result = mysql_query("SELECT DISTINCT(room) FROM ajaxim_chats"); $num_rows = mysql_num_rows($result); echo "<b>Public Chatrooms:</b><br />$num_rows"; ?> <br /> <?php $result = mysql_query("SELECT * FROM ajaxim_users WHERE is_online = 1 AND admin = 1"); $num_rows = mysql_num_rows($result); echo "<b>Admins Online:</b><br />$num_rows"; ?> <br /> <?php $result = mysql_query("SELECT * FROM ajaxim_users WHERE is_online = 1 AND admin = 0"); $num_rows = mysql_num_rows($result); echo "<b>Users Online:</b><br />$num_rows"; ?> <br /> <?php $result = mysql_query("SELECT username FROM ajaxim_users"); $num_rows = mysql_num_rows($result); echo "<b>Members:</b><br />$num_rows"; ?> </div> <div align="center"> <a href="/chat/" target="_blank"><img src="ChatNow.gif" border="0"></a> </div> </body> </html> Also, if you find a security hole, let me know please. Thanks in Advance, from Reece.
  17. Hi, I have a fairly used version of joomla. It is V1.5.x and it has worked well until now... I have installed a components that requires full screen mode (Joomla template without any side-menus) and I cant accept this. Is there a way to remove the menus on specified components? Like if a certain component is loaded it does not show any side menus. Thanks for any info you may have. This is very important to me. Sorry for lack of info, but I wanted to keep it simple.
  18. Hi, Can anyone please tell me how to predefine buddies so when a user signs up and logs in, they already have specified buddies in their list? Thanks in Advance.
  19. yeah true, that is frustrating, but I am more a business man than a programmer. Anyway, im cloding this thread, just want to say thanks to everyone who helped me... I got it to register as salted, but not login, I wanted it other way round, lol. Cya'll.
  20. listen guys, its late, nearly 3:30AM, this integration aint a matter of life and death. I can live without it. Lets save a few headaches and drop the subject. I will contact the designer and pay him to mod the files. Cheers for your Help.
  21. Oh, this looks promising, let me test this...
  22. ... I understand what your saying,,, but how on earth do I implement that code? Is there no way to disable Joomlas Salting? just use pure MD5?
  23. Only the username, password and email need setting to jos_users instead of {{table}}
  24. would it be of any help to post my PHP script for you to see? that way you see what I mean. Someone who uses joomla will know of their encryption and how to replicate it.
  25. OK... then I really don't understand. If what you guys are saying is true, then why wont my script work when using MD5 alone? Or does joomla ONLY salt passwords? I don't hard code PHP too much so this is very frustrating
×
×
  • Create New...

Important Information

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.