Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Why email inbox to spam using codeigniter
Post: RE: Why email inbox to spam using codeigniter

Did you seup SPF records in the DNS?
4,464 Views
2 Replies
10-17-2017, 03:34 AM
Diederik
    Thread: share data between server applications
Post: RE: share data between server applications

What type of data needs to be shared? Data that is stored in a database or regular files? You could open SQL port 3306 on server B so server A can access it directly (better to use ssh tunnel for ...
9,422 Views
8 Replies
08-17-2017, 12:36 AM
Diederik
    Thread: Performance Problem [solved]
Post: RE: Performance Problem

My best guess would be the same as Kilishan, perhaps some api call is used in your code to an external source which does not perform very well. Try to identify it and possibly cache the result to limi...
18,860 Views
17 Replies
08-17-2017, 12:15 AM
Diederik
    Thread: Session problem
Post: RE: Session problem

The file controllers/Login.php generates output where it should not. In your local environment you probably have a different error reporting level so it is not shown to you, but the same error exist...
2,692 Views
1 Replies
08-16-2017, 06:35 AM
Diederik
    Thread: Improved secure login form
Post: RE: Improved secure login form

You could use your own controller and only use the login function of the ion auth library. Your controller could be: PHP Code: --
15,343 Views
7 Replies
08-16-2017, 01:23 AM
Diederik
    Thread: My almost ci site hack
Post: RE: My almost ci site hack

Good point about encrypted connections @skunkbad. There is also a risk in using Filezilla (perhaps the most used ftp client?). The sitemanager of Filezilla stores all your FTP credentials in an xml...
16,510 Views
13 Replies
08-16-2017, 12:32 AM
Diederik
    Thread: Improved secure login form
Post: RE: Improved secure login form

First you should always store a (salted) hash of the password, not the password itself. You then compare the hash of the posted password to the stored hash. That way if your site goes get hacked the a...
15,343 Views
7 Replies
08-16-2017, 12:12 AM
Diederik
    Thread: someone is trying to change my ci index file how to make it secure
Post: RE: someone is trying to change my ci index file h...

It could come from numerous sources as explained in your other topic... FTP is likely (so check FTP logs). Or some code in your website allows a visitor to upload file, where your code does not va...
2,047 Views
1 Replies
08-15-2017, 07:07 AM
Diederik
    Thread: Web hosting Question with Codeigniter
Post: RE: Web hosting Question with Codeigniter

I always advise people to find a hoster in their own country. Assuming you are primarily targeting people in your own country, that is. Downloading all of your assets (images etc) from across the ocea...
6,208 Views
3 Replies
08-15-2017, 05:03 AM
Diederik
    Thread: how to remove malware in code igniter
Post: RE: how to remove malware in code igniter

Restore files from backup is the easiest, presuming you made them. Manualy removing mallware is a true pain, you can very easily miss something. Most automated infection inject some malicious code...
4,147 Views
2 Replies
08-14-2017, 12:15 PM
Diederik
    Thread: My almost ci site hack
Post: RE: My almost ci site hack

First place I would check is the FTP logs. If the files where altered though FTP change FTP passwords, restore sites from your backups and also change database password afterwards.
16,510 Views
13 Replies
08-14-2017, 12:03 PM
Diederik
    Thread: creating robots.txt
Post: RE: creating robots.txt

A robots.txt is just a file you can create with any text editor, it will only advise a search engine what to index and what not (note that not all crawlers will listen to your set guidelines). It's no...
6,097 Views
3 Replies
08-14-2017, 04:54 AM
Diederik
    Thread: Help with database load design
Post: RE: Help with database load design

NickBrown1968 Wrote: (08-09-2017, 07:38 AM) -- The current design: - I'm using v2.2 (don't have time just now to upgrade) -- Not trying to bust any balls but you should take security more seriousl...
5,998 Views
5 Replies
08-11-2017, 02:57 AM
Diederik
    Thread: Image manipulation
Post: RE: Image manipulation

You could take a look at kraken.io. or if you want to do it by yourself at tools like jpegtrans, pngcrush etc.
8,442 Views
6 Replies
07-30-2017, 02:08 PM
Diederik
    Thread: Weird problem that has me baffled.
Post: RE: Weird problem that has me baffled.

You should have a look at the apache logfiles. There you will find the real path to the file that was not found. This could give you a hint if it is different then what you might expect. On a ubunt...
6,681 Views
6 Replies
07-08-2017, 12:44 PM
Diederik
    Thread: How much is too much session data?
Post: RE: How much is too much session data?

@PaulD, for your shopping cart example I find it very usefull to store the information in a seperate table. In here I link a session id to product id's. That way you still have the information when a ...
21,036 Views
12 Replies
07-08-2017, 12:34 PM
Diederik
    Thread: Database connection error when live on server (SOLVED)
Post: RE: Database connection error when live on server

The error message is pretty clear, you do connect to the MySQL server but it says: Access denied for user 'usr'@'ip' (using password: YES). So either the username / password combination is false or...
6,830 Views
3 Replies
07-02-2017, 01:51 PM
Diederik
    Thread: problem with htacces and https
Post: RE: problem with htacces and https

Most likely caused by a syntax error / typo in your htaccess file.
10,082 Views
7 Replies
07-02-2017, 11:04 AM
Diederik
    Thread: How do I make a database row be a global?
Post: RE: How do I make a database row be a global?

Please escape your users input. Cookie data can be manipulated and you are vulnarable to sql injection. You should read up on php (basic) security
18,566 Views
12 Replies
06-26-2017, 10:56 AM
Diederik
    Thread: php mailer
Post: RE: php mailer

There is not realy differce between where you store the smtp settings, in the database or in a file. I would suggest creating a seperate gmail account only intended to send out emails.
3,184 Views
2 Replies
06-24-2017, 03:55 AM
Diederik

Theme © iAndrew 2016 - Forum software by © MyBB