Jump to content
xisto Community

MacFly

Members
  • Content Count

    37
  • Joined

  • Last visited

About MacFly

  • Rank
    Member [ Level 1 ]

Contact Methods

  • Website URL
    http://
  1. This may be a totally confused question. I have implemented htaccesss/htpasswd for registered users to access a 'members only' area. Is there any way of forcing just the htpassword popup to use ssl and letting everything else be standard http? ie; user goes to http://mysite.com/ and selects 'members' This takes him to http://forums.xisto.com/no_longer_exists/ The members subdirectory is password protected (via htaccess/htpasswd), so the popup box prompts for user/password. Is there any way of sending the password from the popup using ssl? (I have a shared ssl certificate) Thanks
  2. Hi there,Does anybody know why the javascript roll-over effect seems to work only some of the times in Internet Explorer? And how do I fix that?For instance, I created a picture roll-over effect for a client web site. When you move the mouse over the image, another image reveals itself. This works fine in Mozilla and Netscape, but not consistently in Internet Explorer. But, I've created another web site using the exact same javascript roll-over effect that works fine in Internet Explorer all of the time. Thank you in advance for any replies!
  3. Hello All!I am not a newbie to ASP.net, but am fairly inexperienced with database design. I have designed databases in the past using SQL, but am drawing a blank when it comes to this. SQL doesn't really matter here.. This is really more of a database design question. I am needing to develop a database for an e-commerce site. This e-commerce site will be selling various items such as clothing lines, lotions, soaps, etc...Obviously each product will need the basic info such as price, sku#, reg price, sale price, images, etc... That is easy. I also need options for each item. Each item will vary. Some will be clothing size options (S, M, X, XL)... weight (4oz, 6oz, 16oz), color, scent, etc... Ideally I want a back end portal for someone to use to add, delete, update the items into the db. Therefore, as dynamic as possible is ideal for the options.I was thinking of having a category table, subcategory table (?), products table, product_options table, and ???Anyone have any experience with this?Thanks in advance.
  4. Hey there everyone, I'm trying to create a website using some PHP. I created an order form for my school company to let people order products this way. Only orders are made - no payments or anything. Now I have create the whole website. It is very simple. Every different product has a different combobox to select the number of items from. Then on the end of the page the client's details are asked. Now I created this PHP file that would handle everything, that is collecting all information and creating a well-formatted e-mail to send to the company's e-mail address. I thought everything I coded was right - but I guess there must be something wrong. When I try it out, the page get redirected to a blank page (though I tell the script to relocate to the website) and no email is sent. I have attached the PHP code (it's quite long so I cut out a part) and I was wondering if any of you can see something wrong with the code that is causing this problem ? [br]<? [/br]// requesting client's information [br][/br]$email = $_REQUEST['email']; [br]$name = $_REQUEST['name']; [/br]$phone = $_REQUEST['phone']; [br]$GSM = $_REQUEST['GSM']; [br][/br]// getting the product's information [br][/br]$2in1name = "2 in 1 Kaarsen"; [/br]$2in1price = 4.00; [br]$2in1 = $_REQUEST['2in1']; [/br]$total2in1 = $2in1* $2in1price; [br][/br]$eikaarskleinname = "Eikaars Klein"; [br]$eikaarskleinprice = 4.00; [/br]$eikaarsklein = $_REQUEST['eikaarsklein']; [br]$totaleikaarsklein = $eikaarsklein * $eikaarskleinprice; [br][/br]// they are all the same from here - name, price, number and total [br][/br]$gpLMname = "Geurparels Limoen:Meiklokjes"; [/br]$gpLMprice = 4.00; [br]$gpLM = $_REQUEST['gpLM']; [/br]$totalgpLM = $gpLM * $gpLMprice; [br][/br]//this should be created the email message [br] $message = "Bestelling door $name\n Te bereiken op $phone, of op de GSM $GSM\n \n Bestelling\n \n $2in1 keer $2in1name = $total2in1"; [br][/br]//this should be sending the message [/br] mail("spammail@gmail.com", "$name Aromax Bestelling", $message, "From: $email"); [br]header("Location: http://aromax.bizhat.com"); [/br]?> [br][/br]All help will be highly appreciated! Here you can check out the script in action (with the real emailaddress - I have replaced it because I don't like spam ) As you see only the first product would be included in the e-mail for now - I would expand it in the future of course. So selecting only the first items and filling in some details should do it I suppose. Thanks in advance to all!
  5. Hi !I run a Search Engine called Mixcat.com I have had the domain up and running since 96 and have seen great growth other the years. This year we have had the most growth due to our FREE Hosting that we offer. Our Alexa Rank went from 24K down to the 12K range this week. Our traffic almost doubles ever month as we add on 100-200 free hosting sites per day. Does anyone have any idea why we would have dropped from a PR6 about 5-6 months ago to a PR5!?! Could it be we have lots of links to non-popular sites now? Im at a loss and would love to know what you guys think.Thanks!
  6. Can anyone explain me the difference between example 1 and 2 when doing searches in google ? In the Example 1 google show Tittle and some page content and in the Example 2 nothing of them. EXAMPLE 1 Supporter Sites - For the Soccer Fans! Soccer portal for the fans and supporters with tons of links, news, live scores, league tables, weather conditions etc. from all over the world. Google can show you the following information for this URL: Show Google's cache of supportersites.com Find web pages that are similar to supportersites.com Find web pages that link to supportersites.com Find web pages that contain the term "supportersites.com" EXAMPLE 2 come2bet.com/ Google can show you the following information for this URL: </SPAN> Find web pages that are similar to come2bet.com Find web pages that link to come2bet.com Find web pages that contain the term "come2bet.com" Thanks in advance
  7. Hello,I've got a movie that is loading a random swf into a clip.Each random swf contains a different photograph which pans and then fades out.What I need to do goto the first frame in the parent timeline and start the whole process again.My questions are:A) How do I reference the parent timeline, I've tried:_parent.gotoAndPlay(1);but it doesn't seem to work. What's the best way to unload the movie once it's run it's course bearing in mind it uses the following random code to load it:url = "image" + Math.round(Math.random()*1) + ".swf";loadMovieNum (url, 1);thanks in advance
  8. Hello,I am trying to setup a dynamic content page using the tutorial from the Advanced Web Design Version 2 magazine. My site is hosted through GoDaddy.com and they happened to have MySQL database support. So I went and setup the database according to the magazine, but the GoDaddy setup was on a form-fill online page instead of hand coding. I created the table and put in some test info into the table and then tried to configure my site in Dreamweaver MX. I was having problems and I called GoDaddy, but they said they didn't give database support, but that I should have a database folder in my FTP folder. I tried to connect to my database in Dreamweaver, but all it did is put some folder in my FTP folder named _mmServerScripts. So my question is how do I connect to my database entries in Dreamweaver? I attached four pictures. One shows my FTP folder before I try to connect and the other shows it after DW inserts the _mm folder. One shows my database with 2 entries. Lastly is the error message I get from Dreamweaver after it puts the _mm folder in my FTP folder. Any help would be hugely appreciated.Thanks,MacFly
  9. I am working on a project that due to specific needs of the papers being submitted, submitters submit MS Word documents to the online system. A team of judges need to view each submission and score it. I want to allow them to print out all of the submitted MS Word documents. If they were just web pages I could toss in page breaks and compile them all in a list. Does anyone know of any tricks that would allow me to print out a seriers of submitted Word documents in a chain without forcing the judges to manually open one file at a time and print?Thanks
  10. MP3 Doctor is an editing tool that lets you check, modify, and improve all your MP3s and WAVs in several ways. You can repair imperfect songs or modify them with TRIM, EQUALIZE, RESAMPLE, and a very efficient and improved NORMALIZE feature, and more (stretch, pitch, mp3 to karaoke...).The goal is to let you maintain a similar quality, volume and sound on all your existing MP3s and discover a new quality for you mp3 files. In addition, it comes with encode and decode options (MP3 to WAV / WAV to MP3). You can modify hundreds of files with one click using 'Batch' mode or use 'Single' mode to process one file at time. In addition it can handle ID tags of MP3 files. This version is a major Update that includes a very optimized Normalize function that allows to get the lower parts of a song to higher levels. With this Super-Normalize feature the user could get all your songs to the best level possible.A new Karaoke feature was added, that lets the user to remove the vocals of an MP3 or WAV file. This functions works exactly by the same principle of the hardware vocal removers and get then similar results. Most songs could get the vocals removed, however it depends more on the effects and proccessing that the vocals has during the recording. On the other side, some other sounds of the song could be removed by using the Karaoke function, user can't expect to remove all the vocals on every file. New pitch and tempo features added that let user change tempo (bmp) without changing the pitch or viceversa, ideal for remixes.
  11. A suite of tools for increasing operating system performance. WinTools.net cleanly removes unwanted software from disk drives and dead references from the Windows registry. WinTools.net puts you in control of the Windows start up process, memory monitoring and gives you the power to customize desktop and system settings to fit your needs and more.
  12. As a secure FTP client TurboFTP supports secure FTP over SSL/TLS, MD4/MD5 S/Key OTP password encryption, SSL/TLS public key authentication. The built-in Folder Synchronizer provides straightforward, visual and recursive comparison result and helps you synchronize files and directories between local and remote folders with minimum effort. Scheduled file transfer and automated folder synchronization can be easily achieved with the built-in Task Scheduler. You can have an notification e-mail sent to you upon completion of each schedule task or by error. It automatically attempts to resume broken transfer, redial and reconnect after detected lost of connection. http://forums.xisto.com/no_longer_exists/
  13. Building a flash site ---------------------------------------- Kirupa.com - Building a complete site hyd-designs.com - PHP Nuke and Flash Animating 3D logo with Swift3D ---------------------------------------- http://forums.xisto.com/no_longer_exists/ Prototypes ---------------------------------------- http://forums.xisto.com/no_longer_exists/ A huge list of resources links ---------------------------------------- http://forums.xisto.com/no_longer_exists/ FLASH TUTORIAL LINKS ---------------------------------------- whatdoiknow.org - Flash Presentation http://www.flashkit.com/ http://forums.xisto.com/no_longer_exists/ http://www.the-stickman.com/tutorials/ http://www.flashmove.com/ http://www.adobe.com/ https://www.kirupa.com/ http://www.sfdt.com/ http://cbtcafe.com/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://archive.phong.com/tutorials/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://the-stickman.com/ http://forums.xisto.com/no_longer_exists/ http://www.thehotweb.net/ http://www.iboost.com/build/software/flash/ http://forums.xisto.com/no_longer_exists/ http://moc.co/archive/ http://flashgeek.com/ http://www.designsbymark.com/ http://www.flashworker.de/ http://unleash.com/unleashed-productions-page-not-found/ https://www.vtc.com/ http://www.flashheaven.de/ http://www.flash-school.de/ http://flashguru.co.uk/ http://graphicssoft.about.com/od/macromedia/ http://forums.xisto.com/no_longer_exists/ http://www.webreference.com/multimedia/flash/index.html FLASH DEVELOPER TOOLS: ---------------------------------------- http://webdesign.about.com/od/flashtools/ http://forums.xisto.com/no_longer_exists/ Kirupa.com - Xml Guesbook
  14. Kaspersky Anti-Virus (KAV) provides all types of anti-virus protection: anti-virus scan-ners, monitors, behavior blockers and integrity checkers. It supports all of the most popular operating systems, e-mail gateways and firewalls. KAV controls all possible virus entry points. Kaspersky Lab's powerful and flexible local and network management tools for auto-mation and centralized installation and control over anti-virus protection provide maximum convenience and minimum time wasted when building your own structure of an anti-virus de-fense. http://usa.kaspersky.com/
  15. I recently updated my sound card driver CMI3738/C3DX PCI (C-media) and the update did not work out too well.I had backed up the old version of this sound card driver and reverted back to it after the update did not work out. Now the system sounds work as normal but all software that used the driver once (i.e games and windows media player) freeze and stop responding when I try to start them up and I have to restart my computer.I tried reinstalling the driver about 20 times from downloads, systemboard cd and backup files and even reinstalled several of the software that does not respond, but no such luck. Windows recognizes the driver as working correctly but I guess the software does not. No games nor windows media player work.Help! ANY IDEAS? What should I do?
×
×
  • 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.