0
votes
0answers
25 views

Eclipse is auto-converting line delimiters

Eclipse is auto-converting UNIX new line delimiter (LF) to Windows (CRLF). If I open a PHP file created with UNIX new line delimiter and I edit it in some cases the new delimiters are converted to ...
4
votes
1answer
35 views

Output from PHP MD5 and Solaris Digest MD5 dont match

When i run the below code in PHP $saltedPW = "Test12309566173258152148992"; $hashedPW = md5($saltedPW); echo $hashedPW; the output i get is fc8f7b8737b9d4754ff1156a3ad88b03 when i run the above ...
1
vote
1answer
18 views

How to create virtual folder with mod_rewrite similar ln -s Unix

Previously was using command ln for create virtual folder. cd public ln -s ../app/assets/ assets ~ public > ls -l lrwxr-xr-x 1 carlosmontalvo admin 14 May 15 12:21 assets -> ../app/assets/ ...
0
votes
3answers
38 views

PHP CronJob doesn't work

I'm trying to set up a cronjob which sends me an email when it runs. when I execute the file using a ssh command via PuTTY, it works, it also works when I set it up as an URL, but doesn't work when ...
0
votes
0answers
8 views

Sqlplus Query with shell_exec(); PHP command

I need to run a PL/SQL Query from a distant oracle server in order to create spool files and send it to my own server, using a php script. I firstly created a SH script called myscript.sh : ...
0
votes
3answers
38 views

Apache User change/create password on first login

I have an index.php page for which i need to add user authentication I have about 80 users that will need access to this page. I want the users to change the password when they first connect to my ...
0
votes
1answer
26 views

result of sys_get_temp_dir() not writable by Apache process's user

I've been working with Assetic and YUICompressor to minify and concat js/css. I'm having a problem figuring out the correct write permission working on my local testing environment and the result of ...
0
votes
4answers
63 views

Piping PHP file content to PHP command in CLI

My question relate to the use of PHP in CLI. I don't know why the piping of the content of a PHP file to the PHP command works: cat file.php | php like in the installation of Composer ...
0
votes
3answers
39 views

Get hours between a unix time value and now

I'm using the Highcharts library to create some nice looking reports. I have a collection of unix time values and I need to convert them to the amount of hours between that date and "Now". series: ...
-1
votes
2answers
24 views

Fcron. Parallel execution of scripts [closed]

Good afternoon, friends. Cron runs every 10 minutes, the utility (demon): fcron, instead of cron. I have one specific fcron, which does not allow to perform the task, when the same is not aligned. ...
1
vote
1answer
34 views

Class 'COM' not found

I am trying to use COM object in my script and running the script on linux server and got below error. Fatal error: Class 'COM' not found Any help?
0
votes
0answers
49 views

php socket_set_option timeouts for sending and receiving are ignored in windows

I have a php tcp server which behaves differently under windows and unix: <?php if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) { $errorcode = socket_last_error(); $errormsg = ...
0
votes
2answers
31 views

return specific line of command unix php

I want to retrieve more than one line of a text file, and processing lines. Example : $user = system('getent passwd') ."\n"; result exmple : tcpdump:x:72:72::/:/sbin/nologin ...
-3
votes
3answers
68 views

Mysql_query is beeing ignored [closed]

How comes that my script ignores the second simple MySQL query action? echo $sql = "INSERT INTO nutzerdaten (auftragsnummer , nutzername, passwort) ...
-1
votes
3answers
104 views

cron job every 5 minutes starting from a specific time [closed]

I would like to have a script run every 5 minutes let's say starting from 13:02 so I can have another script runs every 5 minutes but starting from 13:04 so the second script runs two minutes after ...
0
votes
0answers
32 views

How to automatically create annotation links in pdf files

I have a large pdf that contains pages and pages of text. Is there any library or app that I can use to automatically create a link where the text is a link (i.e. starts with http or www)? I know I ...
0
votes
2answers
59 views

How to download HTML encoded with PHP/JavaScript content using WGET or Perl

I have a URL which I want to download and parse: http://diana.cslab.ece.ntua.gr/micro-CDS/index.php?r=search/results_mature&mir=hsa-miR-3131&kwd=MIMAT0014996 The problem is when I download ...
0
votes
1answer
31 views

PHP Large Files Zipping with folders that don't exist in the file-system

I'm creating some kind of file-sharing application. In this application you should be able to up-& download files and structure these files. I've opted to not keep on manipulating the ...
0
votes
2answers
64 views

OPERATION WITH UNIX DATE

Im making a SQL like this: SELECT * FROM POST WHERE date between :date1 and :date2 Date2 always is going to be today date PHP time(); (UNIX FORMAT). Now I need take date2 minus 7days ( 1 week) and ...
0
votes
2answers
37 views

Monitoring a set of directories and generating “events”, when new files appear - can libevent or libev do that?

I'm writing a program in PHP (don't ask), which needs to monitor a set of directories waiting for files to appear and processing newcomers. Can libevent or libev (both have matching PHP-extensions) ...
0
votes
0answers
26 views

Is it possible to get multiple instances of POV-Ray running on Unix? [closed]

I am utilizing a web based GUI for POV-Ray where a user makes some changes and the .pov file created by a PHP parser is sent to the UNIX server where the POV-Ray 3.6 application renders the file. I ...
1
vote
2answers
87 views

Unix timestamp to LDAP timestamp

There's a lot of examples on how to convert LDAP->Unix, but I can't for the love of god convert it back as in Unix->LDAP.. Here's what i've got for LDAP->Unix: How to convert LDAP timestamp to Unix ...
0
votes
3answers
65 views

HTML Form won't transfer to PHP date

For some reason I can not get php to recognize a HTML form input as a date. I have the following HTML form: <form action="Input.php" method="post"> Depature Date: <select ...
1
vote
1answer
76 views

Is there anyway to detect unix command “cat” finish merging files?

I was wondering, is there any way to detect cat function finish merging a file, so I can zip the files? for example if I have simple case like this, folder with multiple files like this: ...
1
vote
2answers
68 views

PHP comparing UNIX timestamps

I've having an issue comparing two unix timestamps in php. $time_now = mktime(); if($auction->time_end > $time_now){ //true } else{ //false } $auction->time_end is 1362579127 and set as ...
0
votes
1answer
40 views

PHP exec() runs but aborts early

I'm having to generate some images as part of a simulation project I'm working on. These need to be generated based on user input. I'm using PHP's exec function and it works like a charm for the most ...
-1
votes
1answer
59 views

How to start a command from PHP in shell? [closed]

When you try to make a commit in git without any message, it will open editor for you right in the shell, and when you will close the editor, git will read the contents. I want to make exactly the ...
0
votes
4answers
103 views

unix mv --backup=numbered

Hi im trying in php to move a folder but keep both files in the dest folder if exist duplicate. i tried todo that in recursion but its too complicated so many things can go wrong for example file ...
0
votes
3answers
32 views

Bad Request and % in page address

when i add in page address % get this error (www.mypage.com/news-360%-rotation): Bad Request Your browser sent a request that this server could not understand. Apache/2.2.15 (CentOS) ...
0
votes
2answers
91 views

Redirect All Mail to File

Years ago, I ran across a short snippet of inline bash code that went into the php.ini file at the sendmail_path config entry. The purpose of the inline bash snippet was to redirect all mail to a ...
6
votes
2answers
94 views

Batch delete a large number of files

Everyday user-uploaded files older than a month are deleted from the server. User uploads are stored into directories by the day (eg /var/www/media/2013-03-13) so its easy to identify the ...
0
votes
1answer
45 views

CentOS Ioncube make_license is “Killed” each time I try to execute it

I am trying to generate ioncube license using "make_license" generator provided by ioncube for Unix systems. It works on my desktop Ubuntu system, but does not work on my CentOS webserver. Each time ...
0
votes
2answers
239 views

Linux : Get total cpu usage by httpd

I need to display the total Percentage of CPU utilized by httpd processes on a server in a php report. I am calling following from exec : ps -e -o %mem,%cpu,cmd | grep httpd | awk ' ...
0
votes
1answer
28 views

php: printing the last 10 lines of all files named error_log in all subdirectories?

I found some ridiculous long code (about 50 lines long) for doing such a thing using php functions, and I just thought there must be a better way. Then after some searching i found out about 'find' ...
0
votes
1answer
42 views

PHP CLI errors from unix commands

I am writing php script, which will be used for making sites from "standart" site. There's a lot of unix shell commands, and I've found the problem with displaying errors. Example: I need to check ...
0
votes
1answer
77 views

How to create a timestamp previous the epoch [closed]

I am trying to create a timestamp previous the epoch time, for a registration form for the birthday fields, people were born before 1970 whom are alive, and I'm working to check if the time from ...
1
vote
5answers
98 views

What is the best way to run a PHP script at a particular time?

I have a site where auctions end a varying times. I need to send an automated email to the seller and the buyer after the auction is finished to notify them of the auction ending and the results. ...
0
votes
3answers
42 views

Is there a way to combine the results of array_count_values($arr1) and array_count_values($arr2) if $arr1 and $arr2 have elements with the same value?

Is there an efficient way to combine the return arrays of array_count_values($arr1) and array_count_values($arr2) if $arr1 and $arr2 have elements with the same value? I'm trying to work through the ...
0
votes
1answer
102 views

PHPUnit runs on Terminal but not in NetBeans

I'm running Mac OS X 10.6 w/ bitnami mampstack 5.4.11 (PHP 5.4.11) and NetBeans 7.2.1. Since I've switched from XAMPP (for Mac) w/ PHP 5.3.x to 5.4+ NB can't use PHPUnit or any other bash script. ...
1
vote
2answers
48 views

Use the UNIX epoch in a mysql column?

A column in one of my tables is DATE and currently it gets automatically filled with a timestamp of when the row was made. The timestamp looks like 2013-02-10 19:56:12. Is there anyway I can have it ...
3
votes
5answers
106 views

parsing a very big file into mysql

i have a task where i need to parse an extremely big file and write the results into a mysql database. "extremely big" means we are talking about 1.4GB of sort-of-CSV data, totalling in approx 10 ...
0
votes
1answer
78 views

avoid password prompt

I want execute command sudo ls -l without password prompt. $streams = array( 0 => array("pipe", "r"), // stdin 1 => array("pipe", "w"), // stdout 2 => array("pipe", "w") // ...
0
votes
1answer
36 views

Selecting upcoming sessions based on UNIX timestamps

I have a service that shows a specific button when a session is "ready", i.e. 15 minutes beforehand and through the session. I am doing this by pulling up all recently requested sessions, analyzing ...
0
votes
2answers
76 views

execute a whois unix command using system()

Is there a way / is it possible to execute the unix whois query using php, possibly using system().? I am trying echo '<pre>'; $last_line = system('whois ryansmurphy.com', $retval); echo ' ...
0
votes
2answers
102 views

Linux how to run cat and unlink after one another in background process

I have multiple chunk of file that should be merged into one file, and after it's done I would like to delete the pieces. How can I achieve that? I tried (cat 511MB.zip0 511MB.zip1 511MB.zip2 ...
6
votes
1answer
162 views

how can I lower the CPU and I/O priority of a cron script? [closed]

I want to run a script via cron at low I/O and CPU priority. If I understand correctly (and I might not), I could just add proc_nice(10); to my script to lower the CPU priority, but there is no PHP ...
0
votes
1answer
51 views

How to update remote server application from local server application

I have a PHP/MySQL application running with WAMP on a local server. This application contains sensitive and confidential data that can only be accessed from devices on the network in the office. ...
4
votes
3answers
114 views

What can I do in my code today, to prevent the unix time stamp running out in 2038?

For example, I mostly program in PHP. What can I do today to prevent my program from exploding in 2038 due to unix time stamp running out? I would love to see some specific algorithms, functions or ...
0
votes
2answers
118 views

Finding files with a certain string

I'm a real noob here. I was wondering if anyone could give me a piece of code that will find all files in a certain directory and that directory's subdirectories with the user-specified string. And if ...
1
vote
2answers
542 views

Include paths in PHP not working one directory up

Can anybody help with the last detail of my new system. I have hit a brick wall with some php code file references trying to include files and classes. I have a script that uses Pear Mail to send SMTP ...

1 2 3 4 5 8