Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 3.27 seconds.
Search: Posts Made By: Inigoesdr
Forum: Apache configuration 06-08-2013, 06:31 AM
Replies: 3
Views: 581
Posted By Inigoesdr
Yeah, this is correct regarding search engines....

Yeah, this is correct regarding search engines. You probably still want to disallow the admin folder because you don't really want the login page contents showing up in your search results.


It's...
Forum: Adobe Flex 06-08-2013, 06:20 AM
Replies: 1
Views: 425
Posted By Inigoesdr
The Adobe Developer Connection...

The Adobe Developer Connection (http://www.adobe.com/devnet/flex/flex_cf.html) site has some good tutorials on how to integrate CF with Flex. ColdFusion has some Flex remoting features built in, so...
Forum: PHP 05-25-2013, 04:08 AM
Replies: 5
Views: 143
Posted By Inigoesdr
It looks like you just have the background...

It looks like you just have the background offsets switched in your CSS:

#about_me a:hover {
background:transparent url(images/menu.jpg) -214px 0px no-repeat;
}
#contact a:hover {...
Forum: PHP 05-10-2013, 10:34 PM
Replies: 4
Views: 245
Posted By Inigoesdr
That's what I mean. When you get the error do you...

That's what I mean. When you get the error do you see the email listed in the sent mail folder of the SMTP account you're using? If not you may just be running in to a throttle process your email...
Forum: Apache configuration 05-10-2013, 04:23 AM
Replies: 6
Views: 441
Posted By Inigoesdr
Yeah, not exactly. With Windows Server you have...

Yeah, not exactly. With Windows Server you have to install the Application Server role to be able to use ASP with IIS.
Forum: PHP 05-10-2013, 04:20 AM
Replies: 4
Views: 245
Posted By Inigoesdr
It's probably something along those lines. Email...

It's probably something along those lines. Email in general is pretty finicky. Your best results for delivery will be from sending email through an SMTP account hosted with a trusted sender.
Forum: PHP 05-10-2013, 04:18 AM
Replies: 1
Views: 155
Posted By Inigoesdr
You shouldn't modify the core files. If you do...

You shouldn't modify the core files. If you do your changes can be wiped out on upgrade or they can break your WordPress install in ways that make it hard to debug. The easiest way to do this would...
Forum: Apache configuration 05-09-2013, 03:28 PM
Replies: 6
Views: 441
Posted By Inigoesdr
Do you have ASP installed and configured? Make...

Do you have ASP installed and configured? Make sure you have the correct version selected in the Application Pool for your site.

If you still can't get it working try viewing the failed request...
Forum: PHP 03-30-2013, 02:12 PM
Replies: 19
Views: 428
Posted By Inigoesdr
You were close with your last line, but you need...

You were close with your last line, but you need to have the item you're unshifting inside of an array:

array_unshift( $slides, array(
'filename' => 'Welcome_to_FTSC_Website-999999.jpg'
...
Forum: PHP 03-30-2013, 01:56 PM
Replies: 3
Views: 164
Posted By Inigoesdr
Also make sure you read our stickies for...

Also make sure you read our stickies for important information such as the FAQ section that talks about getting a blank page (http://www.codingforums.com/showthread.php?p=617060#post617060) and the...
Forum: PHP 03-15-2013, 04:59 PM
Replies: 4
Views: 344
Posted By Inigoesdr
I haven't tried this one yet, but the PHPExcel...

I haven't tried this one yet, but the PHPExcel library from the same people works well:
https://github.com/PHPOffice/PHPWord
Forum: Post a PHP snippet 03-13-2013, 04:42 AM
Replies: 1
Views: 342
Posted By Inigoesdr
Reference:...

Reference: http://fraudlabspro.com/developer/sample-codes/screen-order-api/php

Note that this sample requires an account with fraudlabspro.com and another library or file that isn't mentioned...
Forum: PHP 03-13-2013, 04:28 AM
Replies: 2
Views: 225
Posted By Inigoesdr
I'm assuming you mean MySQL, so you have two...

I'm assuming you mean MySQL, so you have two options:

If you are clearing out the table, just use TRUNCATE TABLE (http://dev.mysql.com/doc/refman/5.5/en/truncate-table.html), which will delete all...
Forum: PHP 03-11-2013, 03:44 PM
Replies: 1
Views: 178
Posted By Inigoesdr
How are you determining whether a user is...

How are you determining whether a user is anonymous or not?
Forum: PHP 03-11-2013, 03:42 PM
Replies: 3
Views: 217
Posted By Inigoesdr
Not in an efficient way that would be worth the...

Not in an efficient way that would be worth the trouble. Technically, you could grab a few lines from a file and exec() (http://php.net/exec) them, but that's not worth the trouble.


It just...
Forum: Apache configuration 02-19-2013, 12:09 AM
Replies: 1
Views: 495
Posted By Inigoesdr
You need to be passing your custom headers in the...

You need to be passing your custom headers in the mail() function's 4th argument:
mail('myemail@hotmail.com', 'My Subject', $message, $headers);
And make sure you remove the [B] tags you have in...
Forum: PHP 01-22-2013, 01:30 AM
Replies: 10
Views: 600
Posted By Inigoesdr
That error means the first argument,...

That error means the first argument, $prescriptions, that you are passing to foreach() (http://php.net/foreach) loop is supposed to be an array, but it isn't. If you dump the $prescriptions variable...
Forum: PHP 01-04-2013, 02:09 AM
Replies: 2
Views: 207
Posted By Inigoesdr
The value of $object will be inserted in to the...

The value of $object will be inserted in to the command, and you can get to it in make.php by using $argv (http://php.net/reserved.variables.argv). For example:
<?php echo $argv[0]; // outputs what...
Forum: PHP 12-28-2012, 12:30 AM
Replies: 8
Views: 452
Posted By Inigoesdr
Here is an example...

Here is an example (http://stackoverflow.com/questions/3431950/rijndael-256-encrypt-decrypt-between-c-sharp-and-php) of how to handle encryption/decryption with PHP and C#. You'll have to create an...
Forum: PHP 12-28-2012, 12:26 AM
Replies: 5
Views: 379
Posted By Inigoesdr
It sounds like you have an issue with your CSS....

It sounds like you have an issue with your CSS. You have some strange values for class names, such as:
<div class="login-row.password"><label for="pwd"><input type="password" name="pwd" id="pwd"...
Forum: Apache configuration 12-19-2012, 01:16 AM
Replies: 2
Views: 2,425
Posted By Inigoesdr
Neither site is coming up at the moment. Try...

Neither site is coming up at the moment. Try removing the slash from the end of your RewriteCond and make sure you have your site URLs updated as kelisaid mentioned.
Forum: PHP 12-16-2012, 05:44 AM
Replies: 4
Views: 355
Posted By Inigoesdr
It would be a lot more efficient to use the...

It would be a lot more efficient to use the userid as the key for the array, but based on the example array you gave, here is how you could do it:

<?php

$tmp = array(
array( ...
Forum: PHP 12-13-2012, 05:02 PM
Replies: 9
Views: 358
Posted By Inigoesdr
In my experience most applications append the...

In my experience most applications append the build number to the JS/CSS URLs, which allows them to be cached but always forces people to request the full file when the application is built next. So...
Forum: PHP 12-13-2012, 04:54 PM
Replies: 8
Views: 438
Posted By Inigoesdr
After your error_reporting()...

After your error_reporting() (http://php.net/error_reporting) call add:
ini_set('display_errors', true);
Forum: Adobe Flex 12-13-2012, 04:52 PM
Replies: 2
Views: 2,167
Posted By Inigoesdr
Nope, Flex is just a framework for building Flash...

Nope, Flex is just a framework for building Flash so it is compiled to a SWF too. It is possible to extract assets from a SWF usually, but you can't edit it and save it again.
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 04:55 AM.