Phone hog links give me error message "an error occuredon the server when processing the URL

When ever I click on the links sent from phone hog.com to earn free minutes I get the following error message. "An error occurred on the server when processing the URL. Please contact the system administrator" I have made several contacts with phone hog help and they claim it is my settings on my computer. However I contacted my internet provider TDS telecom and they indicated that this is a phone hog issue. I do not have any other problems with any other links I click on with this type of error message.

Hello msFit,
it's well known, that in all these cases you describe I'm not a friend of a detailed troubleshooting. To be able to be independent in all this things It is one of the reasons why I prefer an external FTP program. The difficulties with which you have to fight encourage me in this opinion, not least because we always search for experts, we don't charge a "jack of all trades".
To manage several websites or to upload my files and sometimes for the opposite way, for a necessary download from my server or to use a "a site-wide synch", I'm using FileZilla. It simply looks easier for me to keep track of all operations precisely and generate or reflect easily the desired tree structure.
Above all, FileZilla has a feature (translation from my German FileZilla) called "compare file list". Here it's possible to use file size or modification time as a criterion. There is also the possibility to "hide identical files", so that only these files which you want to redact remain visible.
And even if it means you have to install a new program, I am convinced that there is an advantage. Here is the link to get it and where you can read informations about how it works:
http://filezilla-project.org/ and http://wiki.filezilla-project.org/Tutorial#Using_the_site_manager
Mac: Mac OS X (Use: Show additional download options)
http://filezilla-project.org/download.php
Of course, you also need all the access data to reach your server and for MIME issues, you should contact your web host/provider.
Good luck!
Hans-Günter
P.S.
Since I use two screens, the whole thing became even more comfortable.

Similar Messages

  • Why does itunes give an error saying " The Iphone cannot be synced. An unknown error occured (-50). Everytime I try to sync my phone?

    Why does itunes give an error saying " The Iphone cannot be synced. An unknown error occured (-50)". Everytime I try to sync my phone? I have another Iphone that syncs with the same itunes account and it's working fine.

    What operating system do you have on your computer?

  • Since yesterday iam facing problem my iphone 5 doesn't get activated, i tried even with i tunes it give me this message : iTunes cannot restore the iphone because Find My iphone is on. please help me

    since yesterday iam facing problem my iphone 5 doesn't get activated, i tried even with i tunes it give me this message : iTunes cannot restore the iphone because Find My iphone is on. please help me

    If you are a developer, go here:
    solution to Activation Lock with expired iOS 7 beta:
    https://devforums.apple.com/message/880712#880712
    (thanks to suzan135 for the link)
    If you are not a developer, your favorite search engine may provide some direction.

  • My husband and I have iphones: When I imessage him, i get an imessage of what i sent him. Its as if our phones are linked. How do I fix this? It happens when he imessages me too. He receives an imessage of what he sent me

    My husband and I have iphones: When I imessage him, i get an imessage of what i sent him. Its as if our phones are linked. How do I fix this? It happens when he imessages me too. He receives an imessage of what he sent me

    It's because you are both using the same iTunes Library on your computer and you are both using the same Apple ID on each phone.
    One of you must start a new computer user account and get a new Apple ID. Then start operating on the ocmputer from the new account. He/she will also need to restore their phone from the new account and using the new Apple ID. This way everything on each of your phones will remain separate.
    How to use multiple iPhone, iPad, or iPod devices with one computer

  • Good evening I would please help me, IGood evening I would please help me, I have problems with flash player when update on my computer Flash Player for windows 8, gives me error in the installation that is not apply on my computer. Please help. Thank You

    Good evening I would please help me, IGood evening I would please help me, I have problems with flash player when update on my computer Flash Player for windows 8, gives me error in the installation that is not apply on my computer. Please help. Thank You

    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    If that is too inconvenient, using Google Chrome may be a preferable alternative.

  • Why it gives an error , although the result is correct

    Hello everybody,
    here is my code, which i wrote in another way,
    After th sucessful compiling it gives an error, but the results of execution is ok.
    What is wrong?
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    import java.awt.*;
    public class ReadFkOut {
         private static double[] ar;
         private static double[] ar1;
         ReadFkOut() {
    ar=new double [6];
    ar1=new double[6];
              try {
                   FileReader file = new FileReader("bambam1.dat");
                   BufferedReader buff = new BufferedReader(file);
    StreamTokenizer stk=new StreamTokenizer(buff);
    stk.eolIsSignificant(false);
    stk.parseNumbers();
    int lineNumber=0;
    stk.nextToken();
    while(stk.ttype==stk.TT_NUMBER) {
    ar[lineNumber]=(double)stk.nval;
    stk.nextToken();
    ar1[lineNumber]=(double)stk.nval;
    lineNumber++;
                   buff.close();
              catch (Exception e) {
                   System.out.println("Error - - " );
         public double[] getValues() {
              return ar;
         public double[] getValues1() {
              return ar1;
    0.00000000 39.409
    5.00000000 39.409
    10.0000000 39.409 file bambam1.dat
    15.00000000 39.409
    20.00000000 39.409
    25.0000000 39.409
    main coimport java.io.*;
    import java.lang.*;
    import java.util.*;
    import java.awt.*;
    public class Galka {
    ReadFkOut rf;
    static double [] gallochka;
    static double [] gallochka1;
    public static void main(String[] args) {
              ReadFkOut rf=new ReadFkOut();
              gallochka=rf.getValues1();
    gallochka1=rf.getValues();
    System.out.println(gallochka[1]);
    System.out.println(gallochka1[1]);

    import java.io.*;
    import java.lang.*;
    import java.util.*;
    import java.awt.*;
    public class ReadFkOut {
    private static double[] ar;
    private static double[] ar1;
    ReadFkOut() {
    ar=new double [6];
    ar1=new double[6];
    try {
    FileReader file = new FileReader("bambam1.dat");
    BufferedReader buff = new BufferedReader(file);
    StreamTokenizer stk=new StreamTokenizer(buff);
    stk.eolIsSignificant(false);
    stk.parseNumbers();
    int lineNumber=0;
    stk.nextToken();
    while(stk.ttype==stk.TT_NUMBER) {
    ar[lineNumber]=(double)stk.nval;
    stk.nextToken();
    ar1[lineNumber]=(double)stk.nval;
    lineNumber++;
    buff.close();
    catch (Exception e) {
    System.out.println("Error - - " );
    public double[] getValues() {
    return ar;
    public double[] getValues1() {
    return ar1;
    0.00000000 39.409
    5.00000000 39.409
    10.0000000 39.409 file bambam1.dat
    15.00000000 39.409
    20.00000000 39.409
    25.0000000 39.409
    main coimport java.io.*;
    import java.lang.*;
    import java.util.*;
    import java.awt.*;
    public class Galka {
    ReadFkOut rf;
    static double [] gallochka;
    static double [] gallochka1;
    public static void main(String[] args) {
    ReadFkOut rf=new ReadFkOut();
    gallochka=rf.getValues1();
    gallochka1=rf.getValues();
    System.out.println(gallochka[1]);
    System.out.println(gallochka1[1]);
    }The output is
    Error --
    5.0
    39.409

  • Error "Error in ABAP statement when processing an internal table. table."

    Hello,
    I am facing the error when tried for GR from SRM portal for my shopping cart and for others created shopping cart. The error is
    "Error in ABAP statement when processing an internal table. table."
    I have the central receipient role. Couold any body assist me?
    Thanks,
    Pijush

    Hi Harish,
    Execute the query in RSRT and check whether you have any short dump is in ST22. This would give a clear idea at what might have gone wrong.
    Another thing is to check whether the code for the variable is fine in the user exit.
    Hope this helps.
    Bye
    Dinesh

  • Sometimes when firefox loads a web page the error message comes up stating The URL is not valid and cannot be loaded. And I know this is a valid web site. What gives?

    This happens very often. When I open Mozilla sometimes I get an error stating that "The URL is not valid and cannot be loaded." When I click ok the site stops loading and the tab is titled untiled.

    This can be a problem with DDE.<br />
    See http://kb.mozillazine.org/Windows_error_opening_Internet_shortcut_or_local_HTML_file_-_Firefox

  • Whatsapp does wanna open it gives an error about the firewall

    Just downloaded the new whatsapp, after putting in my number it gives
    Out a message about whatsapp that it has attempted to open a connection
    Inside the firewall which is not allowed. Then its gives an error about java.lang.securityexception: permission denied..please help cause previously whatsapp was working fine

    The firewall option to disable it or enable it is locked it has a red lock I don't know how to remove it so I can disable the firewall

  • Getting error message 'unable to connect to server' when trying to access iCloud

    Trying to access my iCloud account but keep getting error message 'unable to connect to server'. Need help please.

    Welcome to the Apple Community.
    Try the following.
    Go to Settings > iCloud > Delete Account (This removes your data from your device, but not from your account, it will be added back later).
    Restart the device.
    Sign in again (Settings > iCloud, don't use the 'Create New Apple ID' button).

  • IPhoto gives import error "file not valid" when import more than one photo

    Trying to import lots of photos.
    Every time I try to import more than a few, I get an error that "The following files could not be imported (they may be an unrecognized file type of the files may not contain valid data)."
    When I go back to importing just one at a time, it works fine every time.
    I have tried rebuilding the iPhoto library as well.
    I have tried also not copying into the iPhoto library and copying into the iPhoto library (using Preferences/Advanced/Importing).
    Any help would be great.
    This is painful doing one-by-one, and each one I bring in shows as a separate event...
    Every once in a while I will get lucky and it will import more than 5, though I will still get the error before it imports all selected. Ugh!

    Unfortunately did not work.
    And now a silly question - how do I get to be able to see my original iPhoto library? When I try to open it, I don't see any of the albums and mobileme galleries I had created anymore (though I can still see them on the web)

  • Error: java.lang.nullPointerException when process is complete

    Hello,
    I keep getting the below error in the log file when the process is complete, does any one has this error before?  The error does not affect the process but it is kind of annoying when looking at the log file.  I try to use the other component beside the Foundation>DecisionPoint>execute but I still get the same error.
    [5/16/11 14:57:19:047 CDT] 00000047 AWS           E com.adobe.workflow.engine.ProcessEngineBMTBean stallAction stalling action-instance: 40746 with message: javax.ejb.TransactionRolledbackLocalException:  ; nested exception is: java.lang.NullPointerException
    Can any one please advise on how to fix the error above to stop showing in the log file. I am still using LC ES 8.2.1 with SP3.
    Thanks,
    Han Dao

    If you could give a little more info it would help. The web.xml for example, if your mapping it correctly, etc...

  • Error on Production Server when php service is called.

    The web application runs fine on my development machine but on the production server it gives me the following error and no responce when a phpservice is called.
    error:
    Send failed
    Channel.Connect.Failed error NetConnection.Call.BadVersion: : url:
    'http://ipaddress/Project/public/gateway.php'
    Network Monitor:
    Development Machine:
    Windows 7
    MySQL 5.5.16
    Zend Framework 1.10
    Production Machine:
    Ubuntu 11.10
    MySQL 5.1.58
    Zend Framework 1.11
    I followed the following steps to deploy the application on production server;
    1. created identical database with same credentials on the production server
    2. confirmed that my php service works on the server by manually navigating to the php file and printing the data retrieved on the page
    3. modified the paths in amf_config.ini to reflect production server
    [zend]
    webroot = "/var/www"
    zend_path ="/usr/local/zend/share/ZendFramework/library"
    library ="/var/www/Project/library"
    services ="/var/www/Project/services"
    [zendamf]
    amf.production = true
    amf.directories[]=Project/services
    4. initialized the class by adding
    // Initialization customization goes here
    _serviceControl.endpoint = "http://ipaddress/Project/public/gateway.php";
    in the .as file for the php service
    I have also found from my zend server logs that when my php service is called its throws the following error:
    PHP Notice:  Undefined index: HTTPS in /usr/local/zend/share/ZendFramework/library/Zend/Amf/Response/Http.php on line 59
    I doubt that there is anything wrong in the deployment process but please do let me know if you could think of something i might have missed.
    The other thing im wondering is the php notice if it were to be caused due to different Zend Framework versions!
    Kindly advice

    EGJ Steens has post a fix at http://forums.adobe.com/message/4097998#4097998#4097998/Using Flash Builder
    Zend framework 1.11 added an extra function in the Http.php file (which was mentioned in the post) and was fixed as follows
    protected function isIeOverSsl()
            $_SERVER['HTTPS'] = 'off';  //Adding this line fixed the issue
            $ssl = $_SERVER['HTTPS'];
            if (!$ssl || ($ssl == 'off')) {
                // IIS reports "off", whereas other browsers simply don't populate
                return false;
            $ua  = $_SERVER['HTTP_USER_AGENT'];
            if (!preg_match('/; MSIE \d+\.\d+;/', $ua)) {
                // Not MicroSoft Internet Explorer
                return false;
            return true;
    My concern is if i wish to secure my application with ssl using HTTPS will this prevent me from doing so.
    Any Pointers Anybody?

  • Error in Kpro server when checking in originals from NW Portal

    Hi Experts,
    I am not able to check in originals in my NetWeaver Portal.
    When I try to save I get the follwoing error message:
    - Error in Kpro server
    But if I try in to check in the same original in the PLM system through SAP GUI it works just fine.
    Any thoughts about what I can do?
    Thanks in advance,
    Mikael

    Hi Mikahel,
    I have tried changing the whitelist and now I am able to check-in document to a content server storage category but not able to display it..
    Could you please tell waht additional setting you have done with data carrier?
    We have maintained PC and Default front end..
    Regards,
    Aby

  • WebGate Error Report - The URL /access/sso is reserved for use by Oracle...

    We are getting a 500 error on the web gates when logging in.
    They have been working before, but are now reporting the error below.
    2010/01/27@07:09:25.632239 18521 33 WEB ERROR 0x0000151F /export/build40/Oblix/coreid1014/palantir/commonlib/src/apache2_req_info.cpp:170 "WebGate Error Report" Message^The URL /access/sso is reserved for use by Oracle Access Manager and has been used with incorrect parameters. ReqReq^POST /access/sso HTTP/1.1 ReqProto^HTTP/1.1 ReqHost^p1uawbsv1.portal.internal ReqStatLine^ ReqStatus^200 ReqRawUri^/access/sso ReqUri^/access/sso ReqFilename^/u01/app/oracle/product/11.1.1/ohs1/instances/instance1/config/OHS/ohs1/htdocs/access ReqPath^/sso ReqArgs^
    The configuration uses form based login
    Details for Authentication Scheme
    Level           1
    Challenge Method           Form
    Challenge Parameter           
    creds:userid password
    form:/oamsso/login.html
    action:/access/sso
    passthrough:no
    SSL Required           No
    Challenge Redirect           
    Enabled           Yes

    thanks,
    the login post goes to /access/sso, but now i am getting 404 error /access/sso
    Below is what I currently have the following in httpd.conf, which is the same as in a working environment.
    The web gate policy resources include /portal and /public, but no mention of /access. How does web gate know how to intercept /access/sso?
    [2010-01-28T10:50:42.9609+11:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: p1uawbs02] [host_addr: 10.252.16.223] [tid: 18] [user: oracle] [ecid: 0000Pa_5qz3BP9s5Gj0Fyf0001rV00009_] [rid: 0] [VirtualHost: main] File does not exist: /u01/app/oracle/product/11.1.1/ohs1/instances/instance2/config/OHS/ohs1/htdocs/access
    #*** BEGIN WebGate Specific ****
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libgcc_s.so.1"
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libstdc++.so.5"
    LoadModule obWebgateModule "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/apps/webgate/bin/webgate.so"
    WebGateInstalldir "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access"
    WebGateMode PEER
    <Location /access/oblix/apps/webgate/bin/webgate.cgi>
    SetHandler obwebgateerr
    </Location>
    <Location "/oberr.cgi">
    SetHandler obwebgateerr
    </Location>
    <LocationMatch "/*">
    AuthType Oblix
    require valid-user
    </LocationMatch>
    #*******Default Login page alias***
    Alias /oamsso "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oamsso"
    <LocationMatch "/oamsso/*">
    Satisfy any
    </LocationMatch>
    #*** END WebGate Specific ****

Maybe you are looking for

  • ITunes can't locate library on external hard-drive

    I have had my iTunes library in a folder on an external E hard drive for some time, and it worked fine. After I downloaded the latest version of iTunes - in response to a prompt from Apple - it now can't locate any of the tracks. The library is still

  • I get an error message when trying to install recommended update

    I get an error message in many instances; cropping photo; editing photo; trying to caption a photo; unable to install Windows upgrade, etc.

  • Authorisation to be restrict to plant level for VA01

    hi experts, is it possible to restrict the user to plant level for the transaction VA01. if possible authorization object for the same or some other process

  • PDFs rendered on AIX and Linux different file sizes

    Hello, If I render a PDF on AIX my file size is around 400K. If I render the the same PDF on Linux, the file size is around 1.2MB. I am using the same XDP and XML file. I am using LiveCycle Forms v7. Any ideas? Thanks, Greg

  • Ping response

    Please be gentle with me thiss is my first post and I'm not really sure if I'm in the right place - if I'm not let me know and I'll repost!! I have an iMac with a time capsule that I am using for back-up extra storage and wireless internet, I think I