I am trying to send email using PHP mail. I get the following error:
Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0
Fatal error: Unknown: Failed opening required '/home/webtest/help/ask_us.php' (include_path='.:/usr/share/php:/usr/share/pear') in Unknown on line 0
The PHP code is as follows:
<?php
  $...
            
           
          
            
            Hi All
Please tell me a way to access visual svn server from another machine using a tortoise SVN client.
Evert time I try it gives me a 502 proxy error.
Please help me out!!!
Keats
...
            
           
          
            
            why this line:
var category = _dataContext.Categories.Where<Category>(p => p.Keywords.Split(' ').Contains<string>(context.Request.QueryString["q"])).First();
throws an System.NotSupportedException:
  Comparison operators not supported for type 'System.String[]'
And how can I fix it?
Thanks.
...
            
           
          
            
            I had to rebuild a project in my application.
I created a new project, created each file, and copied the contents of each file into the new project one at a time making all the necessary changes.
Now when I try to compile the project, it gives me three errors:
The metafile c:\projects\project1\CustomerModule\bin\Debug\CustomerModule....
            
           
          
            
            I execute the following command line for ffmpeg.exe
    -i C:\Beema\video-source\DO_U_BEEMA176x144short.avi 
    -i C:\Beema\video-source\DO_U_BEEMA176x144short.avi 
    -i C:\Beema\temp\9016730-51056331-stitcheds.avi
    -i C:\Beema\video-source\GOTTA_BEEMA176x144short.avi 
    -y -ac 1 -r 24 -b 25K 
    C:\Beema\video-out\9a062fb6-d448...
            
           
          
            
            I set up JMF using this tutorial http://www.deitel.com/articles/java_tutorials/20060422/PlayingVideowithJMF/ . I set up the mp3 codec in the jmfregistry like you are suppose to and I am able to play any mp3 I want when I use jmstudio. This means I set up everything correctly but when I execute my code I still get this error message:
Una...
            
           
          
            
            I had this problem happen to me in the past http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.19
My question is, when writing 
Foo x(Bar());
Why is it "declaring a non-member function that returns a Bar object" ? i can understand it if i wrote
Foo x(Bar);
But what does it think the () means in Bar()?
...
            
           
          
            
            I am having an issue with rebasing from master on to a 'deploy' branch within one of my repositories.
My repo is setup as follows:
master - of course, the main branch
deploy - a branch created where files like Capfile, deploy.rb etc are created and configured - these changes will NEVER be merged back into Master
Generally my workflow...
            
           
          
            
            Hi
I have been working on a upload file that works fine on localhost (windows) but wont work on my linux server I rent. I want it to move it to a subdir  '/files' from where the file is.
it gives the errors:
Warning: move_uploaded_file(/home/taalhulp/domains/taalhulpmanager.nl/public_html/files/6) [function.move-uploaded-file]: failed ...
            
           
          
            
            Hello. I've scoured the internet and my own intellect to answer this basic question, however, much to my own dismay I've been unable to find a solution. I'm normally pretty good about multiple header files however I have hit a wall. The problem is a function that I've declared in a header and defined in its proper namespace in the source...
            
           
          
            
            I have an iPhone app that uses an UITabBarController, which contains two UINavigationControllers, each of which in turn contains one or more TableViewControllers (actually, customized UIViewControllers implementing UITableViewDelegate and UITableViewDataSource. ) On launch, it displays the UITabBarController with one of the tableviews di...
            
           
          
            
            Hey everyone,
I have looked up this error, and it seems the common issue is caused by not putting include()'s or require()'s BEFORE session_start().
However, this is not the case for me.
I am getting the following error:
Fatal error: Zend_Http_Client::request() [zend-http-client.request]: The script tried to execute a method or acces...
            
           
          
            
            In my WPF application (Composite Application) I want to store a variable in the App.config file, but as soon as I add an appSettings section in App.config, it gives me this error:
  The type initializer for
  System.Windows.Application threw an
  exception.
App.Config:
<?xml version="1.0" encoding="utf-8" ?>
  <configuration>
      ...
            
           
          
            
            [Note to the wise: jump to last EDIT]
I have a very simple txt sitemap (named sitemap.txt) that looks like this:
http://myDomain.com
http://myDomain.com/about.html
http://myDomain.com/faq.html
http://myDomain.com/careers.html
When I load it up on webmaster tools I get:
Sitemap is HTML - 
Your Sitemap appears to be an HTML page. Plea...
            
           
          
            
            Hi,
I am developing an iPhone app using Core Data and ahev noticed that I get exceptions when I would expect and error, this is an example:
NSError *error;
// exception here if edited attribute name todoText in modeller and generated new database with that new name in it(ie clearing the iphone), ie tring to access a field not in the d...
            
           
          
            
            I am looking for ways to track down where an SSRS error is occuring.
I have a report that is about 90 columns wide with multiple formulas.  The problem that I am having is that on one of the formulas there is a divide by Zero error.  I have implemented the answer from Robert Harvey in this question  but I still get the error.  I know th...
            
           
          
            
            I use Delphi2009. When using Refactoring -> Change Params every time when I try to add new parameter to routine, when I setup new parameter and click “Refactor” I get an error:
(NOTE: imageshack sometimes has problems, so sometimes you may not see this image).
Do you know any workaround?
...
            
           
          
            
            How to resolve Adobe Flex error: "Error #2036: Load Never Completed"?
...
            
           
          
            
            Hi everyone, maybe a simple question but I really don't know what to do.
When I submit a file through a form using , it works perfectly on my dev machine.
When I try the same thing on the server, it gives me the error below. The error doesn't help me at all because I don't even have this function in my code
 (CaptureCollection) and I d...
            
           
          
            
            Hi friends,
I have weird issue with CodeIgniter,
here is a start part of my controller
class Home extends Controller
{
    /** 
    * Constructor
    */ 
    public function __construct() {
     parent::Controller();
    }
...
everything is working fine at localhost, but when I try same at server, I come cross with an error like b...