Jump to content

vexx

Members
  • Posts

    29
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

vexx's Achievements

Member

Member (2/5)

0

Reputation

  1. 'm trying to have a header dropdown menu that shows all my social buttons upon hovering. The dropdown menu is made with CSS with no jquery and I encountered a problem in Firefox and IE. The submenus (the hovering dropdown menu) css is something like this: #socialzz ul ul { display:none; } and on hover, it goes: #socialzz ul li:hover > ul { display:block; } All is good under Chrome, the menu shows all 3 social networks buttons, loads them properly etc. In FF and IE, once I hover, only the Facebook button actually works, Twitter isn't displayed at all and the G+ follow button is loaded strange. I isolated the issue and it seems the "display:none;" css rule is messing those up. If you refresh the page with the mouse over the menu (always visible), it loads them properly. Now, I'm not sure how to bypass this issue without actually using jquerry. I tried using opacity:0 and 1 respectively on hover, with no luck. The site is PocketMeta and you can check this problem in the site's header. Any ideas?
  2. He guys, Hope this is the right forum to post this. I have a strange problem that I can't identify. I often use webmaster plugins/tools for my site to check the speed, check the traffic or the heat map of the site. Most of these plugins apply an iFrame or JS that re-load the site and display an interface over the site to show you the metrics. However, with 1 of my sites, it seems the site doesn't allow any of those iframes/scripts to run and it redirects itself to the original page. I want to disable that, most of the tools i use are very useful for me as a webmaster, but I can't with this domain. Another example is the page speed plugin which reloads the page but this is the only domain I can't run that script. I appreciate if you guys could give me some tips of things that can trigger these redirects.
  3. Hey guys, I have a bit of a dilemma and I don't know what I'm doing wrong. Basically, I have this query: INSERT INTO weeklydownloads (app_id, week, weekdownloads, lastdl) VALUES ('{$this->app_id}', '{$this->week}', 1, NOW()) The query itself works just fine, however, it doesn't add the current time and date to the "lastdl" field. What this query does is actually increment a download counter for each element, for that current week of the year. The lastdl field is there only to record when was the last download made. So, what am I doing wrong here?
  4. I know, I think I haven't been very clear in my reply, I apologize. I was asking if there's a more noob-proof widget/plugin that not can only display a footer widget, but also pull a rss feed and display it nicely, with screenshots..maybe with a next/previous arrow for more..like in the example I offered in my first post. I've looked at boostrap..it's true, it offers the functionality but it seems a bit complicated to set-up to meet my needs. I'm still reading the docs and hopefully I'm wrong and rush-posted...I just asked in advance if there's a more dedicated/finished solution for my problem
  5. Will check it out tnx...but I'm wondering, isn't there a dedicated script just for this? I'm thinking you could easily customize it for that particular task and particular scripts tend to ease your job a bit
  6. I've noticed that many websites display a bottom-right widget when you scroll in any of their pages, showing the latest article or a list of articles etc. I tried to find such a widget everywhere but I had no luck. Everything I found was either poorly written or very basic. Is there any script (commercial or free) that you guys know? Here's an example: http://www.descopera.ro/dnews/10879766-interventie-medicala-de-succes-fetita-cu-cap-gigantic-a-fost-operata-foto Thanks alot in advance
  7. that will work for redirecting the old urls to the new ones, but I kinda need the rewrite rule for the subdomain Now I have this: RewriteBase / RewriteRule ^news/index([0-9-]+)\.html$ index.php?page=pressrelease_homepage&pn=$1 RewriteRule ^news/$ index.php?page=pressrelease_homepage RewriteRule ^press/([a-zA-Z0-9-]+)-([0-9-]+)\.html$ index.php?page=pressrelease_page&id=$2 and I need to rewrite the subdomain like this RewriteRule ^press.site.com/index([0-9-]+)\.html$ index.php?page=pressrelease_homepage&pn=$1 RewriteRule ^press.site.com/$ index.php?page=pressrelease_homepage RewriteRule ^press.site.com/([a-zA-Z0-9-]+)-([0-9-]+)\.html$ index.php?page=pressrelease_page&id=$2 Evidently, those rewrite rules don't work..so that's why I need some help Thanks again!
  8. yep, I appoligize: the homepage, so to speak, is www.site.com/news/ ... i want this press.site.com All the links from the "news" section are www.site.com/press/press-name.html ...i want this press.site.com/press-name.html Tnx alot!
  9. so..if anyone can help..or guide me ...I really appreciate it
  10. in the code I posted I didn't try..it's just the original code...I did have some attempts based on some suggestions I had but with no success. It's worth mentioning that I'm in my learning stage now and I would definitely love some help in this particular case tnx!
  11. Hey guys, I'm in a bit of a situation. I want to change my rewrite rules for a folder to a subdomain and then redirect old rules to new ones (for SEO). So basically I have this: RewriteEngine On RewriteBase / RewriteRule ^news/index([0-9-]+)\.html$ index.php?page=pressrelease_homepage&pn=$1 RewriteRule ^news/$ index.php?page=pressrelease_homepage RewriteRule ^press/([a-zA-Z0-9-]+)-([0-9-]+)\.html$ index.php?page=pressrelease_page&id=$2 I want to rewrite everything www.site.com/news to press.site.com and everything /press/ to press.site.com. After I do this, I want to redirect all old links to the new subdomain links. I tried several methods but I wasn't very successful. Any help will be greatful!
  12. AuthType Basic AuthGroupFile /dev/null AuthName "Moderator Control Panel" AuthUserFile /home/site/public_html/modcp/.htpasswd <Limit GET POST> require valid-user </Limit>
  13. I decided to protect via .htaccess the modcp directory from one of my vBulletin boards. When I visit the /modcp/index.php link, I'm being prompted for the username and password, but if I click cancel, the login window dissapears allowing me into modcp. After that, each link I click from the modcp, asks the for .htaccess password again, I cancel it, allowing me access once again. Basicly, what my "protection" does is only to annoy with that window, that's all. Am I missing something? Is it something in my Apache conf that is allowing this? Tnx in advance guys
  14. I have a PHP script that updates a lot of tables in one of my websites. The script runs fine on other machines, but on this one, after 20-30 seconds, it gives me 500 Internal Server Error. There is nothing in the logs, my guess is there is some kind of timeout set wrong...i've checked both PHP and Apache's timeouts..everything looks ok Do you have any other advices..what settings to try? What server configuration might cause this? Tnx in advnace
×
×
  • 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.