Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

sangeeta2009

@sangeeta2009
About
Posts
22
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Depriciated Function in PHP 5.3 - ereg & eregi
    S sangeeta2009

    Well friend i am googling from 5 days. And i have found many links and studied them too. and these BOLD queries that i have mentioned are not being able to be resolved by me.. Actually i have to look for alternative for these expression!!! Hope u can help....with some solution or with a link which could guide me how to resolve them!! Its a new change by PHP and I can't catch it so soon.. So please help me Or you can do another thing... I am using XAMPP with php 5.3 is there any way to stop displaying those deprecated errors

    Linux, Apache, MySQL, PHP php html database help

  • Depriciated Function in PHP 5.3 - ereg & eregi
    S sangeeta2009

    Friends , I have a code which uses Depreciated functions: I have Marked that code BOLD, please help me if you could provide alternative statements to them ... like through PREG.. Please Help.. :sigh: if (ereg("HTTP/[0-9.]+ (([0-9])[0-9]{2})", $answer, $regs)) { $httpcode = $regs[2]; full_httpcode = $regs[1]; if ($httpcode <> 2 && $httpcode <> 3) { $status['state'] = "Unreachable: http $full_httpcode"; $linkstate = "Unreachable"; } } if (ereg("Location: *([^\n\r ]+)", $answer, $regs) && $httpcode == 3 && $full_httpcode != 302) { $status['path'] = $regs[1]; $status['state'] = "Relocation: http $full_httpcode"; fclose($fp); return $status; } if (eregi("Last-Modified: *([a-z0-9,: ]+)", $answer, $regs)) { $status['date'] = $regs[1]; } if (eregi("Content-Type:", $answer)) { $content = $answer; $answer = ''; break; } if (eregi("Content-Type: *([a-z/.-]*)", $content, $regs)) { if ($regs[1] == 'text/html' || $regs[1] == 'text/' || $regs[1] == 'text/plain') { $status['content'] = 'text'; $status['state'] = 'ok'; } else if ($regs[1] == 'application/pdf' && $index_pdf == 1) { $status['content'] = 'pdf'; $status['state'] = 'ok'; } else if (($regs[1] == 'application/msword' || $regs[1] == 'application/vnd.ms-word') && $index_doc == 1) { $status['content'] = 'doc'; $status['state'] = 'ok'; } else if (($regs[1] == 'application/excel' || $regs[1] == 'application/vnd.ms-excel') && $index_xls == 1) { $status['content'] = 'xls'; $status['state'] = 'ok'; } else if (($regs[1] == 'application/mspowerpoint' || $regs[1] == 'application/vnd.ms-powerpoint') && $index_ppt == 1) { $status['content'] = 'ppt'; $status['state'] = 'ok'; } else { $status['state'] = "Not text or html"; } Please HELP me soon ..please REPLY!!! :((

    Linux, Apache, MySQL, PHP php html database help

  • Locking size of browser window
    S sangeeta2009

    I want a Javascript code for my webpage, which performs following action: resize window to (100, 100) disable any further Resizing, disable toolbars, disable scrolling... Actually a code which forces the user to close the window..... It become difficult for him to proceed further... please help :confused:

    Web Development javascript help

  • Locking the size of window
    S sangeeta2009

    I want a Javascript code for my webpage, which performs following action: resize window to (100, 100) disable any further Resizing, disable toolbars, disable scrolling.... Actually a code which forces the user to close the window..... It become difficult for him to proceed further... Please help me..please

    Java javascript help

  • A Web Crawler code...help
    S sangeeta2009

    Ohhh..!!! That means you cannot help ..except fake posting... If i will be knowing that...it will be better that i will not be here..asking for help!!! well thanks for time wasting... :( :( :mad::mad: :( :(

    Java csharp java html graphics design

  • A Web Crawler code...help
    S sangeeta2009

    Ok if Possible please help me out... I have run that code without any compilation error... But when i input the url int the first Text box.. say: http://java.sun.com in command prompt it give me errors..and doesn't display me any of the Url's related to that site.. Hope you get it...Please help and see if that works on your side... And please all other guys..stop commenting about the code....:mad::mad: I haven't written that code, i have taken it form Sun.com So if Somebody is interested in helping someone whose is in need...

    Java csharp java html graphics design

  • A Web Crawler code...help
    S sangeeta2009

    public static void main (String argv[])
    {
    Frame f = new Frame("WebFrame");
    WebCrawler applet = new WebCrawler();
    f.add("Center", applet);

    /* Behind a firewall set your proxy and port here!
    */
    Properties props= new Properties(System.getProperties());
    props.put("http.proxySet", "true");
    props.put("http.proxyHost", "webcache-cup");
    props.put("http.proxyPort", "8080");

                Properties newprops = new Properties(props);
                System.setProperties(newprops);
    

    /**/

                applet.init();
                applet.start();
                f.pack();
                f.show();
        }
    

    }

    Ok ..just look at this MAIN is there something needed to be done at Properties prop=new Properties(System.getProperties()); Please compile it at your side ....and look at error.. there are some errors which i cannot explain... please just once run it at your side...and put the inputs and see what is that i am missing.... Please help me...

    Java csharp java html graphics design

  • A Web Crawler code...help
    S sangeeta2009

    i have got a code for Web Crawler in java language.... Following is applet code...

    import java.applet.Applet;
    import java.text.*;
    import java.awt.*;
    import java.awt.List;
    import java.awt.event.*;
    import java.util.*;
    import java.util.*;
    import java.net.*;
    import java.io.*;

    /* <applet code=WebCrawler height=400 width=400>
    </applet>
    */

    public class WebCrawler extends Applet implements ActionListener, Runnable {
    public static final String SEARCH = "Search";
    public static final String STOP = "Stop";
    public static final String DISALLOW = "Disallow:";
    public static final int SEARCH_LIMIT = 50;

    Panel   panelMain;
    List    listMatches;
    Label   labelStatus;
    
    // URLs to be searched
    Vector vectorToSearch;
    // URLs already searched
    Vector vectorSearched;
    // URLs which match
    Vector vectorMatches;
    
    Thread searchThread;
    
    TextField textURL;
    Choice    choiceType;
    
    public void init() {
    
    // set up the main UI panel
    panelMain = new Panel();
    panelMain.setLayout(new BorderLayout(5, 5));
    
    // text entry components
    Panel panelEntry = new Panel();
    panelEntry.setLayout(new BorderLayout(5, 5));
    
    Panel panelURL = new Panel();
    panelURL.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5));
    Label labelURL = new Label("Starting URL: ", Label.RIGHT);
    panelURL.add(labelURL);
    textURL = new TextField("", 40);
    panelURL.add(textURL);
    panelEntry.add("North", panelURL);
    
    Panel panelType = new Panel();
    panelType.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5));
    Label labelType = new Label("Content type: ", Label.RIGHT);
    panelType.add(labelType);
    choiceType = new Choice();
    choiceType.addItem("text/html");
    choiceType.addItem("audio/basic");
    choiceType.addItem("audio/au");
    choiceType.addItem("audio/aiff");
    choiceType.addItem("audio/wav");
    choiceType.addItem("video/mpeg");
    choiceType.addItem("video/x-avi");
    panelType.add(choiceType);
    panelEntry.add("South", panelType);
    
    panelMain.add("North", panelEntry);
    
    // list of result URLs
    Panel panelListButtons = new Panel();
    panelListButtons.setLayout(new BorderLayout(5, 5));
    
    Panel panelList = new Panel();
    panelList.setLayout(new BorderLayout(5, 5));
    Label labelResults = new Label("Search results");
    panelList.add("North", labelResults);
    Panel panelListCurrent = new Panel();
    panelListCurrent.setLayout(new BorderLayout(5, 5));
    listMatches = new List(10);
    panelListCurrent.add("North", listMatches);
    labelStatus
    
    Java csharp java html graphics design

  • making a compose page in word format..
    S sangeeta2009

    Could you please tell me.. i have downloaded FCK editor and now what to do.. i am clicking on the webpages..but they are not displaying a compete editor..not a working one.... please tell me what needed to be done How could i place that editor at small portion of my website compose message webpage... please help.... please help....

    Web Development help php html database com

  • making a compose page in word format..
    S sangeeta2009

    Well i need a COMPOSE Message page which looks like WORD in this link at end there is compose section... http://www.trap17.com/index.php/Winrar-Winzip_t28088.html[^] and i saved that page on my desktop and edited it to the extent i know and got whole working COMPOSE section Like this... this image is what i edited [^] But there is a problem which i cannot understand..when i click on button A which is Font Color a small new window is opened in actual site but not in my file which is saved at my desktop... please help me in making those buttons like:Fontcolor, Simileys to work for me please.. please if possible give me a edited code..... please reply please help.....:confused::confused: :^) :sigh: :( :doh: :confused::~

    Web Development help php html database com

  • making a Search Engine
    S sangeeta2009

    Thanks for understanding my lack of knowledge.. Respected sir.. I have 6 months to develop it and i just need maximum 2 weeks to understand the whole concept of CRAWLING. Today here i just wanted to now -- What problem/consequences/difficulties will be faced by me when i will be having proper knowledge of this Concept almost like yours.. so just please tell me what concepts to LEARN and what will be difficult for me at that time... Hope you get why you are Helping me?? Please reply..

    Java help java php question

  • making a Search Engine
    S sangeeta2009

    Well thanks for Information. Please tell me isn't it possible to use some available spider code or i have to start from scratch. And the thing that you mention about large storage, how can that be avoided by using Html from spider..as you mention.. please reply... I just wanted to develop a working frame work..but not an actual Search Engine as compared to Google. [not even (20%) in comparison]

    Java help java php question

  • making a Search Engine
    S sangeeta2009

    All you Technically smart guys.. I have decide to work on a project of Search Engine on any one of 2 platform..JSP or PHP.. I have worked on various projects related to this theme earlier, but this time i want it to be working on Web. The problem for me is "Crawl the Web".. Could anyone please help that how can i Access the all websites URL.. OK let me explain: In my previous projects i have already developed the concept of ranking a particular URL stored in my table according to frequency of keywords and little more concept.. So now i just wanted to ask two more things.. 1)Could any one please tell me, will it be Possible for me to Crawl The Web i.e i want the all URL available on internet and not just few that are stored in my tables... 2)a little more concept on ranking of webpages like frquency...and now avoiding those fake keyword in webpages and various other good concepts that i can implement... I will be very thankful for any kind of related help... Please reply soon

    Java help java php question

  • hosting website for JSP platform
    S sangeeta2009

    Hello Could YOU please tell me , is it possible to use the link you given to upload my JSP files and work on them. And simultaneously using the SMTP server of some other webhosting site.. Any help on that , SMTP is important...

    Web Development csharp java php html com

  • hosting website for JSP platform
    S sangeeta2009

    I have little experience about hosting and working on that. I am good in coding, currently working on a JSP + HTML Project. I wanted to know some good and free web hosting site for the requested platform. I have tried www.co.cc www.000webhost.com www.0fees.net But doesn't know whether they work fine for JSP as they support PHP. One more thing ----I wanted to know, if get a hosted site, will i be able to get its SMTP server for free, to send mails, because this is important feature of my project. please help

    Web Development csharp java php html com

  • storing visitor IP address
    S sangeeta2009

    I want to store the IP address of visitor to my site in Mysql. I wanted to know if it is possible through HTML or JAVA, if yes then please help in code. If the only solution is PHP , then please tell me how can i work simultaneously work with JSP and PHP database code. As i am working on JSP coding, Please tell how to embedded the php code and use it. Don't know PHP. Please help

    Web Development java php html database mysql

  • Forum coding
    S sangeeta2009

    i want to make a forum. please tell me from where i can get a working template. i want to develop it in html. also tell me various important aspects to cover in it. i wanted to know how can i display the IP address of the visitor on my site and also how to transfer it in my oracle database. i wanted to know how to write the coding for COMPOSE page like , this site or gmail account.., i do not know how to implement Bold , Italic, and other smilieys...

    Web Development html database oracle docker tutorial

  • j2ee code for sending mail [modified]
    S sangeeta2009

    well Member 4277480 i am trying your code but it still not sending them. Tell me whether i have to configure some smtp settings to the gmail account which i am using here. also if possible please send some important screenshot like when configuring tomcat server. also tell me what is this program actually doing, is this sending the mails to any client by using my email address in FROM: option. do i need to configure any port Please help me this last time... I am very close to successfully running it.. Please reply with screenshots

    Java java com help question

  • SMTP Server
    S sangeeta2009

    I am Sending the mails from Postcast server, it allows me to send 5 to 8 mails but after that it shows error that you are blocked i.e your ip address is blocked. please tell me that is there any particular format for sending mails through these severs. All the mails i send are sent to SPAM box in email account. Is that so, that i can send only SPAM mails through it or to inbox somehow, if not so then what format of SPAM to follow to prevent from Blocking... please give details.. please help..its related to my project

    Web Development help sysadmin

  • j2ee code for sending mail [modified]
    S sangeeta2009

    hello sir the link you provide http://www.mediafire.com/download.php?yygnyhmd1dg is not working, the rar file is not available.. please look at it also tell me that, the code you provided me is just sufficient to send message or i need to configure a smtp server also.. because i am just running your code please reply soon...

    Java java com help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups